/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/article-card/article-card.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Article card + grid + pregnancy sub-tabs.
 *
 * Shared by the /blog archive and the five care landing pages, so the card
 * reads identically wherever a post is surfaced. Owned here, not in
 * app/blog/page.module.css, because both surfaces render it. */

.article-card_contentFade__ODZOl {
  animation: article-card_fadeInUp__b7b_R 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes article-card_fadeInUp__b7b_R {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Article grid */
.article-card_articleGrid__eOzY5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card_articleCard__316hy {
  background: rgb(var(--paper));
  border-radius: 16px;
  box-shadow: 0 2px 12px -2px rgba(26, 26, 46, 0.08), 0 1px 4px -1px rgba(26, 26, 46, 0.04);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s, border-color 0.25s;
  border: 1.5px solid rgb(var(--paper-deep));
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.article-card_articleCard__316hy:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(26, 26, 46, 0.13), 0 4px 8px -2px rgba(253, 108, 139, 0.10);
  border-color: rgb(var(--accent-fill));
}
.article-card_articleCardStripe__avCa8 {
  height: 5px;
  background: linear-gradient(90deg, rgb(var(--accent)) 0%, rgb(var(--accent-deep)) 100%);
}
.article-card_articleCardBody__hkGJG { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.article-card_articleCategoryTag__XSJMt {
  display: inline-block;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgb(var(--accent-soft));
  color: rgb(var(--accent-deep));
  padding: 4px 10px;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
}
.article-card_articleTitle___Uchh {
  font-family: var(--font-fraunces), serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgb(var(--ink));
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}
.article-card_articleExcerpt__VHlvh {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13.5px;
  color: rgb(var(--ink-muted));
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.article-card_articleMeta__ViCTl {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 11.5px;
  color: rgb(var(--ink-muted));
  font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.article-card_articleMetaDot__GN8XM {
  width: 4px; height: 4px;
  background: rgb(var(--accent) / 0.35);
  border-radius: 50%;
  display: inline-block;
}
.article-card_articleCta__zTosr {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgb(var(--accent));
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s, gap 0.2s;
}
.article-card_articleCta__zTosr:hover { color: rgb(var(--accent-deep)); gap: 7px; }

/* ─── Pregnancy sub-tabs ─── */
.article-card_pregnancyTabs__sw4yJ {
  display: flex; gap: 4px;
  background: rgb(var(--paper-deep));
  border-radius: 12px;
  padding: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 32px;
}
.article-card_pregnancyTab__xVinf {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--ink-soft));
  padding: 9px 20px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  background: transparent;
}
.article-card_pregnancyTab__xVinf:hover { color: rgb(var(--accent)); }
.article-card_pregnancyTabActive__62cVb {
  background: rgb(var(--accent)) !important;
  color: white !important;
  box-shadow: 0 2px 8px -2px rgba(253, 108, 139, 0.35);
}

@media (max-width: 900px) {
  .article-card_articleGrid__eOzY5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .article-card_articleGrid__eOzY5 { grid-template-columns: 1fr; }
  .article-card_pregnancyTabs__sw4yJ { width: 100%; }
  .article-card_pregnancyTab__xVinf { flex: 1; text-align: center; font-size: 12px; padding: 9px 12px; }
}

/* ─── Centred variant (care landing pages) ─── */
/* The care pages centre their section headers, so a category with only two
 * posts must centre its row too — left-aligned, it leaves an obvious hole in
 * the third column. auto-fit collapses the unused track, and the 320px cap
 * keeps cards the width they'd have in a full three-up row. Declared after
 * the media queries above so it wins over them at every width. */
.article-card_articleGridCentered__Xy1y6 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
}
/* Same reasoning for the pregnancy tab bar, which is width: fit-content. */
.article-card_pregnancyTabsCentered__QubNS {
  margin-inline: auto;
}
@media (max-width: 600px) {
  .article-card_articleGridCentered__Xy1y6 { grid-template-columns: minmax(0, 320px); }
}

/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/breadcrumb.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Site breadcrumb — matches the existing inline pattern (blog, contact,
   legal): small bricolage text, "/" separators, accent hover. */
.breadcrumb_breadcrumb__zX03v {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 12px;
  color: rgb(var(--ink-muted));
}
.breadcrumb_list__oXmMT {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb_item__9Qx7q {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb_breadcrumb__zX03v a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb_breadcrumb__zX03v a:hover {
  color: rgb(var(--accent));
}
.breadcrumb_sep__3C5Wj {
  opacity: 0.45;
}
.breadcrumb_current__pN0HZ {
  color: rgb(var(--ink-soft));
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/care-landing/care-landing.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.care-landing_page__0ozgg {
  min-height: 100vh;
  background: rgb(var(--paper));
}

.care-landing_wrap__CwueW {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}

.care-landing_eyebrow__IShe_ {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--accent));
}

/* ─── Hero ─── */
.care-landing_hero__TG_ZS {
  text-align: center;
  margin-bottom: 88px;
  padding-top: 8px;
  position: relative;
}
/* Center the breadcrumb over the centered hero. */
.care-landing_breadcrumb__Dv1Y6 {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
/* Soft warm halo behind the hero for atmosphere */
.care-landing_hero__TG_ZS::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90vw);
  height: 420px;
  background: radial-gradient(
    ellipse at center,
    rgb(var(--accent-soft) / 0.55),
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.care-landing_hero__TG_ZS > * { position: relative; z-index: 1; }

.care-landing_h1__XPkjT {
  font-family: var(--font-fraunces), serif;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: rgb(var(--ink));
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  margin-top: 20px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.care-landing_h1__XPkjT em {
  color: rgb(var(--accent));
  font-style: italic;
  font-weight: 500;
}
.care-landing_lede__Bicpo {
  font-family: var(--font-fraunces), serif;
  font-size: 19px;
  line-height: 1.65;
  color: rgb(var(--ink-soft));
  max-width: 40rem;
  margin: 24px auto 0;
  text-wrap: pretty;
}
.care-landing_heroActions__nu3Ck {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.care-landing_heroCta__U25VZ {
  display: inline-block;
  background: rgb(var(--accent));
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 24px -10px rgba(242, 60, 15, 0.5);
}
.care-landing_heroCta__U25VZ:hover {
  background: rgb(var(--accent-deep));
  transform: translateY(-1px);
}
.care-landing_heroNote__iZHj0 {
  margin-top: 16px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13px;
  color: rgb(var(--ink-muted));
}

/* ─── Section header ─── */
.care-landing_section__HpCP1 { margin-bottom: 88px; }
.care-landing_sectionHead__kWSXq { text-align: center; max-width: 40rem; margin: 0 auto 44px; }
.care-landing_h2__7ue9s {
  font-family: var(--font-fraunces), serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgb(var(--ink));
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  margin-top: 14px;
}
.care-landing_h2__7ue9s em {
  color: rgb(var(--accent));
  font-style: italic;
  font-weight: 500;
}
.care-landing_sectionIntro__DhF8V {
  font-family: var(--font-fraunces), serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgb(var(--ink-soft));
  margin-top: 14px;
  text-wrap: pretty;
}

/* ─── Causes grid (What affects fertility) ─── */
.care-landing_causes__8KZoI {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.care-landing_cause__ylAdN {
  background: rgb(var(--paper-deep));
  padding: 28px 26px;
  border-radius: 20px;
  position: relative;
}
/* the first (PCOS) card leads, given a warmer fill */
.care-landing_cause__ylAdN:first-child {
  background: rgb(var(--accent-fill));
}
.care-landing_causeNum__v7uS_ {
  font-family: var(--font-fraunces), serif;
  font-style: italic;
  font-size: 20px;
  color: rgb(var(--accent));
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  line-height: 1;
}
.care-landing_cause__ylAdN h3 {
  font-family: var(--font-fraunces), serif;
  font-size: 21px;
  font-weight: 500;
  color: rgb(var(--ink));
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  line-height: 1.25;
  margin-top: 12px;
}
.care-landing_cause__ylAdN p {
  font-family: var(--font-fraunces), serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgb(var(--ink-soft));
  margin-top: 10px;
}

/* Linked cards (hub → spoke). Whole card is clickable; lifts on hover. */
a.care-landing_cause__ylAdN {
  display: block;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
a.care-landing_cause__ylAdN:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -20px rgba(44, 44, 44, 0.35);
}
.care-landing_causeLink__wKJBC {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgb(var(--accent));
}
a.care-landing_cause__ylAdN:hover .care-landing_causeLink__wKJBC { gap: 10px; }
.care-landing_causeLink__wKJBC::after {
  content: '→';
  transition: transform 0.2s;
}

/* ─── Areas we cover (city hub → locality pages) ─── */
.care-landing_areas__c0zYK {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.care-landing_areaPill__KzADH {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgb(var(--rule) / 0.14);
  background: rgb(var(--paper-deep));
  font-family: var(--font-bricolage), sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgb(var(--ink));
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.care-landing_areaPill__KzADH::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgb(var(--accent));
  flex-shrink: 0;
}
.care-landing_areaPill__KzADH:hover {
  border-color: rgb(var(--accent));
  color: rgb(var(--accent));
  background: rgb(var(--paper));
  transform: translateY(-2px);
}

/* ─── When to see a specialist (signals list) ─── */
.care-landing_signals__vmlnd {
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.care-landing_signal__Hpvp5 {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgb(var(--rule) / 0.10);
  align-items: start;
}
.care-landing_signal__Hpvp5:last-child { border-bottom: 1px solid rgb(var(--rule) / 0.10); }
.care-landing_signalMark__WROoX {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgb(var(--accent-soft));
  color: rgb(var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.care-landing_signal__Hpvp5 p {
  font-family: var(--font-fraunces), serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgb(var(--ink-soft));
  align-self: center;
}
.care-landing_signal__Hpvp5 p strong {
  color: rgb(var(--ink));
  font-weight: 600;
}

/* ─── How Zuvi helps (cream band with points) ─── */
.care-landing_helps__DIIz_ {
  background: rgb(var(--paper-warm));
  border: 1px solid rgb(var(--rule) / 0.08);
  border-radius: 28px;
  padding: 56px 48px;
}
.care-landing_helpsHead__Q9w4V { text-align: center; max-width: 40rem; margin: 0 auto 40px; }
.care-landing_helpsGrid__P0c9d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.care-landing_help__M4K2c h3 {
  font-family: var(--font-fraunces), serif;
  font-size: 19px;
  font-weight: 500;
  color: rgb(var(--ink));
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  line-height: 1.3;
}
.care-landing_help__M4K2c h3 span {
  display: block;
  font-family: var(--font-caveat), cursive;
  font-size: 22px;
  color: rgb(var(--accent));
  font-weight: 600;
  margin-bottom: 2px;
}
.care-landing_help__M4K2c p {
  font-family: var(--font-fraunces), serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgb(var(--ink-soft));
  margin-top: 10px;
}

/* ─── FAQ ─── */
.care-landing_faqList__wuPNi {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.care-landing_faqItem__N363h {
  background: rgb(var(--paper-deep));
  border-radius: 14px;
  padding: 24px 28px;
}
.care-landing_faqQ__Ffr_E {
  font-family: var(--font-fraunces), serif;
  font-size: 18px;
  color: rgb(var(--ink));
  font-weight: 600;
  line-height: 1.4;
}
.care-landing_faqA__Dl_6n {
  font-family: var(--font-fraunces), serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(var(--ink-soft));
  margin-top: 12px;
  max-width: 44rem;
}
.care-landing_faqLink__4EsPJ {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--accent));
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.care-landing_faqLink__4EsPJ::after {
  content: '→';
  transition: transform 0.2s;
}
.care-landing_faqLink__4EsPJ:hover {
  gap: 10px;
  color: rgb(var(--accent-deep));
}

/* ─── Articles ─── */
.care-landing_articlesMore__jfxzr {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.care-landing_articlesMoreLink__xixXP {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: rgb(var(--accent));
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.care-landing_articlesMoreLink__xixXP::after {
  content: '→';
}
.care-landing_articlesMoreLink__xixXP:hover {
  gap: 10px;
  color: rgb(var(--accent-deep));
}

/* ─── Closing CTA band ─── */
.care-landing_ctaBlock__rDcwV {
  background: linear-gradient(135deg, rgb(var(--accent)) 0%, rgb(var(--accent-darker)) 100%);
  color: white;
  padding: 64px 48px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.care-landing_ctaBlock__rDcwV::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.care-landing_ctaBlock__rDcwV .care-landing_eyebrow__IShe_ { color: white; opacity: 0.85; position: relative; }
.care-landing_ctaBlock__rDcwV h2 {
  font-family: var(--font-fraunces), serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  margin-top: 14px;
  position: relative;
}
.care-landing_ctaLede__HPY7B {
  font-family: var(--font-fraunces), serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 16px auto 0;
  max-width: 34rem;
  position: relative;
}
.care-landing_ctaButton__8Xdqw {
  display: inline-block;
  margin-top: 32px;
  background: white;
  color: rgb(var(--accent));
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  position: relative;
}
.care-landing_ctaButton__8Xdqw:hover {
  background: rgb(var(--ink));
  color: white;
  transform: scale(1.03);
}

/* ─── Educational disclaimer ─── */
.care-landing_disclaimer__ZMsjy {
  max-width: 760px;
  margin: 40px auto 0;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgb(var(--ink-muted));
  text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .care-landing_causes__8KZoI { grid-template-columns: repeat(2, 1fr); }
  .care-landing_helpsGrid__P0c9d { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .care-landing_wrap__CwueW { padding: 40px 22px 72px; }
  .care-landing_causes__8KZoI { grid-template-columns: 1fr; }
  .care-landing_helps__DIIz_ { padding: 40px 26px; }
  .care-landing_ctaBlock__rDcwV { padding: 48px 26px; }
  .care-landing_signal__Hpvp5 { grid-template-columns: 32px 1fr; gap: 14px; }
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/.pnpm/next@14.2.25_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/shared-footer.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Shared site footer — used on patient and doctor surfaces */

.shared-footer_footer__RdYQo {
  background: rgb(var(--ink));
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.shared-footer_footer__RdYQo::before {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,60,15,0.16), transparent 70%);
  pointer-events: none;
}

.shared-footer_wrap__7fv5b { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ─── CTA banner ─── */
.shared-footer_cta__v8sWz {
  background: linear-gradient(120deg, #ff8a3d 0%, #fb7233 55%, #f5762f 100%);
  color: white;
  padding: 56px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -34px rgba(245,118,47,0.55);
}
.shared-footer_cta__v8sWz::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}
.shared-footer_ctaH3__QSGbP {
  font-family: var(--font-fraunces), serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600; line-height: 1.1;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  position: relative;
}
.shared-footer_ctaP__rRmaU {
  font-family: var(--font-fraunces), serif;
  font-size: 16px; line-height: 1.6;
  margin-top: 12px; max-width: 36rem;
  color: rgba(255,255,255,0.92);
  position: relative;
}
/* Secondary action — outline on the warm band so booking stays the loud primary. */
.shared-footer_ctaLink__RsLRz {
  background: rgba(255,255,255,0.14); color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 15px 27px; border-radius: 999px;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: all 0.2s; position: relative;
  text-decoration: none;
}
.shared-footer_ctaLink__RsLRz:hover { background: white; color: rgb(var(--accent-deep)); border-color: white; transform: translateY(-2px); }

/* ─── Cols ─── */
.shared-footer_cols__e39ok {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.shared-footer_logoRow__PFDOG { display: flex; align-items: baseline; gap: 10px; }
.shared-footer_logoImg__9_XWP { height: 26px; width: auto; display: block; }
.shared-footer_brand__hd1bs h4 {
  font-family: var(--font-bodoni), serif;
  font-size: 28px; color: white;
  font-weight: 700; letter-spacing: -0.015em;
}
.shared-footer_brandDot__vBHHJ { color: rgb(var(--accent)); }
.shared-footer_brandTag__trHv_ {
  font-family: var(--font-caveat), cursive;
  color: rgb(var(--accent));
  font-size: 22px; font-weight: 500;
  margin-left: 2px;
}
.shared-footer_brand__hd1bs p {
  font-family: var(--font-fraunces), serif;
  font-size: 14px; line-height: 1.6;
  margin-top: 12px; max-width: 18rem;
}

.shared-footer_social__riSQg {
  display: flex; gap: 10px; margin-top: 20px;
}
.shared-footer_social__riSQg a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.16);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.shared-footer_social__riSQg a:hover {
  color: white;
  border-color: rgb(var(--accent));
  background: rgb(var(--accent) / 0.16);
}
.shared-footer_social__riSQg svg { width: 18px; height: 18px; }

.shared-footer_col__p3mc9 h5 {
  font-family: var(--font-bricolage), sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: white;
  margin-bottom: 14px; font-weight: 700;
}
.shared-footer_col__p3mc9 a {
  display: block;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.75);
  padding: 5px 0; text-decoration: none;
  transition: color 0.15s;
}
.shared-footer_col__p3mc9 a:hover { color: rgb(var(--accent)); }
.shared-footer_col__p3mc9 span {
  display: block;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.35);
  font-style: italic; padding: 2px 0;
}

/* ─── Bottom bar ─── */
.shared-footer_bot__qZNqV {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .shared-footer_cols__e39ok { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shared-footer_cta__v8sWz  { grid-template-columns: 1fr; padding: 36px; }
  .shared-footer_bot__qZNqV  { flex-direction: column; gap: 8px; }
  .shared-footer_wrap__7fv5b { padding: 0 24px; }
}

