/* ==================================================================
   Family Stories — cluster page CSS (hub + 4 themed spokes)
   PRODUCTION build from design handoff 11 (Family Stories redesign).
   Faithful to the handoff EXCEPT three blocks removed for production:
     - .fs-hubhero  (hub keeps the sitewide .hub-band hero, Suzanne 2026-06-08)
     - the entrance @media animation (it targeted .fs-hubhero, now gone)
     - .fstwk Tweaks panel (prototype-only authoring aid; not shipped)
   Reading-aid defaults (aids on, comfortable) are attribute-free, so no JS
   is needed to apply them. Tokens all resolve from colors_and_type.css.
   ================================================================== */

/* ─── Page canvas — Family Stories uses the SITEWIDE ombré wash (--grad-page-v3,
   inherited from the base body rule) so it dissolves to navy like every other page
   (Suzanne 2026-06-08; supersedes the prior cream→sky-only look). The global
   .footer-ombre-blend handles the fade into the footer. ─────────────── */
body.fs-page {
  --fs-accent:       var(--pink-500);   /* tweakable: eyebrow / quote / links / progress */
  --fs-accent-soft:  var(--pink-50);
  --fs-measure:      63ch;              /* reading line length (compact tightens it) */
  --fs-body:         19px;              /* narrative size (tweakable) */
  --fs-lh:           1.72;              /* narrative line-height (compact tightens) */
}
body.fs-page[data-density="compact"] {
  --fs-measure: 58ch;
  --fs-lh: 1.6;
}

/* ─── Reading-progress bar (top hairline; toggleable) ───────────── */
.fs-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: var(--fs-accent);
  transition: width 90ms linear;
  pointer-events: none;
}
body[data-aids="off"] .fs-progress { display: none; }

/* ══════════════════════════════════════════════════════════════════
   SPOKE HERO — soft text hero (no breadcrumb), with on-this-page chips
   ══════════════════════════════════════════════════════════════════ */
body.fs-page .fs-hero { padding: clamp(40px, 5.5vw, 76px) 24px clamp(8px, 2vw, 20px); }
.fs-hero__inner { max-width: 860px; margin: 0 auto; }
.fs-hero__eyebrow {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fs-accent);
  margin: 0 0 16px;
}
.fs-hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--navy-700);
  margin: 0;
  text-wrap: balance;
}
.fs-hero__lede {
  font-family: var(--font-sans);
  font-weight: 450;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
  color: var(--navy-500);
  margin: 22px 0 0;
  max-width: 62ch;
}
.fs-hero__count {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 26px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-400);
}
.fs-hero__count b { font-size: 15px; color: var(--fs-accent); }

/* ─── Related-on-site links (spoke hero) ────────────────────────── */
.fs-herolinks {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 14px;
  margin-top: clamp(22px, 2.6vw, 30px);
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid var(--gray-200);
}
.fs-herolinks__lead {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-400);
  margin-right: 4px;
}
.fs-herolink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14.5px;
  color: var(--navy-700);
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
/* QA 2026-06-10 (Suzanne): no arrows on the spoke-hero CTA buttons. */
.fs-herolink svg { display: none; }
.fs-herolink:hover { color: var(--fs-accent); border-color: var(--fs-accent); background: #fff; }
.fs-herolink--cta { background: var(--fs-accent); color: #fff; border-color: var(--fs-accent); }
.fs-herolink--cta:hover { background: var(--pink-700); color: #fff; border-color: var(--pink-700); }

/* ─── Story-list toolbar (count + expand/collapse all) ──────────── */
body.fs-page .fs-toolbar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.fs-toolbar__label {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-400);
}
.fs-expandall {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-600);
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.fs-expandall:hover { background: #fff; border-color: var(--fs-accent); color: var(--fs-accent); }
.fs-expandall svg { width: 13px; height: 13px; flex: none; }

/* ══════════════════════════════════════════════════════════════════
   STORY LIST + STORY CARD (the reading system)
   ══════════════════════════════════════════════════════════════════ */
body.fs-page .fs-sheet { padding: clamp(20px, 3vw, 32px) 24px clamp(40px, 6vw, 72px); }
.fs-storylist {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 30px);
}

/* The card itself lifts off the wash (frosted) */
.fs-story {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
  backdrop-filter: blur(8px) saturate(112%);
  box-shadow: var(--shadow-card-lift);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
  scroll-margin-top: 96px;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.fs-story:hover { box-shadow: 0 2px 6px rgba(31,45,64,.06), 0 22px 50px rgba(31,45,64,.13); }
.fs-story[data-open="true"] { box-shadow: 0 2px 6px rgba(31,45,64,.06), 0 26px 56px rgba(31,45,64,.16); }

.fs-story__d { }
.fs-story__d > summary { list-style: none; cursor: pointer; outline: none; }
.fs-story__d > summary::-webkit-details-marker { display: none; }
.fs-story__d > summary:focus-visible { outline: 3px solid var(--fs-accent); outline-offset: -3px; border-radius: var(--radius-xl); }

/* ── HEAD (the always-visible "spine") ── */
.fs-story__head {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 30px);
  align-items: center;
}
/* Featured = photo beside intro */
.fs-story--featured .fs-story__head { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr); }
/* More = small thumb beside condensed intro */
.fs-story--more .fs-story__head { grid-template-columns: 200px minmax(0, 1fr); gap: clamp(18px, 2.4vw, 28px); }

/* Photo frame — album corners + soft float */
.fs-story__photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 1px 2px rgba(31,45,64,.06), 0 14px 30px -12px rgba(31,45,64,.28);
}
.fs-story--featured .fs-story__photo { aspect-ratio: 5 / 4; }
.fs-story--more .fs-story__photo { aspect-ratio: 1 / 1; }
.fs-story__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Per-photo crop fix: this is a tall portrait with the subject's face high in
   frame; default center-cover cropped her forehead. Pin the crop near the top
   so the full face shows in the landscape card window. (2026-06-08) */
