@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #F5F1EC;
  --surface: #FFFFFF;
  --accent: #5A74BE;
  --accent-soft: #DDE5F8;
  --accent-soft-strong: #C8D5F5;
  --cta: #4B67B4;
  --cta-hover: #35539A;
  --text-primary: #333333;
  --text-secondary: #666666;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
}
main {
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-primary); }
a { color: var(--cta); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
img, iframe {
  max-width: 100%;
}

.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(53,83,154,.12); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: 1rem; }
.logo-link { display: inline-flex; align-items: center; }
.logo { max-height: 64px; width: auto; }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid rgba(53,83,154,.18);
  border-radius: 10px;
  padding: .45rem .55rem;
  line-height: 1;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cta);
  border-radius: 2px;
}
.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}
.top-nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-nav a { color: var(--text-primary); }
.top-nav a.btn,
.top-nav a.btn-cta { color: #fff; }
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
}
.nav-menu {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 250px;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(53,83,154,.16);
  border-radius: 10px;
  padding: .45rem;
  box-shadow: 0 16px 32px rgba(39,54,99,.14);
  z-index: 30;
}
.nav-dropdown:hover .nav-menu {
  display: block;
}
.nav-menu a {
  display: block;
  padding: .32rem .45rem;
  border-radius: 8px;
  line-height: 1.3;
  white-space: nowrap;
}
.nav-menu a:hover {
  background: rgba(75,103,180,.12);
  text-decoration: none;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(53,83,154,.18);
}
.btn-cta { background: var(--cta); }
.btn:hover, .btn-cta:hover { background: var(--cta-hover); color: #fff; text-decoration: none; }

.hero { padding: 5rem 0 3rem; }
.hero-bridge {
  position: relative;
  background-image:
    linear-gradient(rgba(51, 51, 51, 0.58), rgba(51, 51, 51, 0.48)),
    url('/assets/images/hero-bridge.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(51,51,51,.1);
}
.hero-bridge .container {
  background: rgba(51, 51, 51, 0.28);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 1.25rem;
}
.hero h1 { font-size: clamp(2rem, 4.3vw, 3.2rem); margin: 0 0 .75rem; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; }
.hero-bridge h1,
.hero-bridge p,
.hero-bridge .tagline,
.hero-bridge .hero-bullets,
.hero-bridge .hero-bullets li,
.hero-bridge .trust-pill {
  color: #fff;
}
.tagline { color: var(--text-secondary); font-style: italic; }
.trust-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: .9rem 0 .6rem; }
.trust-pill {
  background: rgba(223,229,248,.18);
  border: 1px solid rgba(223,229,248,.42);
  border-radius: 999px;
  padding: .3rem .7rem;
  color: var(--text-primary);
  font-size: .9rem;
}
.hero-bullets { margin: .5rem 0 1.1rem; padding-left: 1.15rem; color: var(--text-secondary); }
.hero-bullets li { margin-bottom: .3rem; }
.identity-tagline {
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 .75rem;
}

.section { padding: 2.75rem 0; }
.section-soft-image {
  position: relative;
  background-image:
    linear-gradient(rgba(75, 103, 180, 0.56), rgba(75, 103, 180, 0.56)),
    linear-gradient(rgba(241, 245, 252, 0.42), rgba(241, 245, 252, 0.42)),
    url('/assets/images/hero-bridge.webp');
  background-size: cover;
  background-position: center;
}
.section-content-page {
  background: var(--surface);
  padding-top: 0;
}
.content-page-banner-wrap {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(51,51,51,.08);
}
.content-page-banner-image {
  display: block;
  width: 100%;
  height: clamp(190px, 30vw, 410px);
  object-fit: cover;
  object-position: center;
}
.content-page-container {
  width: min(920px, 92vw);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(53,83,154,.08);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section-compact {
  max-width: 760px;
  margin: 0 auto;
}
.section-compact ol {
  margin: .35rem 0 0;
  padding-left: 1.35rem;
}
.value-list {
  margin: .7rem 0 0;
  padding-left: 1.2rem;
}
.value-list li {
  margin-bottom: .35rem;
}
.card h3 {
  margin-top: 0;
}
.card-copy {
  margin: 0;
}
.card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: flex-start;
}
.card-actions p {
  margin: 0;
}
.card .btn {
  margin-top: 0;
  align-self: flex-start;
}
.service-card h3 {
  min-height: 3.2em;
}
.cards-reveal.cards-reveal-js.cards-reveal-collapsed > .card:nth-child(n+9) {
  display: none;
}
.cards-reveal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.cards-reveal-toggle {
  min-width: 220px;
  text-align: center;
}
.therapy-approaches-callout {
  margin-top: 1.15rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(53,83,154,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 34px rgba(39,54,99,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .45rem .7rem;
  text-align: center;
}
.therapy-approaches-callout p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 700;
}
.therapy-approaches-callout a {
  color: var(--cta);
  font-weight: 700;
}
.therapy-approaches-callout a:hover {
  color: var(--cta-hover);
}
.home-topic-image {
  width: calc(100% + 2rem);
  margin: -1rem -1rem .8rem;
  height: 170px;
  aspect-ratio: 302 / 201;
  object-fit: cover;
  object-position: var(--topic-image-position, center 24%);
  border-bottom: 1px solid rgba(53,83,154,.08);
}
.home-topic-grid {
  align-items: start;
  grid-auto-rows: auto;
}
.home-topic-grid > .service-card {
  height: auto;
  padding: 0 0 1rem;
  overflow: hidden;
}
.home-topic-grid > .service-card .home-topic-image {
  width: 100%;
  margin: 0 0 .95rem;
  height: 198px;
  aspect-ratio: auto;
}
.home-topic-grid > .service-card h3,
.home-topic-grid > .service-card .card-copy,
.home-topic-grid > .service-card .card-actions {
  padding-left: 1rem;
  padding-right: 1rem;
}
.home-topic-grid > .service-card h3 {
  min-height: 0;
  margin: 0 0 .6rem;
}
.home-topic-grid > .service-card .card-copy {
  display: block;
  overflow: visible;
  margin-bottom: 0;
}
.home-topic-grid > .service-card .card-actions {
  margin-top: .8rem;
}
.home-topic-grid > .service-card .card-actions p {
  width: 100%;
}
.home-topic-grid > .service-card .card-actions a {
  display: inline-block;
}
.book-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.hub-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.hub-grid-specialties {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}
.hub-card {
  overflow: hidden;
}
.hub-card-specialty {
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
}
.hub-card-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hub-card-image {
  width: calc(100% + 2rem);
  margin: -1rem -1rem .75rem;
  height: 210px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid rgba(51,51,51,.08);
}
.hub-card-image-specialty {
  width: 100%;
  margin: 0;
  height: 225px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 24%;
  border-bottom: none;
}
.hub-card-title-link {
  color: var(--text-primary);
}
.hub-card-specialty-overlay {
  background: var(--cta);
  color: #fff;
  padding: .7rem .85rem .9rem;
}
.hub-card-title-link-specialty {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  max-width: calc(100% - 112px);
}
.hub-card-copy-specialty {
  color: #fff;
  margin-top: .55rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-actions-specialty {
  float: right;
  margin-top: 0;
  margin-left: .5rem;
}
.hub-specialty-readmore {
  background: var(--accent-soft-strong);
  color: var(--cta);
  border-radius: 0;
  padding: .45rem .85rem;
  font-weight: 400;
  line-height: 1.1;
}
.hub-specialty-readmore:hover {
  background: #E5ECFB;
  color: var(--cta-hover);
}
.book-card h3 {
  min-height: 4.5em;
}
.book-cover {
  width: 100%;
  height: 280px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: .75rem;
  border: 1px solid rgba(51,51,51,.08);
  background: #fff;
}
.featured-book-card {
  border: 1px solid rgba(75,103,180,.24);
  background: linear-gradient(180deg, #fff 0%, rgba(223,229,248,.42) 100%);
}
.featured-book-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 1rem;
  align-items: start;
}
.featured-book-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(51,51,51,.08);
  background: #fff;
}
.featured-book-content h2 {
  margin-top: .1rem;
}
.featured-book-kicker {
  margin: 0;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: .82rem;
}
.featured-book-actions {
  margin-top: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.service-card .card-copy {
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.therapist-card {
  background: linear-gradient(180deg, #fff 0%, rgba(223,229,248,.42) 100%);
}
.therapist-card h3 {
  min-height: 2.4em;
  margin-bottom: .2rem;
}
.therapist-card .card-copy {
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.8em;
}
.therapist-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.therapist-headshot {
  width: 100%;
  height: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: contain;
  object-position: center top;
  display: block;
  margin-bottom: .8rem;
  padding: .35rem;
  border: 1px solid rgba(75,103,180,.12);
  background: rgba(223,229,248,.7);
}
.therapist-profile-headshot {
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: contain;
  object-position: center top;
  display: block;
  margin-bottom: 1rem;
  padding: .35rem;
  border: 1px solid rgba(75,103,180,.12);
  background: rgba(223,229,248,.7);
}
.therapist-credentials,
.therapist-profile-credentials {
  color: var(--cta);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.therapist-credentials {
  font-size: .82rem;
  margin: 0 0 .55rem;
}
.therapist-profile-credentials {
  font-size: .9rem;
  margin: -.4rem 0 1rem;
}
.avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 1.5rem;
  color: var(--text-primary);
  background: rgba(223,229,248,.9);
}
.avatar-fallback {
  display: none;
}
.avatar-large {
  width: 120px;
  height: 120px;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.inline-cta {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(223,229,248,.52);
}
.bottom-book-cta {
  margin-top: 1.25rem;
  border: 1px solid rgba(75,103,180,.22);
  background: rgba(223,229,248,.52);
  border-radius: 14px;
  padding: 1rem;
}

.article { background: #fff; padding: 1.25rem; border-radius: 16px; border: 1px solid rgba(51,51,51,.08); }
.article-content p { max-width: 78ch; }
.article-content-narrative {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2.35rem 0 .25rem;
}
.article-content-narrative h1 {
  max-width: 820px;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-size: clamp(2.3rem, 5.1vw, 4rem);
  line-height: 1.08;
  letter-spacing: .01em;
}
.article-content-narrative p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.03rem, 1.18vw, 1.2rem);
  line-height: 1.74;
  color: var(--text-primary);
}
.article-content-narrative p + p {
  margin-top: .95rem;
}
.content-page-subheading {
  max-width: 740px;
  margin: 1.6rem auto .6rem;
  font-size: clamp(1.42rem, 2.35vw, 1.95rem);
  line-height: 1.28;
}
.content-page-paragraph-lead {
  font-size: clamp(1.09rem, 1.3vw, 1.26rem);
  line-height: 1.72;
}
.content-page-cta {
  margin-top: 1.35rem;
  text-align: center;
}
.resource-list {
  list-style: none;
  margin: .85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.resource-list li {
  border: 1px solid rgba(53,83,154,.1);
  border-radius: 12px;
  background: rgba(223,229,248,.42);
  padding: .75rem;
}
.resource-item-title {
  margin: 0 0 .35rem;
  font-weight: 700;
}
.resource-item-copy {
  margin: 0;
  color: var(--text-primary);
}
.info-grid,
.score-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .7rem;
}
.info-card,
.score-card,
.topic-card {
  border: 1px solid rgba(53,83,154,.1);
  border-radius: 12px;
  background: rgba(223,229,248,.42);
  padding: .75rem;
}
.info-card h3,
.score-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.info-card p,
.score-card p,
.topic-card p {
  margin: 0;
}
.category-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .7rem;
}
.category-chip {
  display: inline-block;
  border: 1px solid rgba(75,103,180,.24);
  border-radius: 999px;
  background: rgba(223,229,248,.52);
  color: var(--text-primary);
  padding: .35rem .8rem;
  font-size: .9rem;
}
.category-chip:hover {
  text-decoration: none;
  background: rgba(223,229,248,.82);
}
.article-meta { color: var(--text-secondary); }
.service-hero-image {
  width: 100%;
  height: clamp(180px, 28vw, 300px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(51,51,51,.08);
}
.faq-item { margin-bottom: .75rem; }
.faq-button { width: 100%; text-align: left; background: #fff; border: 1px solid rgba(51,51,51,.12); border-radius: 10px; padding: .8rem; }
.faq-panel { display: none; padding: .75rem; }
.faq-item.active .faq-panel { display: block; }
.faq-item[open] .faq-panel { display: block; }

.specialty-back-link {
  font-weight: 700;
}

.form-grid { display: grid; gap: .8rem; }
.booking-grid {
  margin-bottom: 1rem;
}
.booking-form {
  margin-top: 1rem;
}
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.booking-form-span {
  grid-column: 1 / -1;
}
.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  font-size: .96rem;
}
.consent-check input[type="checkbox"] {
  width: auto;
  margin-top: .2rem;
}
.booking-secondary-link {
  margin-top: auto;
}
.quiz-disclaimer {
  font-style: italic;
}
.quiz-form {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}
.quiz-question {
  border: 1px solid rgba(53,83,154,.1);
}
.quiz-question legend {
  font-weight: 700;
  padding: 0 .35rem;
}
.quiz-scale {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin-top: .75rem;
}
.quiz-scale label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.quiz-scale input[type="radio"] {
  width: auto;
}
.quiz-result {
  border: 1px solid rgba(53,83,154,.12);
}
.policy-section + .policy-section {
  margin-top: 1rem;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(51,51,51,.2);
  border-radius: 10px;
  padding: .68rem .8rem;
  font: inherit;
}
textarea { min-height: 180px; }

.notice { padding: .75rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.notice-success { background: rgba(223,229,248,.72); }
.notice-error { background: rgba(160,55,55,.12); }

.site-footer { margin-top: 3rem; background: rgba(255,255,255,.96); border-top: 1px solid rgba(53,83,154,.1); padding: 2rem 0; }
.footer-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-logo { margin-bottom: .5rem; max-width: 100%; height: auto; }
.footer-links {
  display: grid;
  gap: .45rem;
}
.footer-links a {
  color: var(--text-primary);
}
.footer-links a:hover {
  color: var(--cta);
}
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: .5rem; margin-top: .75rem; }

.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 75vh; gap: 1rem; }
.admin-sidebar { background: #fff; border-radius: 12px; padding: 1rem; border: 1px solid rgba(51,51,51,.1); }
.admin-main { background: #fff; border-radius: 12px; padding: 1rem; border: 1px solid rgba(51,51,51,.1); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid rgba(51,51,51,.1); padding: .5rem; text-align: left; vertical-align: top; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .top-nav { gap: .6rem; }
  .logo { max-height: 56px; }
  .therapist-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .logo {
    max-height: 48px;
  }

  .top-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem .7rem;
    align-items: start;
  }

  .site-header.nav-open .top-nav {
    display: grid;
  }

  .top-nav .nav-dropdown {
    display: block;
  }

  .top-nav .nav-dropdown .nav-menu {
    display: none !important;
  }

  .top-nav .nav-parent {
    display: block;
    width: 100%;
  }

  .top-nav a {
    display: block;
    line-height: 1.25;
  }

  .top-nav > a,
  .top-nav > .nav-dropdown {
    min-height: 38px;
  }

  .top-nav > a,
  .top-nav > .nav-dropdown > .nav-parent {
    border: 1px solid rgba(53,83,154,.12);
    border-radius: 10px;
    padding: .55rem .65rem;
    background: #fff;
  }

  .top-nav > a:hover,
  .top-nav > .nav-dropdown > .nav-parent:hover {
    text-decoration: none;
    background: rgba(223,229,248,.7);
  }

  .top-nav .btn-cta {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    border-radius: 999px;
    padding: .75rem 1rem;
  }

  .article.article-content {
    padding: 1rem;
  }

  .article.article-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .article.article-content .btn {
    width: 100%;
    text-align: center;
  }

  .content-page-banner-image {
    height: clamp(170px, 46vw, 250px);
  }

  .article-content-narrative {
    padding-top: 1.35rem;
  }

  .article-content-narrative h1 {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
    line-height: 1.13;
    margin-bottom: 1rem;
  }

  .article-content-narrative p {
    font-size: 1.03rem;
    line-height: 1.68;
  }

  .content-page-subheading {
    font-size: 1.35rem;
    margin: 1.15rem auto .5rem;
    line-height: 1.3;
  }

  .content-page-paragraph-lead {
    font-size: 1.08rem;
    line-height: 1.66;
  }

  .therapy-approaches-callout {
    align-items: flex-start;
  }

  .home-topic-grid > .service-card .home-topic-image {
    height: 184px;
  }

  .resource-list {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .info-grid,
  .score-grid,
  .topic-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .category-chip-list {
    gap: .4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hub-grid-specialties {
    grid-template-columns: 1fr;
  }

  .hub-card-image-specialty {
    height: 205px;
  }

  .hub-card-title-link-specialty {
    max-width: 100%;
  }

  .card-actions-specialty {
    float: none;
    margin-left: 0;
    margin-top: .4rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .featured-book-layout {
    grid-template-columns: 1fr;
  }

  .featured-book-cover {
    max-width: 260px;
    margin: 0 auto;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
