/* ============================================================
   SILVI SAREE HOUSE — HOMEPAGE STYLES
   ============================================================ */

/* Maintain a full, consistent inset around every home-page content section. */
#main-content > .section {
  padding-block: 80px;
}

.story-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.story-section + .occasions-section {
    padding-top: 80px !important;
}

.home-faq-section {
    padding-bottom: 40px !important;
}

.home-newsletter-section {
  padding-top: 40px !important;
}

@media (max-width: 768px) {
  #main-content > .section {
    padding-block: 48px;
  }

    .story-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .story-section + .occasions-section {
        padding-top: 48px !important;
    }

    .home-faq-section {
        padding-bottom: 24px !important;
    }

  .home-newsletter-section {
    padding-top: 24px !important;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: min(100%, 1920px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
}

.hero__desktop {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero__mobile {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36, 4, 22, 0.72) 0%,
    rgba(36, 4, 22, 0.45) 45%,
    rgba(36, 4, 22, 0.05) 70%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: calc(var(--announcement-height) + var(--header-height));
}

.hero__text {
  max-width: 560px;
  color: var(--color-ivory);
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-secondary-light);
  margin-bottom: var(--space-5);
  display: block;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-ivory);
  margin-bottom: var(--space-6);
}

.hero__subtext {
  font-size: clamp(var(--text-base), 1.4vw, var(--text-lg));
  color: rgba(245, 237, 216, 0.82);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ─── HERO MOBILE ─── */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    aspect-ratio: auto;
    min-height: 100svh;
  }

  .hero__desktop {
    display: block;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero__desktop .hero__media {
    position: absolute;
    inset: 0;
  }

  .hero__desktop .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(36, 4, 22, 0.88) 0%,
      rgba(36, 4, 22, 0.55) 40%,
      rgba(36, 4, 22, 0.15) 70%,
      transparent 100%
    );
  }

  .hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    align-items: flex-end;
    padding: var(--space-10) var(--space-6) calc(var(--space-8) + 60px);
    color: var(--color-ivory);
    z-index: 2;
  }

  .hero__eyebrow {
    font-size: 10px;
    margin-bottom: var(--space-3);
  }

  .hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 9vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-ivory);
    margin-bottom: var(--space-4);
  }

  .hero__subtext {
    font-size: var(--text-sm);
    color: rgba(245, 237, 216, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero__actions .btn--ghost-light { display: none; }

  .hero__actions--mobile .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── OCCASIONS GRID ─── */
.occasions-section {
  width: min(100%, 1920px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  padding-block: 80px;
  padding-bottom: 80px !important;
  display: flex;
  align-items: center;
}

.occasions-section + #bestsellers {
  padding-top: 80px !important;
}

.occasions-section > .container {
  width: 100%;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.occasions-section .occasion-card__media {
  aspect-ratio: 3 / 4;
}

.occasions-section .occasion-card__overlay {
  background: linear-gradient(
    to top,
    rgba(28, 3, 16, 0.94) 0%,
    rgba(36, 4, 22, 0.72) 22%,
    rgba(36, 4, 22, 0.24) 42%,
    transparent 58%
  );
}

.occasions-section .occasion-card__content {
  min-height: 24%;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 1px 4px rgba(20, 2, 11, 0.65);
}

.occasions-section .occasion-card__name {
  font-size: clamp(1.5rem, 1.9vw, 1.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.occasions-section .occasion-card__desc {
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 250, 243, 0.9);
  margin-bottom: 8px;
  white-space: nowrap;
}

.occasions-section .occasion-card__cta {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f0c993;
  align-self: flex-start;
}

.occasions-section .occasion-card:focus-visible {
  outline: 3px solid var(--color-secondary-light);
  outline-offset: 4px;
}

@media (max-width: 1200px) {
  .occasions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .occasions-section {
    padding-block: 48px;
    padding-bottom: 48px !important;
  }

  .occasions-section + #bestsellers {
    padding-top: 48px !important;
  }

  .occasions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .occasions-grid::-webkit-scrollbar { display: none; }

  .occasions-grid .occasion-card {
    min-width: 75vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ─── PRODUCTS GRID ─── */
#bestsellers,
#new-arrivals {
  padding-block: 80px;
}

#bestsellers {
  padding-bottom: 80px !important;
}

#bestsellers + #new-arrivals {
  padding-top: 80px !important;
}

#new-arrivals {
  padding-bottom: 80px !important;
}

#new-arrivals + .section {
  padding-top: 80px !important;
}