.fs-story__photo img[src*="tongue-tie-mother-brightly-colored-hair"] { object-position: center 12%; }

/* Empty/placeholder photo frame (graceful: no photo yet) */
.fs-photo-ph {
  display: grid; place-content: center; gap: 8px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, #eef2f6 0 14px, #e7edf2 14px 28px);
  color: var(--navy-300);
}
.fs-photo-ph__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--navy-400);
}
.fs-photo-ph__sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--navy-300); }

/* Intro column */
.fs-story__intro { min-width: 0; }
.fs-meta {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--fs-accent);
  margin: 0 0 14px;
  line-height: 1.5;
}
.fs-meta b { color: var(--navy-600); }
.fs-meta .fs-meta__sep { color: var(--navy-200); margin: 0 2px; font-weight: 700; }

/* Lifted line — the hook */
.fs-pull {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  margin: 0;
  text-wrap: pretty;
}
.fs-story--more .fs-pull { font-size: clamp(17px, 1.9vw, 20px); }
.fs-pull::before { content: "\201C"; color: var(--fs-accent); margin-right: 1px; }
.fs-pull::after  { content: "\201D"; color: var(--fs-accent); }

/* If a story has no pull-quote, a plain teaser line is used instead */
.fs-teaser {
  font-family: var(--font-sans);
  font-weight: 450;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--navy-500);
  margin: 0;
}

/* read-time + open affordance */
.fs-readbar {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(16px, 2vw, 22px);
}
.fs-readtime {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-400);
}
.fs-readtime svg { width: 13px; height: 13px; flex: none; stroke: var(--navy-400); }
body[data-aids="off"] .fs-readtime { display: none; }
.fs-openlink {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fs-accent);
}
.fs-chev {
  width: 18px; height: 18px; flex: none;
  display: grid; place-items: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.fs-chev svg { width: 13px; height: 13px; stroke: var(--fs-accent); }
.fs-story[data-open="true"] .fs-chev { transform: rotate(180deg); }
.fs-story[data-open="true"] .fs-openlink__label::after { content: "Close story"; }
.fs-story[data-open="false"] .fs-openlink__label::after,
.fs-story:not([data-open]) .fs-openlink__label::after { content: "Read the story"; }

/* ── BODY (the full narrative, revealed) ── */
.fs-story__body {
  padding: 0 clamp(20px, 2.6vw, 30px) clamp(24px, 3vw, 36px);
}
.fs-story__bodyinner {
  max-width: var(--fs-measure);
  display: flex;
  flex-direction: column;
  /* featured stories read centered under the head; more-stories left-align */
}
/* Reading order when expanded: the practice's summary first, then the family's
   full narrative, then their photos, then the collapse control. */
.fs-story__bodyinner > .fs-divider  { order: 0; margin-bottom: 0; }
.fs-story__bodyinner > .fs-wwd       { order: 1; }
.fs-story__bodyinner > .fs-narrative { order: 2; margin-top: clamp(24px, 3vw, 32px); }
.fs-story__bodyinner > .fs-gallery   { order: 3; }
.fs-story__bodyinner > .fs-collapse  { order: 4; }
.fs-story--featured .fs-story__bodyinner { margin-inline: auto; }
.fs-story--more .fs-story__bodyinner { margin-left: calc(200px + clamp(18px, 2.4vw, 28px)); }
.fs-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300) 18%, var(--gray-300) 82%, transparent);
  margin: 4px 0 clamp(22px, 3vw, 32px);
}

