/* ============================================================
   BUTTERFLY WALTZ — masquerade ballroom design system
   Palette drawn from the garments themselves:
   stage black, ballroom ivory, harlequin emerald, gilt gold,
   with magenta + crimson as rare accents.
   ============================================================ */

:root {
  --stage-black: #121016;
  --stage-black-soft: #1c1922;
  --ivory: #f6f2e8;
  --ivory-deep: #ece5d3;
  --emerald: #157a3e;
  --emerald-deep: #0b4a26;
  --gilt: #c9a227;
  --gilt-bright: #e3c14f;
  --magenta: #c2258f;
  --cart-green: #3cb95b;
  --crimson: #b3122e;
  --ink: #26222b;

  --font-display: "Cinzel Decorative", serif;
  --font-script: "Pinyon Script", cursive;
  --font-body: "EB Garamond", serif;
  --font-utility: "Jost", sans-serif;

  --max-width: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
}

img { max-width: 100%; display: block; }

a { color: var(--emerald-deep); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- utility type ---------- */

.eyebrow {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gilt);
}

.eyebrow--dark { color: var(--emerald-deep); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--stage-black);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.brand-mark .amp { color: var(--gilt); }

.site-nav { display: flex; gap: 1.75rem; align-items: center; }

.site-nav a {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--gilt-bright); border-bottom-color: var(--gilt); }

.site-nav a.nav-cta {
  border: 1px solid var(--gilt);
  padding: 0.5rem 1.1rem;
  color: var(--gilt-bright);
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  background: var(--gilt);
  color: var(--stage-black);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(201, 162, 39, 0.22), transparent 65%),
    radial-gradient(ellipse 45% 40% at 82% 70%, rgba(21, 122, 62, 0.18), transparent 70%),
    var(--stage-black);
  color: var(--ivory);
  text-align: center;
  padding: 6.5rem 1.5rem 7.5rem;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--ivory);
}

.hero h1 .waltz {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 6rem);
  color: var(--gilt-bright);
  margin-top: -0.15em;
  transform: rotate(-3deg);
}

.hero .hero-tagline {
  max-width: 34rem;
  margin: 1.75rem auto 2.5rem;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(246, 242, 232, 0.85);
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* waltz-time entrance: 1 - 2 - 3 */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .hero-tagline, .hero .hero-ctas {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease forwards;
  }
  .hero h1 { animation-delay: 0.2s; }
  .hero .hero-tagline { animation-delay: 0.4s; }
  .hero .hero-ctas { animation-delay: 0.6s; }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-utility);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.1rem;
  border: 1px solid var(--gilt);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-gold { background: var(--gilt); color: var(--stage-black); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gilt-bright); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--gilt-bright); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(201, 162, 39, 0.15); transform: translateY(-2px); }

.btn-emerald {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--ivory);
}
.btn-emerald:hover, .btn-emerald:focus-visible { background: var(--emerald-deep); transform: translateY(-2px); }

/* ---------- harlequin diamond divider (signature) ---------- */

.diamond-band {
  height: 42px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--emerald) 0 21px,
      var(--emerald-deep) 21px 42px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 21px,
      rgba(18, 16, 22, 0.55) 21px 42px
    );
  background-blend-mode: multiply;
  border-top: 3px solid var(--gilt);
  border-bottom: 3px solid var(--gilt);
}

.diamond-band--thin { height: 26px; }

/* ---------- sections ---------- */

.section { padding: 5rem 0; }

.section-head { text-align: center; max-width: 44rem; margin: 0 auto 3.25rem; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  margin: 0.6rem 0 1rem;
}

.section--dark { background: var(--stage-black); color: var(--ivory); }
.section--dark .section-head h2 { color: var(--ivory); }

/* ---------- product grid ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.25rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--ivory-deep);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.product-card:hover, .product-card:focus-visible {
  box-shadow: 0 14px 34px rgba(18, 16, 22, 0.16);
}

.product-card figure {
  background: #fff;
  padding: 1.25rem 1.25rem 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  transition: transform 0.5s ease;
  transform-origin: 50% 90%;
}

/* the waltz: a gentle 3/4-time sway on hover */
@media (prefers-reduced-motion: no-preference) {
  .product-card:hover img { animation: waltz 1.8s ease-in-out infinite; }
}

@keyframes waltz {
  0%   { transform: rotate(0deg)    translateY(0); }
  25%  { transform: rotate(1.4deg)  translateY(-4px); }
  50%  { transform: rotate(0deg)    translateY(0); }
  75%  { transform: rotate(-1.4deg) translateY(-4px); }
  100% { transform: rotate(0deg)    translateY(0); }
}

.product-card .card-body { padding: 1.25rem 1.4rem 1.5rem; border-top: 3px solid var(--cart-green); }

