/* ──────────────────────────────────────────────────────────────
   BCB — Feeding & Lactation Care page CSS
   Loads automatically by the slug-match auto-loader on
   /services/feeding-lactation-care/.
   All selectors scoped to body.page-feeding-lactation-care so
   utility class names (.eyebrow, .h-title, .body-lg, .visit, .gs,
   etc.) cannot bleed into other pages that may use the same names
   differently.
   Brand color resolves through var() tokens so the live re-tone
   flows through. No Fraunces, no SOFT axis (Manrope display).
   ────────────────────────────────────────────────────────────── */

/* ─── Hero: split layout ─────────────────────────────────
   Sub-hub pages use a contained split hero. Full-bleed
   banner is reserved for the hub itself.
   ────────────────────────────────────────────────────────────── */
body.page-feeding-lactation-care .fl-hero {
  padding: clamp(22px, 3.4vw, 44px) 24px clamp(14px, 2.2vw, 24px);
  background: transparent;
}
body.page-feeding-lactation-care .fl-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
body.page-feeding-lactation-care .fl-hero__text { max-width: 600px; }
body.page-feeding-lactation-care .fl-hero__kicker {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 16px;
}
body.page-feeding-lactation-care .fl-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06; letter-spacing: -0.022em;
  color: var(--pink-600);
  margin: 0 0 18px;
  text-wrap: balance;
}
body.page-feeding-lactation-care .fl-hero__sub {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
  color: var(--navy-700);
  margin: 0 0 18px;
  font-weight: 500;
  text-wrap: pretty;
}
body.page-feeding-lactation-care .fl-hero__body {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0 0 16px;
  text-wrap: pretty;
}
body.page-feeding-lactation-care .fl-hero__body + .fl-hero__body { margin-top: 16px; }
body.page-feeding-lactation-care .fl-hero__callout {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
  color: var(--navy-700);
  margin: 22px 0 26px;
  padding: 18px 22px;
  background: rgba(245, 214, 224, 0.40);
  border-left: 3px solid var(--pink-500);
  border-radius: var(--radius-md);
}
body.page-feeding-lactation-care .fl-hero__media {
  height: clamp(220px, 30vw, 340px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--pink-50, #FDF1F4);
  box-shadow: var(--shadow-photo);
  position: relative;
}
body.page-feeding-lactation-care .fl-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
}
@media (max-width: 880px) {
  /* Single column, centered header + button. display:contents flattens the
     text wrapper so the chip row can reorder below the photo. */
  body.page-feeding-lactation-care .fl-hero {
    padding-top: clamp(14px, 3vw, 22px);
  }
  body.page-feeding-lactation-care .fl-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;                 /* the 28-52px grid gutter was spacing every item apart */
  }
  body.page-feeding-lactation-care .fl-hero__text { display: contents; }
  body.page-feeding-lactation-care .fl-hero__kicker { margin-bottom: 8px; }
  body.page-feeding-lactation-care .fl-hero__title  { margin-bottom: 10px; }
  body.page-feeding-lactation-care .fl-hero__sub    { margin-bottom: 18px; }
  body.page-feeding-lactation-care .fl-hero__media { width: 100%; }
  body.page-feeding-lactation-care .fl-hero__toc {
    order: 1;                 /* below the photo */
    justify-content: center;
    gap: 6px;
    margin-top: clamp(14px, 3vw, 18px);
  }
  body.page-feeding-lactation-care .fl-toc__label { width: 100%; text-align: center; margin: 0 0 2px; }
  body.page-feeding-lactation-care .fl-toc__chip { font-size: 12px; padding: 6px 12px; }
}