.fs-narrative > p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--fs-lh);
  color: var(--navy-600);
  margin: 0 0 1.05em;
  text-wrap: pretty;
}
.fs-narrative > p:last-child { margin-bottom: 0; }
/* Drop-cap opener — quiet album flourish */
.fs-narrative > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.1em;
  line-height: 0.82;
  float: left;
  margin: 0.06em 0.1em 0 0;
  color: var(--fs-accent);
}
body[data-density="compact"] .fs-narrative > p:first-of-type::first-letter { font-size: 2.6em; }

/* "More from this family" — photo gallery inside an open story */
.fs-gallery { margin-top: clamp(26px, 3.2vw, 38px); }
.fs-gallery__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--navy-400);
  margin: 0 0 14px;
}
.fs-gallery__label::before {
  content: ""; width: 22px; height: 2px; background: var(--fs-accent); border-radius: 2px; opacity: 0.7;
}
.fs-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 14px);
}
.fs-gallery figure {
  margin: 0;
  flex: 1 1 150px;
  max-width: 210px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 1px 2px rgba(31,45,64,.06), 0 10px 22px -12px rgba(31,45,64,.26);
}
.fs-gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-base) var(--ease-out);
}
.fs-gallery figure:hover img { transform: scale(1.04); }

/* "What we did" — the one place the practice speaks */
.fs-wwd {
  margin-top: clamp(26px, 3.2vw, 38px);
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 32px);
  background: rgba(225,239,247,0.7);
  border: 1px solid rgba(94,123,164,0.18);
  border-radius: var(--radius-lg);
}
.fs-wwd__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--slate-700);
  margin: 0 0 12px;
}
.fs-wwd__label::before {
  content: ""; width: 22px; height: 2px; background: var(--slate-500); border-radius: 2px;
}
.fs-wwd p {
  font-family: var(--font-sans);
  font-weight: 450;
  font-size: clamp(15.5px, 1.7vw, 17px);
  line-height: 1.62;
  color: var(--navy-600);
  margin: 0;
}

/* Collapse affordance at foot of an open story */
.fs-collapse {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: clamp(22px, 2.6vw, 30px);
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-400);
}
.fs-collapse:hover { color: var(--fs-accent); }
.fs-collapse svg { width: 13px; height: 13px; flex: none; }

/* ══════════════════════════════════════════════════════════════════
   HUB — themed teaser blocks
   ══════════════════════════════════════════════════════════════════ */
body.fs-page .fs-anchor-wrap { padding: clamp(36px, 5vw, 64px) 24px 0; }
.fs-anchor-label {
  max-width: 1080px; margin: 0 auto clamp(16px, 2vw, 22px);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-400);
}
.fs-anchor-label::after { content: ""; height: 1px; flex: 1; background: var(--gray-300); }

body.fs-page .fs-themes { padding: clamp(28px, 4vw, 48px) 24px; }
.fs-themes__inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(40px, 5vw, 68px); }

.fs-theme { }
.fs-theme__head { max-width: 760px; margin-bottom: clamp(22px, 2.6vw, 30px); }
.fs-theme__count {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--fs-accent);
  margin: 0 0 12px;
}
.fs-theme__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy-700);
  margin: 0;
  text-wrap: balance;
}
.fs-theme__lede {
  font-family: var(--font-sans);
  font-weight: 450;
  font-size: clamp(16px, 1.85vw, 19px);
  line-height: 1.6;
  color: var(--navy-500);
  margin: 16px 0 0;
  max-width: 60ch;
}
.fs-theme__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.fs-theme--single .fs-theme__grid { grid-template-columns: minmax(0, 1fr); max-width: 520px; }