.products-grid {
  display: grid;
  gap: var(--space-6);
}

@media (max-width: 768px) {
  #bestsellers,
  #new-arrivals {
    padding-block: 48px;
  }

  #bestsellers {
    padding-bottom: 48px !important;
  }

  #bestsellers + #new-arrivals {
    padding-top: 48px !important;
  }

  #new-arrivals {
    padding-bottom: 48px !important;
  }

  #new-arrivals + .section {
    padding-top: 48px !important;
  }
}

:is(#home-bestsellers .badge--bestseller, #home-new-arrivals .badge--new) {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 8px rgba(36, 4, 22, 0.12);
}

:is(#home-bestsellers, #home-new-arrivals) .product-card {
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__media {
  border-radius: 16px !important;
  overflow: hidden;
  clip-path: inset(0 round 16px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__media img {
  border-radius: 16px !important;
  backface-visibility: hidden;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__info {
  padding: var(--space-4) 16px 16px;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__name {
  margin-bottom: 6px;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__descriptor {
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__action-btn.wishlist-btn {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 10px rgba(36, 4, 22, 0.14);
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__action-btn.wishlist-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__action-btn.wishlist-btn.active {
  background: #fff;
  color: #000;
}

:is(#home-bestsellers, #home-new-arrivals) .product-card__action-btn.wishlist-btn.active svg {
  fill: #000;
}

.home-product-add-to-cart {
  width: 100%;
  min-height: 44px;
  margin-top: var(--space-4);
  padding: 10px var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  transition:
    background var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.home-product-add-to-cart:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.home-product-add-to-cart:focus-visible {
  outline: 3px solid var(--color-secondary-light);
  outline-offset: 3px;
}

/* On the homepage the product grids are 4-col → use .grid--4 from design-system */

/* Placeholder product images — styled fallback */
.product-card__media img[src*="placeholder"] {
  background: var(--color-surface);
}

/* ─── EDITORIAL BANNER ─── */
.home-insights-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 768px) {
  .home-insights-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

.editorial-banner {
  position: relative;
  overflow: hidden;
}

.editorial-banner__inner {
  position: relative;
  height: 1080px;
  min-height: 1080px;
}

@media (max-width: 768px) {
  .editorial-banner__inner {
    height: 500px;
    min-height: 500px;
  }
}

.editorial-banner__image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.editorial-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36, 4, 22, 0.75) 0%,
    rgba(36, 4, 22, 0.40) 50%,
    rgba(36, 4, 22, 0.1) 100%
  );
}

.editorial-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.editorial-banner__text {
  max-width: 500px;
  color: var(--color-ivory);
}

.editorial-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-6xl));
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--color-ivory);
  margin: var(--space-4) 0 var(--space-5);
}

.editorial-banner__desc {
  font-size: var(--text-md);
  color: rgba(245, 237, 216, 0.82);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

/* ─── PRICE GRID ─── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid > :nth-child(4),
  .price-grid > :nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .price-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-3);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .price-grid::-webkit-scrollbar { display: none; }
  .price-grid .price-card {
    min-width: 160px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ─── FABRICS GRID ─── */
.fabrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1200px) {
  .fabrics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .fabrics-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-5);
    padding-bottom: var(--space-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fabrics-grid::-webkit-scrollbar { display: none; }
  .fabrics-grid .fabric-card {
    min-width: 140px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .fabrics-grid .fabric-card__media {
    width: 110px;
    height: 110px;
    margin-inline: auto;
  }
}

/* ─── BRAND STORY ─── */
.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.brand-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.brand-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.brand-story__text h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-wine-deep);
  line-height: var(--leading-snug);
  margin-top: var(--space-2);
}

.brand-story__text p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .brand-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .brand-story__image {
    aspect-ratio: 3/2;
    border-radius: var(--radius-lg);
  }
}

/* ─── QUIZ SECTION ─── */
.quiz-section {
  padding-block: var(--section-py);
}