.product-card h3 {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card .card-note {
  font-style: italic;
  font-size: 0.98rem;
  color: #5a5462;
  margin-top: 0.35rem;
}

.product-card .card-cta {
  margin-top: 0.9rem;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}

/* ---------- story strip ---------- */

.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story blockquote {
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.55;
  border-left: 3px solid var(--gilt);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.story-figure {
  border: 1px solid var(--ivory-deep);
  background: #fff;
  padding: 1.5rem;
}

/* ---------- join the ball (email capture) ---------- */

.join {
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(194, 37, 143, 0.14), transparent 70%),
    var(--stage-black);
}

.join-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 34rem;
  margin: 0 auto;
}

.join-form input[type="email"] {
  flex: 1 1 260px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--gilt);
  background: rgba(246, 242, 232, 0.06);
  color: var(--ivory);
}

.join-form input[type="email"]::placeholder { color: rgba(246, 242, 232, 0.55); }

.join-form input[type="email"]:focus-visible {
  outline: 2px solid var(--gilt-bright);
  outline-offset: 2px;
}

.join-success {
  display: none;
  margin-top: 1.25rem;
  font-style: italic;
  color: var(--gilt-bright);
  font-size: 1.15rem;
}

/* ---------- shop page banner ---------- */

.shop-note {
  background: var(--ivory-deep);
  border: 1px dashed var(--emerald);
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  margin-bottom: 2.75rem;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--stage-black);
  color: rgba(246, 242, 232, 0.75);
  padding: 3rem 0 2.25rem;
  border-top: 3px solid var(--gilt);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer .brand-mark { font-size: 1.3rem; }

.site-footer .foot-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gilt);
  margin-top: 0.35rem;
}

.site-footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.site-footer nav a {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 242, 232, 0.75);
  text-decoration: none;
}

.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--gilt-bright); }

.footer-fineprint {
  margin-top: 2.25rem;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(246, 242, 232, 0.45);
  text-align: center;
}

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  /* Stack: brand on top, links + cart below — nothing pushed off-screen */
  .site-header .container {
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .site-nav {
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav a { font-size: 0.75rem; }
  .site-nav a.nav-cta { padding: 0.4rem 0.8rem; }
  .story { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4.5rem 1.25rem 5.5rem; }
}

/* Belt and suspenders: never allow sideways scroll on any screen */
html, body { overflow-x: hidden; }

/* ---------- paypal cart ---------- */

.nav-cart { display: inline-flex; align-items: center; }

.card-buy { margin-top: 0.9rem; }

.card-buy paypal-add-to-cart-button { display: block; }

.card-price {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--emerald-deep);
  margin-top: 0.5rem;
}

/* ---------- harmonizing with PayPal's #3cb95b buttons ---------- */

.card-buy {
  border: 1px solid var(--ivory-deep);
  border-bottom: 3px solid var(--cart-green);
  padding: 0.6rem;
  background: #fff;
}

.card-note { text-align: center; }

/* The PayPal widget renders its own product photo inside the grid card,
   duplicating the figure image already shown above it. Hide just that
   (scoped to .product-card so the full-size product.html buy-box, which
   has no other image, is unaffected). !important is required because
   PayPal injects its own #paypal-form-fields-container-{id} .hero-container
   rule, which otherwise outranks a plain class selector. */
.product-card .hero-container { display: none !important; }

/* The PayPal widget also renders its own long fabric/product description
   inline, which clutters the grid card. Keep it hidden on the grid; it
   still shows on product.html, where .product-card is not used. */
.product-card .item-description { display: none !important; }

/* Some product.html buy-boxes show our own product photo (see #productPhoto)
   instead of relying on the PayPal widget's photo/description — used when
   the PayPal listing's own image doesn't match the product. */
.hide-paypal-photo .hero-container { display: none !important; }
.hide-paypal-photo .item-description { display: none !important; }

.product-photo {
  margin: 0 0 1.5rem;
  border: 1px solid var(--ivory-deep);
}

.product-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- size guide ---------- */

.size-guide {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  border: 1px solid var(--ivory-deep);
  background: #fff;
}

.size-guide summary {
  cursor: pointer;
  font-family: var(--font-utility);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  padding: 0.9rem 1.25rem;
}

.size-guide[open] summary { border-bottom: 1px solid var(--ivory-deep); }

.size-guide-body { padding: 1.1rem 1.25rem 1.35rem; }

.size-guide-tip { font-size: 0.98rem; font-style: italic; color: #5a5462; margin-bottom: 1rem; }

.size-table-wrap { overflow-x: auto; }

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-utility);
  font-size: 0.92rem;
}

.size-table th, .size-table td {
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--ivory-deep);
}