/* ─── On-this-page chips, living inside the hero ─────────────── */
body.page-feeding-lactation-care .fl-hero__toc {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 9px;
  margin-top: clamp(16px, 2vw, 22px);
}
body.page-feeding-lactation-care .fl-toc__label {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-400);
  flex-basis: 100%; margin: 0 0 8px;
}
body.page-feeding-lactation-care .fl-toc__chip {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 13.5px;
  color: var(--navy-600);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(62, 80, 104, 0.14);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
body.page-feeding-lactation-care .fl-toc__chip:hover {
  background: #fff;
  color: var(--pink-600);
  border-color: var(--pink-200);
}

/* Jump targets clear the fixed nav + hub-subnav strip. */
body.page-feeding-lactation-care #fl-concerns,
body.page-feeding-lactation-care #fl-visits,
body.page-feeding-lactation-care #fl-reasons,
body.page-feeding-lactation-care #fl-related,
body.page-feeding-lactation-care #fl-how { scroll-margin-top: 130px; }

/* ─── Lead intro: the longer opening moved down from the hero ─── */
body.page-feeding-lactation-care .fl-intro {
  padding: clamp(24px, 3vw, 40px) 24px clamp(8px, 1.5vw, 16px);
}
body.page-feeding-lactation-care .fl-intro .fl-hero__body {
  font-size: clamp(16px, 1.15vw, 17.5px);
  line-height: 1.7;
}
body.page-feeding-lactation-care .fl-intro .fl-hero__callout { margin-bottom: 0; }

/* ─── Section primitives ──────────────────────────────── */
body.page-feeding-lactation-care .sec { padding: var(--sec-pad-y) 24px; background: transparent; }
body.page-feeding-lactation-care .sec--sm { padding: var(--sec-pad-y-sm) 24px; }
body.page-feeding-lactation-care .inner { max-width: 1180px; margin: 0 auto; }
body.page-feeding-lactation-care .inner--prose { max-width: 760px; }

body.page-feeding-lactation-care .eyebrow {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 14px;
}
body.page-feeding-lactation-care .h-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 0 0 18px;
  text-wrap: balance;
}
body.page-feeding-lactation-care .body-lg {
  font-size: clamp(16px, 1.15vw, 17.5px);
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0 0 18px;
  text-wrap: pretty;
}
body.page-feeding-lactation-care .body-lg + .body-lg { margin-top: 18px; }
body.page-feeding-lactation-care .link-arrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--pink-600);
  text-decoration: none;
  border-bottom: 1px solid rgba(194,99,138,0.30);
  padding-bottom: 2px;
}
body.page-feeding-lactation-care .link-arrow:hover { color: var(--pink-700); border-color: var(--pink-500); }

/* ─── CONCERNS: bullet list + complex situations note ── */
body.page-feeding-lactation-care .concerns__inner {
  max-width: 1000px; margin: 0 auto;
  background: var(--card-lift-bg);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 14px 36px rgba(31,45,64,0.07);
}
body.page-feeding-lactation-care .concerns__lede {
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--navy-700);
  margin: 0 0 22px;
  font-weight: 500;
}
body.page-feeding-lactation-care .concerns__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (max-width: 760px) { body.page-feeding-lactation-care .concerns__list { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .concerns__list li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--navy-700);
}
body.page-feeding-lactation-care .concerns__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
}
body.page-feeding-lactation-care .concerns__more {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0 0 14px;
}
body.page-feeding-lactation-care .concerns__more strong { color: var(--navy-700); font-weight: 600; }
body.page-feeding-lactation-care .concerns__note {
  margin: 18px 0 0;
  padding: 16px 20px;
  background: rgba(220, 240, 248, 0.55);
  border-left: 3px solid var(--sky-500);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-700);
}
body.page-feeding-lactation-care .concerns__note strong { font-weight: 700; color: var(--navy-700); }
body.page-feeding-lactation-care .concerns__note a { color: var(--pink-600); text-decoration: none; border-bottom: 1px solid rgba(194,99,138,0.30); padding-bottom: 1px; font-weight: 600; }
body.page-feeding-lactation-care .concerns__note a:hover { color: var(--pink-700); border-color: var(--pink-500); }

/* ─── VISIT TYPES (initial visit foregrounded) ────────── */
body.page-feeding-lactation-care .visits { padding: clamp(16px, 2vw, 28px) 24px clamp(56px, 7vw, 80px); }
body.page-feeding-lactation-care .visits__inner { max-width: 1180px; margin: 0 auto; }
body.page-feeding-lactation-care .visits__head { max-width: 760px; margin: 0 0 32px; }
body.page-feeding-lactation-care .visits__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 880px) { body.page-feeding-lactation-care .visits__grid { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .visit {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 14px 36px rgba(31,45,64,0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.page-feeding-lactation-care .visit--primary {
  background: rgba(245, 214, 224, 0.30);
  border-color: rgba(194, 99, 138, 0.30);
}
body.page-feeding-lactation-care .visit--primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--pink-500);
}
body.page-feeding-lactation-care .visit__tag {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 10px;
}
body.page-feeding-lactation-care .visit__tag--primary {
  display: inline-flex;
  align-items: center;
  background: var(--pink-500);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.12em;
  font-size: 10.5px;
  align-self: flex-start;
  margin-bottom: 14px;
}
body.page-feeding-lactation-care .visit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 0 0 14px;
}
body.page-feeding-lactation-care .visit p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0 0 14px;
}
body.page-feeding-lactation-care .visit p:last-child { margin-bottom: 0; }
body.page-feeding-lactation-care .visit__formats {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
  color: var(--navy-500);
}