.quiz-container {
  background: rgba(245, 237, 216, 0.08);
  border: 1px solid rgba(245, 237, 216, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
  color: var(--color-ivory);
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.quiz-option {
  background: rgba(245, 237, 216, 0.07);
  border: 1px solid rgba(245, 237, 216, 0.18);
  color: rgba(245, 237, 216, 0.88);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-elegant);
}

.quiz-option:hover,
.quiz-option.selected {
  background: rgba(245, 237, 216, 0.16);
  border-color: var(--color-secondary);
  color: var(--color-ivory);
  transform: translateX(4px);
}

.quiz-option.selected {
  background: rgba(196, 149, 106, 0.2);
  border-color: var(--color-secondary);
}

/* Quiz results */
.quiz-results {
  text-align: center;
  padding: var(--space-8) 0;
}

.quiz-results h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-ivory);
  margin-bottom: var(--space-4);
}

.quiz-results p {
  color: rgba(245, 237, 216, 0.75);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .quiz-container { padding: var(--space-6); }
}

/* ─── TRUST POINTS ─── */
.trust-points {
  gap: var(--space-8);
}

.trust-point {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--duration-base), border-color var(--duration-base);
}

.trust-point:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.trust-point__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}

.trust-point__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-wine-deep);
  margin-bottom: var(--space-3);
}

.trust-point__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .trust-points.grid--3 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section {
  background: var(--color-primary);
  padding-block: var(--section-py);
}

.newsletter-inner {
  text-align: center;
  color: var(--color-ivory);
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-ivory);
  margin: var(--space-4) 0;
  line-height: var(--leading-tight);
}

.newsletter-inner p {
  color: rgba(245, 237, 216, 0.75);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.newsletter-form__row {
  display: flex;
  gap: var(--space-3);
  max-width: 640px;
  margin: 0 auto var(--space-4);
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(245, 237, 216, 0.3) !important;
  color: var(--color-ivory) !important;
  border-radius: var(--radius-md) !important;
  flex: 1;
}

.newsletter-input::placeholder {
  color: rgba(245, 237, 216, 0.5) !important;
}

.newsletter-input:focus {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.2) !important;
  outline: none;
}

.newsletter-consent {
  font-size: var(--text-xs);
  color: rgba(245, 237, 216, 0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

@media (max-width: 640px) {
  .newsletter-form__row {
    flex-direction: column;
  }

  .newsletter-form__row .btn {
    width: 100%;
  }
}

/* ─── JOURNAL CARDS — IMAGE FALLBACKS ─── */
.journal-card__media {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.journal-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-cream) 100%);
  z-index: 0;
}

.journal-card__media img {
  position: relative;
  z-index: 1;
}

/* ─── MOBILE PRODUCT GRID ─── */
@media (max-width: 768px) {
  .products-grid.grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .product-card__name {
    font-size: var(--text-base);
  }

  .product-card__quick-view {
    display: none;
  }

  .product-card__actions {
    opacity: 1;
    transform: none;
  }
}

/* ─── SECTION HEADER RESPONSIVE ─── */
@media (max-width: 768px) {
  .section-header.flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    text-align: left;
  }

  .section-header h2 {
    font-size: var(--text-3xl);
  }
}

/* ─── TRUST STRIP RESPONSIVE ─── */
@media (max-width: 768px) {
  .trust-strip__items {
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
    padding-inline: var(--space-4);
  }

  .trust-strip {
    padding-block: var(--space-6);
  }
}

/* ─── HEADER LOGO COLOUR ADAPTATION ─── */
.header.transparent .header__logo-svg {
  color: var(--color-ivory);
}

.header.solid .header__logo-svg {
  color: var(--color-primary);
}

/* ─── SCROLL INDICATOR ─── */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(245, 237, 216, 0.6);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  animation: heroReveal 1s var(--ease-elegant) 1.2s both;
}

.hero__scroll-indicator span {
  width: 1px;
  height: 40px;
  background: rgba(245, 237, 216, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── SECTION DIVIDER ORNAMENT ─── */
.section-ornament {
  text-align: center;
  margin: var(--space-12) 0;
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}

.section-ornament__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  display: inline-block;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: calc(var(--space-6) + 60px + var(--space-3));
  right: var(--space-6);
  z-index: var(--z-raised);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-wine-deep);
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all var(--duration-base) var(--ease-elegant);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

@media (min-width: 769px) {
  .back-to-top {
    bottom: calc(var(--space-8) + 52px + var(--space-3));
    right: var(--space-8);
  }
}

/* ─── JOURNAL CARD PLACEHOLDER COLORS ─── */
.journal-card:nth-child(1) .journal-card__media { background: #EDE0C4; }
.journal-card:nth-child(2) .journal-card__media { background: #F0E8DC; }
.journal-card:nth-child(3) .journal-card__media { background: #E8D8C8; }