.size-table thead th {
  background: var(--stage-black);
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.size-table tbody th { font-weight: 500; color: var(--emerald-deep); }

.size-table tbody tr:nth-child(even) { background: var(--ivory); }

/* ---------- details page ---------- */

.card-details {
  display: block;
  margin-top: 0.55rem;
  text-align: center;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.detail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0.6rem 0 1.25rem;
}

.detail-copy p { margin-bottom: 1rem; }

.detail-facts { list-style: none; margin: 1.25rem 0; border-top: 1px solid var(--ivory-deep); }

.detail-facts li { padding: 0.6rem 0; border-bottom: 1px solid var(--ivory-deep); font-size: 1.02rem; }

.care-head {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-top: 1.5rem;
}

.care-line { font-size: 0.98rem; font-style: italic; color: #5a5462; }

.chart-head { font-family: var(--font-utility); font-weight: 500; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }

.chart-sub { display: block; font-size: 0.75rem; letter-spacing: 0.1em; color: #8a8494; text-transform: none; }

.chart-pending { font-size: 0.95rem; font-style: italic; color: #8a8494; }

@media (max-width: 820px) {
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- single product page ---------- */

.product-tagline {
  font-style: italic;
  font-size: 1.05rem;
  color: #5a5462;
  margin: -0.5rem 0 1.5rem;
}

.buy-box {
  position: sticky;
  top: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--ivory-deep);
  border-top: 3px solid var(--gilt);
}

.buy-box .card-buy {
  border: none;
  padding: 0;
  background: transparent;
  margin-top: 0.6rem;
}

@media (max-width: 820px) {
  .buy-box { position: static; }
}

.product-card-link { color: inherit; text-decoration: none; display: block; }
.product-card-link:hover h3 { color: var(--emerald-deep); }

/* ---------- detail tabs ---------- */

.detail-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

.detail-tab {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  background: transparent;
  border: 1px solid var(--emerald);
  color: var(--emerald-deep);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.detail-tab:hover { background: rgba(21, 122, 62, 0.08); }

.detail-tab.is-active {
  background: var(--emerald);
  color: var(--ivory);
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero {
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  background: var(--ivory-deep);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--emerald-deep);
  margin: 0.5rem 0 0.75rem;
}

.blog-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
  max-width: var(--max-width);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.blog-card figure {
  aspect-ratio: 16/9;
  background: var(--ivory-deep);
  overflow: hidden;
}

.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--emerald-deep);
  margin: 0 0 0.5rem;
}

.blog-card .blog-excerpt {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card .blog-meta {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilt);
}

/* ----- individual blog post ----- */

.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.blog-post .blog-eyebrow {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gilt);
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}

.blog-post h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  color: var(--emerald-deep);
  text-align: center;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.blog-post .blog-lede {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

.blog-post h2 {
  font-family: var(--font-display);
  color: var(--emerald-deep);
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--gilt);
  padding-bottom: 0.4rem;
}

.blog-post h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald);
  margin: 2rem 0 0.8rem;
}

.blog-post p, .blog-post ul, .blog-post ol {
  margin: 0 0 1.2rem;
  font-size: 1.13rem;
  line-height: 1.7;
}

.blog-post ul, .blog-post ol {
  padding-left: 1.3rem;
}

.blog-post li { margin-bottom: 0.5rem; }

.blog-post blockquote {
  border-left: 4px solid var(--gilt);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.6rem 0;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--emerald-deep);
  line-height: 1.4;
}

.blog-post .blog-figure {
  margin: 2rem 0;
  text-align: center;
}

.blog-post .blog-figure img {
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.blog-post .blog-figure figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-utility);
  font-size: 0.85rem;
  color: rgba(38, 34, 43, 0.65);
  font-style: italic;
}

.blog-shop-callout {
  background: var(--stage-black);
  color: var(--ivory);
  border-radius: 14px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.blog-shop-callout h3 {
  font-family: var(--font-display);
  color: var(--gilt-bright);
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
}

.blog-shop-callout p { margin: 0 0 1rem; color: rgba(246, 242, 232, 0.85); }

.blog-shop-callout .btn { display: inline-block; }

.blog-back {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--emerald-deep);
  text-decoration: none;
  font-family: var(--font-utility);
  font-size: 0.95rem;
}

.blog-back:hover { text-decoration: underline; }

/* Featured products at end of post */
.blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.blog-featured-grid .featured-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.18s ease;
}

.blog-featured-grid .featured-card:hover {
  transform: translateY(-3px);
}

.blog-featured-grid .featured-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-featured-grid .featured-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.8rem 0.5rem 0.2rem;
  color: var(--emerald-deep);
}

.blog-featured-grid .featured-card p {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  color: var(--gilt);
  padding: 0 0.5rem 0.8rem;
  margin: 0;
}