/* ─── REASONS (5 focused visit types) ─────────────────── */
body.page-feeding-lactation-care .reasons__head { max-width: 760px; margin: 0 0 28px; }
body.page-feeding-lactation-care .reasons__head p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--navy-600);
  margin: 0;
}
body.page-feeding-lactation-care .reasons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) { body.page-feeding-lactation-care .reasons__list { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .reason {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 8px 22px rgba(31,45,64,0.06);
}
body.page-feeding-lactation-care .reason__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--pink-600);
  margin: 0 0 10px;
}
body.page-feeding-lactation-care .reason__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-600);
  margin: 0;
}
body.page-feeding-lactation-care .reason__body a {
  color: var(--pink-600);
  text-decoration: none;
  border-bottom: 1px solid rgba(194,99,138,0.30);
  padding-bottom: 1px;
  font-weight: 600;
}
body.page-feeding-lactation-care .reason__body a:hover { color: var(--pink-700); border-color: var(--pink-500); }

/* ─── RELATED & OPTIONAL SUPPORT ──────────────────────── */
body.page-feeding-lactation-care .optional__head { max-width: 760px; margin: 0 0 28px; }
body.page-feeding-lactation-care .optional__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) { body.page-feeding-lactation-care .optional__list { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .opt {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
body.page-feeding-lactation-care .opt__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-700);
  margin: 0 0 8px;
}
body.page-feeding-lactation-care .opt__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-600);
  margin: 0;
}
body.page-feeding-lactation-care .opt__body a {
  color: var(--pink-600);
  text-decoration: none;
  border-bottom: 1px solid rgba(194,99,138,0.30);
  padding-bottom: 1px;
  font-weight: 600;
}
body.page-feeding-lactation-care .opt__body a:hover { color: var(--pink-700); border-color: var(--pink-500); }
body.page-feeding-lactation-care .opt--optional {
  background: rgba(255,255,255,0.65);
  border-style: dashed;
  border-color: rgba(62,80,104,0.20);
}
body.page-feeding-lactation-care .opt--optional .opt__name { color: var(--navy-600); }

/* ─── HOW VISITS WORK ─────────────────────────────────── */
body.page-feeding-lactation-care .how__head { max-width: 760px; margin: 0 0 32px; }
body.page-feeding-lactation-care .how__head p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0;
}
body.page-feeding-lactation-care .how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { body.page-feeding-lactation-care .how__grid { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .how__card {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 10px 28px rgba(31,45,64,0.06);
}
body.page-feeding-lactation-care .how__card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--pink-600);
  margin: 0 0 10px;
}
body.page-feeding-lactation-care .how__card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-600);
  margin: 0;
}
body.page-feeding-lactation-care .how__card .link-arrow { margin-top: 14px; }
body.page-feeding-lactation-care .how__mix {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14.5px;
  color: var(--navy-600);
}

/* ─── LOCATIONS ──────────────────────────────────────── */
body.page-feeding-lactation-care .locs__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
body.page-feeding-lactation-care .locs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 22px;
}
body.page-feeding-lactation-care .locs__chip {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  color: var(--navy-700);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(62,80,104,0.12);
  backdrop-filter: blur(4px);
  transition: all .15s ease;
}
body.page-feeding-lactation-care .locs__chip:hover {
  background: var(--pink-500);
  color: #fff;
  border-color: var(--pink-500);
}

/* ─── INSURANCE & SELF-PAY ────────────────────────────── */
body.page-feeding-lactation-care .ins {
  padding: 0 24px clamp(48px, 6vw, 72px);
}
body.page-feeding-lactation-care .ins__inner {
  max-width: 980px; margin: 0 auto;
  background: var(--card-lift-bg);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 760px) { body.page-feeding-lactation-care .ins__inner { grid-template-columns: 1fr; } }
body.page-feeding-lactation-care .ins__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy-700);
  margin: 0 0 10px;
}
body.page-feeding-lactation-care .ins__copy p {
  font-size: 15px; line-height: 1.6;
  color: var(--navy-600); margin: 0;
}
body.page-feeding-lactation-care .ins__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
body.page-feeding-lactation-care .ins__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 26px;
  border-radius: 999px;
  background: var(--sky-500);
  color: var(--navy-800);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
body.page-feeding-lactation-care .ins__btn:hover { background: var(--sky-600); transform: translateY(-1px); }