/* Mini teaser card → links to the spoke */
.fs-mini {
  display: flex; gap: 18px; align-items: center;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.fs-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fs-mini__photo {
  width: 92px; height: 92px; flex: none;
  border-radius: var(--radius-md);
  overflow: hidden; background: var(--gray-100);
}
.fs-mini__photo img { width: 100%; height: 100%; object-fit: cover; }
.fs-mini__photo.fs-photo-ph { background: repeating-linear-gradient(135deg, #eef2f6 0 14px, #e7edf2 14px 28px); }
.fs-mini__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--navy-700); margin: 0 0 5px; letter-spacing: -0.01em;
}
.fs-mini__desc {
  font-family: var(--font-sans);
  font-weight: 400; font-size: 13.5px; line-height: 1.45;
  color: var(--navy-400); margin: 0;
  display: block;
}
.fs-readall {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: clamp(20px, 2.4vw, 26px);
  font-family: var(--font-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fs-accent);
  text-decoration: none;
  border-bottom: 2px solid var(--pink-200);
  padding-bottom: 3px;
  width: fit-content;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.fs-readall:hover { color: var(--pink-700); border-color: var(--fs-accent); }
.fs-readall svg { width: 15px; height: 15px; transition: transform var(--dur-fast); }
.fs-readall:hover svg { transform: translateX(3px); }
.fs-readall--soon { color: var(--navy-400); border-color: var(--gray-300); cursor: default; pointer-events: none; }
.fs-readall--soon:hover { color: var(--navy-400); border-color: var(--gray-300); }

/* ─── Hub pull-quote band (two lifted lines) ────────────────────── */
body.fs-page .fs-quoteband { padding: clamp(40px, 5vw, 72px) 24px; }
.fs-quoteband__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.fs-bigquote {
  font-family: var(--font-sans);
  font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--navy-700);
  margin: 0;
  position: relative;
  padding-left: 26px;
}
.fs-bigquote::before {
  content: "\201C";
  position: absolute; left: -4px; top: -8px;
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--fs-accent);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════════
   CTA bands — mid-page (tongue-tie) + closer
   ══════════════════════════════════════════════════════════════════ */
body.fs-page .fs-midcta { padding: clamp(8px, 2vw, 20px) 24px clamp(20px, 3vw, 36px); }
.fs-midcta__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: clamp(24px, 3vw, 36px) clamp(26px, 3.4vw, 44px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}
.fs-midcta__text { max-width: 56ch; }
.fs-midcta__h {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(20px, 2.4vw, 27px);
  letter-spacing: -0.015em; color: var(--navy-700); margin: 0 0 6px;
}
.fs-midcta__p {
  font-family: var(--font-sans); font-weight: 400; font-size: 16px;
  line-height: 1.55; color: var(--navy-500); margin: 0;
}
.fs-midcta .btn { flex: none; }

/* Closer — sits on the navy that the ombre blend ramps into. Carries its own
   navy fill so the light text always reads even if the blend ramp is short. */
/* Closer = Case-A LIGHT frosted card (Suzanne 2026-06-08): sits on the wash, dark
   text, pink button; the global .footer-ombre-blend fades it into the navy footer —
   no navy band, no hard line. (.footer-ombre-lift in the markup keeps it above the blend.) */
body.fs-page .fs-cta {
  position: relative; z-index: 1;
  text-align: center;
  background: transparent;
  padding: clamp(40px, 6vw, 72px) 24px clamp(56px, 8vw, 96px);
}
.fs-cta__inner {
  max-width: 680px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: var(--card-lift-blur); backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-lift);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
.fs-cta__eyebrow {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink-500); margin: 0 0 16px;
}
.fs-cta__h {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08; letter-spacing: -0.022em;
  color: var(--navy-700); margin: 0; text-wrap: balance;
}
.fs-cta__p {
  font-family: var(--font-sans); font-weight: 450;
  font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6;
  color: var(--navy-500); margin: 18px auto 30px; max-width: 50ch;
}
.fs-cta .btn--primary { background: var(--pink-500); color: #fff; }
.fs-cta .btn--primary:hover { background: var(--pink-600); color: #fff; }

/* ══════════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .fs-story--featured .fs-story__head { grid-template-columns: 1fr; }
  .fs-story--featured .fs-story__photo { aspect-ratio: 16 / 10; }
  .fs-story--more .fs-story__head { grid-template-columns: 120px minmax(0,1fr); }
  .fs-story--more .fs-story__photo { aspect-ratio: 1 / 1; }
  .fs-story--more .fs-story__bodyinner { margin-left: 0; }
  .fs-theme__grid { grid-template-columns: 1fr; }
  .fs-quoteband__inner { grid-template-columns: 1fr; gap: 32px; }
  .fs-midcta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .fs-story__head { padding: 16px; }
  .fs-story--more .fs-story__head { grid-template-columns: 1fr; }
  .fs-story--more .fs-story__photo { aspect-ratio: 16 / 10; }
  .fs-openlink { margin-left: 0; }
  .fs-readbar { flex-wrap: wrap; }
  .fs-mini { flex-direction: column; align-items: flex-start; text-align: left; }
  .fs-mini__photo { width: 100%; height: 150px; }
}

/* QA 2026-06-10 (Suzanne): on phones the wrapped spoke-hero CTA buttons read
   ragged (two-per-line then a stray wrap). Stack them full-width and centered so
   they align consistently across every device. */
@media (max-width: 600px) {
  .fs-herolinks { flex-direction: column; align-items: stretch; }
  .fs-herolinks__lead { margin-right: 0; margin-bottom: 2px; }
  .fs-herolink { justify-content: center; width: 100%; }
}

/* Hub hero photo: tone down vibrance to match the site's other hub heroes (Suzanne 2026-06-08, tunable) */
body.fs-page .hub-band__img { filter: saturate(0.6) brightness(1.03); }