/* ─── RELATED PAGES (sits in light zone) ─────────────── */
body.page-feeding-lactation-care .rel { padding: 0 24px clamp(40px, 5vw, 60px); }
body.page-feeding-lactation-care .rel__inner { max-width: 1180px; margin: 0 auto; }
body.page-feeding-lactation-care .rel__head {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0 0 20px;
}
body.page-feeding-lactation-care .rel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
body.page-feeding-lactation-care .rel__card {
  /* Canonical frosted card (was a brighter hardcoded 0.84 white that read as
     flat bright-white when lifted over the light gradient above the ombré). */
  background: var(--card-lift-bg);
  backdrop-filter: var(--card-lift-blur);
  -webkit-backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease;
}
body.page-feeding-lactation-care .rel__card:hover {
  transform: translateY(-2px);
  border-color: rgba(194,99,138,0.25);
}
body.page-feeding-lactation-care .rel__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--navy-700);
  margin: 0 0 6px;
}
body.page-feeding-lactation-care .rel__desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--navy-500);
}

/* ─── CLOSER — FLAT NAVY CTA + in-page ombré band ─────────
   Per claude.ai/design spec "Dark fade into the footer" (page ends in a CTA):
   the light content fades through a band INTO a flat navy block that is
   continuous with the navy footer. The band is a sibling rising directly
   above the CTA; the sections it rises over are lifted (z-index) so their
   content stays readable.
   ENV RETARGET: the spec uses #1F2D40 (its prototype footer); the LIVE
   footer (.site-foot) is #293448 = --navy-700, so every navy here is
   --navy-700 or rgba(41,52,72,α) — using #1F2D40 would seam against the
   live footer (L-044). Band alpha-fades the navy; never the `transparent`
   keyword (that greys the ramp). FLAT block — no card, radius, or shadow. */
/* CLOSER → LIGHT frosted card + Case-A fade (enabled below). Was a flat navy CTA. */
body.page-feeding-lactation-care .gs {
  position: relative;
  color: var(--navy-500);
  background: transparent;
  padding: clamp(48px, 7vw, 80px) 24px;
}
body.page-feeding-lactation-care .footer-ombre-blend { display: block; }
body.page-feeding-lactation-care .gs__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--card-lift-bg); backdrop-filter: var(--card-lift-blur); -webkit-backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-xl);
  padding: clamp(40px,5.5vw,60px) clamp(28px,4vw,48px); box-shadow: 0 18px 50px -28px rgba(41,52,72,0.35);
}
body.page-feeding-lactation-care .gs .secure-form-note--on-dark { color: var(--navy-400); }
body.page-feeding-lactation-care .gs .eyebrow { color: var(--pink-600); margin: 0 0 16px; }
body.page-feeding-lactation-care .gs__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy-700);
  margin: 0 0 18px;
  text-wrap: balance;
}
body.page-feeding-lactation-care .gs__body {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  margin: 0 0 28px;
  color: var(--navy-500);
}
body.page-feeding-lactation-care .gs__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 30px;
  border-radius: 999px;
  background: var(--pink-500);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
body.page-feeding-lactation-care .gs__btn:hover { background: var(--pink-600); transform: translateY(-1px); }

/* ─── ALSO AVAILABLE — Tiny Health box above the closer; mirrors
   well-nursing-visits (qa3 #6). Sky-tint box. ─── */

/* ─── Mobile centering convention ─────────────────────────────
   At phone widths every grid is already single-column, so the
   section intro headers, short ledes, and standalone buttons read
   as off when left-aligned under the now-centered hero. Center the
   intros + buttons; KEEP multi-line card body copy and bullet lists
   left-aligned for readability.
   ────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  /* Section intro headers + their ledes */
  body.page-feeding-lactation-care .visits__head,
  body.page-feeding-lactation-care .reasons__head,
  body.page-feeding-lactation-care .optional__head,
  body.page-feeding-lactation-care .how__head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Concerns card: center the header + lede only; list/note stay left */
  body.page-feeding-lactation-care .concerns .eyebrow,
  body.page-feeding-lactation-care .concerns .h-title,
  body.page-feeding-lactation-care .concerns__lede { text-align: center; }

  /* Insurance block: center copy + button once it stacks */
  body.page-feeding-lactation-care .ins__inner { text-align: center; }
  body.page-feeding-lactation-care .ins__actions { align-items: center; }

  /* Related-pages label centers over the single-column card stack */
  body.page-feeding-lactation-care .rel__head { text-align: center; }
}
