/* Text logo fallback when CMS logo image is not set */
.logo-text {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    display: inline-block;
    max-width: 220px;
    line-height: 1.2;
}

.mobile-logo.logo-text {
    padding: 0.5rem 0;
}

.hero-fallback-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-fallback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero: centered copy with Find a Provider directly under subtext */
.hero-content-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
}

.hero-content-split .hero-typography {
    max-width: min(820px, 100%);
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-content-split .hero-typography h1 {
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    margin-bottom: 1rem;
}

.hero-content-split .hero-typography p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.hero-content-split .eyebrow {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0.15rem;
    margin-bottom: 0.75rem;
}

.hero-content-split .eyebrow::before {
    left: 50%;
    top: -0.85rem;
    width: 48px;
    transform: translateX(-50%);
}

.hero-side-card {
    width: min(360px, 100%);
    margin: 0.35rem auto 0;
    background: rgba(11, 48, 89, 0.65);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-side-btn {
    width: 100%;
    justify-content: center;
    background: var(--brand-yellow) !important;
    border-color: var(--brand-yellow) !important;
    color: var(--navy) !important;
}

.hero-side-btn:hover {
    background: var(--navy-mid) !important;
    border-color: var(--navy-mid) !important;
    color: #fff !important;
}

.hero-side-links {
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.hero-side-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.98rem;
    opacity: 0.95;
}

.hero-side-links a:hover {
    opacity: 1;
}

.page-headers-banner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.5rem 0;
    color: #fff;
    background-color: var(--navy, #1D2E5D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    min-height: min(38vh, 320px);
}

/*
 * First <section> in main (ignores whitespace text nodes — :first-child often fails after Blade newlines).
 * Push content below fixed .site-header so breadcrumbs/heading are fully visible.
 */
#main-content > section.page-headers-banner:first-of-type {
    padding-top: calc(var(--site-header-offset, 120px) + 2rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2.75rem;
}

.page-headers-banner .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Page hero banner (often first section on inner pages — same header offset as page_headers) */
section.page-hero {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.5rem 0;
    box-sizing: border-box;
    background-color: var(--navy, #1D2E5D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: min(42vh, 360px);
    color: #fff;
}

#main-content > section.page-hero:first-of-type {
    padding-top: calc(var(--site-header-offset, 120px) + 2rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2.75rem;
}

.page-hero .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.page-headers-breadcrumb {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.page-headers-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-headers-title {
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.page-headers-description {
    margin: 0.85rem 0 0;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-description {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-quick-nav-inner {
    justify-content: space-between;
}

.quick-nav-item {
    min-width: 120px;
}

.quick-nav-label {
    margin-top: 0.6rem;
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
    .hero-content-split {
        gap: 1.15rem;
    }

    .hero-side-card {
        width: 100%;
        max-width: 380px;
    }
}

/* Extracted from Archive HTML <style> blocks — header dropdowns, mobile nav, testimonial avatar, events buttons */

.main-nav>ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.nav-dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-label a {
    text-decoration: none;
    color: var(--text-dark, #1e293b);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-dropdown-label a:hover,
.nav-dropdown:hover .nav-dropdown-label a {
    color: var(--link-hover);
}

.nav-dropdown-chevron {
    font-size: 0.8em;
    color: var(--text-dark, #1e293b);
    pointer-events: none;
}

.main-nav button {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark, #1e293b);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.main-nav button:hover {
    color: var(--link-hover);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 100;
    margin: 0;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown-label:focus-within + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #1e293b;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--brand-surface-tint, #E8F3FA);
    color: var(--link-hover);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown-menu {
    display: none;
    background: #f8fafc;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-nav-dropdown-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-dropdown-row > a {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    text-decoration: none;
    color: var(--text-dark, #1e293b);
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-dropdown-row > a:hover {
    background: var(--brand-surface-tint, #E8F3FA);
    color: var(--link-hover);
}

.mobile-nav-dropdown-toggle {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    min-width: 3.25rem;
    max-width: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f8fafc;
    border: none;
    border-left: 1px solid #e2e8f0;
    color: var(--primary-blue, var(--primary-blue, #4191C9));
    cursor: pointer;
}

.mobile-nav-dropdown-toggle:hover {
    background: var(--brand-surface-tint, #E8F3FA);
    color: var(--link-hover);
}

.mobile-nav-dropdown-toggle i {
    width: auto;
    margin-left: 0;
    font-size: 0.95rem;
    color: currentColor;
}

.mobile-nav button:not(.mobile-nav-dropdown-toggle) {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    background: none;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark, #1e293b);
    cursor: pointer;
    text-align: left;
}

.mobile-nav button:not(.mobile-nav-dropdown-toggle) i {
    width: 20px;
    text-align: center;
    color: var(--accent-light, var(--accent-light, #4191C9));
    font-size: 1rem;
}

.mobile-nav button:not(.mobile-nav-dropdown-toggle) i:last-child {
    margin-left: auto;
    width: auto;
    color: inherit;
}

.mobile-dropdown-menu a {
    padding-left: 3.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.events-btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .events-btn-group {
        flex-direction: column;
    }

    .events-btn-group .btn {
        width: 100%;
        justify-content: center;
    }
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-avatar i {
    font-size: 24px;
    color: #94a3b8;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

/* Community inner (structured sidebar + panels) */
.community-inner-section {
    padding: 3rem 0 4rem;
    background: #E8F3FA;
}

.community-inner-section-head {
    margin-bottom: 2rem;
}

.community-inner-section-figure {
    margin: 0 0 1rem;
    border-radius: 8px;
    overflow: hidden;
    max-height: 280px;
}

.community-inner-section-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

.community-inner-section-title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #0f172a;
    font-weight: 700;
}

.community-inner-grid {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 2.5rem;
    align-items: start;
    min-width: 0;
}

.community-inner-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: calc(var(--site-header-offset, 108px) + 1rem);
}

.community-inner-sidebar-title {
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    font-size: 1.1rem;
    color: #0f172a;
}

.community-inner-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.community-inner-nav-link {
    display: block;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    border-left: 3px solid transparent;
    color: #64748b;
}

.community-inner-nav-link:hover {
    color: var(--link-hover);
    background: var(--brand-surface-tint, #E8F3FA);
}

.community-inner-nav-link.is-active {
    color: var(--navy, #1D2E5D);
    background: #E8F3FA;
    font-weight: 600;
    border-left-color: var(--brand-yellow, #FFC75B);
}

.community-inner-panels {
    background: #fff;
    padding: 2rem 2.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 0;
}

.community-inner-panel.is-hidden {
    display: none !important;
}

.community-inner-content-title {
    margin: 0 0 1rem;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 700;
}

.community-inner-content-title h1,
.community-inner-content-title h2,
.community-inner-content-title h3,
.community-inner-content-title h4,
.community-inner-content-title h5,
.community-inner-content-title h6,
.community-inner-content-title p {
    margin: 0;
    color: inherit;
    font-weight: 700;
    line-height: 1.25;
}

.community-inner-content-title h1 {
    font-size: 2.5rem;
}

.community-inner-content-title h2 {
    font-size: 2rem;
}

.community-inner-content-title h3 {
    font-size: 1.75rem;
}

.community-inner-content-title h4 {
    font-size: 1.5rem;
}

.community-inner-content-title h5 {
    font-size: 1.25rem;
}

.community-inner-content-title h6 {
    font-size: 1.125rem;
}

.community-inner-content-title p {
    font-size: 1.75rem;
}

h1.community-inner-content-title {
    font-size: 2.5rem;
}

h2.community-inner-content-title {
    font-size: 2rem;
}

h3.community-inner-content-title {
    font-size: 1.75rem;
}

h4.community-inner-content-title {
    font-size: 1.5rem;
}

h5.community-inner-content-title {
    font-size: 1.25rem;
}

h6.community-inner-content-title {
    font-size: 1.125rem;
}

.community-inner-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 2rem;
}

.community-inner-subsection {
    padding: 0;
    margin-bottom: 2.25rem;
}

.community-inner-subsection:last-child {
    margin-bottom: 0;
}

.community-inner-subheader {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.community-inner-subheader-icon-img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    flex-shrink: 0;
}

.community-inner-subheader-icon-fa {
    color: var(--accent-light, #4191C9);
    font-size: 2rem;
    line-height: 1;
}

.community-inner-subheader-title {
    margin: 0;
    font-size: 1.75rem;
    color: var(--navy, #1D2E5D);
    font-weight: 600;
}

.community-inner-subheader-title h1,
.community-inner-subheader-title h2,
.community-inner-subheader-title h3,
.community-inner-subheader-title h4,
.community-inner-subheader-title h5,
.community-inner-subheader-title h6,
.community-inner-subheader-title p {
    margin: 0;
    color: inherit;
    font-weight: 600;
    line-height: 1.3;
}

.community-inner-subheader-title h1 {
    font-size: 2.5rem;
}

.community-inner-subheader-title h2 {
    font-size: 2rem;
}

.community-inner-subheader-title h3 {
    font-size: 1.75rem;
}

.community-inner-subheader-title h4 {
    font-size: 1.5rem;
}

.community-inner-subheader-title h5 {
    font-size: 1.25rem;
}

.community-inner-subheader-title h6 {
    font-size: 1.125rem;
}

.community-inner-subheader-title p {
    font-size: 1.75rem;
}

.community-inner-subsection-body {
    line-height: 1.7;
    color: #475569;
    display: flow-root;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.community-inner-subsection-body p {
    margin: 0 0 0.75rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.community-inner-subsection-body ul {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
}

.community-inner-subsection-body a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.community-inner-subsection-body img,
.community-inner-subsection-body video,
.community-inner-subsection-body iframe,
.community-inner-subsection-body svg {
    max-width: 100%;
    height: auto;
}

.community-inner-subsection-body iframe {
    width: 100%;
}

.community-inner-subsection-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.community-inner-subsection-body th,
.community-inner-subsection-body td {
    word-break: break-word;
}

/* WYSIWYG Image tool — never float (avoids text overlapping image when order is paragraph then image) */
.community-inner-subsection-body .wysiwyg-block-image {
    float: none !important;
    clear: both !important;
    display: block;
    margin: 0 0 0.5rem;
    width: 100%;
    max-width: 100%;
    line-height: 0;
    position: relative;
    z-index: 0;
}

/* Left / right / center = block row only (no wrap); alignment via img margins */
.community-inner-subsection-body .wysiwyg-block-image.is-left {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.5rem 0;
}

.community-inner-subsection-body .wysiwyg-block-image.is-left > img {
    margin-left: 0;
    margin-right: auto;
}

.community-inner-subsection-body .wysiwyg-block-image.is-right {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.5rem 0;
}

.community-inner-subsection-body .wysiwyg-block-image.is-right > img {
    margin-left: auto;
    margin-right: 0;
}

.community-inner-subsection-body .wysiwyg-block-image.is-center {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 0.5rem;
}

.community-inner-subsection-body .wysiwyg-block-image.is-full {
    width: 100%;
    margin: 0 0 0.5rem;
}

/* Collapse editor placeholder lines that only contain a break (saves as <p><br></p>) */
.community-inner-subsection-body .wysiwyg-block-image + p:has(> br:only-child) {
    display: none;
    margin: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

.community-inner-subsection-body .wysiwyg-block-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 4px;
}

/* WYSIWYG “Button” tool — pill CTA; inline background-color from “Button Color” overrides background only */
.community-inner-subsection-body a.wysiwyg-inline-btn,
.community-inner-subsection-body a.wysiwyg-inline-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 25px;
    border-radius: 9999px;
    background-color: var(--navy, #1D2E5D);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: filter 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.community-inner-subsection-body a.wysiwyg-inline-btn:hover {
    filter: brightness(1.08);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.26);
}

.community-inner-subsection-body a.wysiwyg-inline-btn i,
.community-inner-subsection-body a.wysiwyg-inline-btn svg,
.community-inner-subsection-body a.wysiwyg-inline-btn img {
    flex-shrink: 0;
}

.community-inner-list {
    line-height: 1.7;
    color: #64748b;
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
}

.community-inner-callout {
    background: #f8fafc;
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--brand-yellow, #FFC75B);
    margin-top: 1rem;
}

.community-inner-callout-title {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.community-inner-callout-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--navy, #1D2E5D);
    font-weight: 600;
    text-decoration: none;
}

.community-inner-main-legacy {
    background: #fff;
    padding: 2rem 2.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Common page section */
.common-page-section {
    padding: 3rem 0 4rem;
    background: #E8F3FA;
}

.common-page-header {
    margin-bottom: 2.5rem;
}

.common-page-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.common-page-description {
    margin: 0 0 1.5rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #475569;
    max-width: 720px;
}

.common-page-figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

.common-page-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.common-page-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.common-page-block {
    border-left: none;
    border-top: 5px solid var(--brand-yellow);
    padding: 1rem 0;
    padding-top: 1.25rem;
}

.common-page-block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.common-page-block-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.common-page-block-icon-fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e8f0fe;
    color: var(--primary-blue, #4191C9);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.common-page-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.common-page-block-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

.common-page-block-body p {
    margin: 0 0 0.75rem;
}

.common-page-block-body ul,
.common-page-block-body ol {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.common-page-block-body li {
    margin-bottom: 0.35rem;
}

.common-page-block-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .common-page-section {
        padding: 2rem 0 3rem;
    }

    .common-page-block {
        padding-left: 1rem;
    }

    .common-page-block-title {
        font-size: 1.1rem;
    }
}

/* CHNA section */
.chna-section {
    padding: 3rem 0 4rem;
    background: #E8F3FA;
}

.chna-section-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

.chna-section-description {
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    text-align: center;
    max-width: 640px;
}

.chna-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.chna-location-column {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06);
    border: 1px solid #e2e8f0;
}

.chna-location-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-blue, #4191C9);
}

.chna-location-header i {
    font-size: 1.4rem;
    color: var(--primary-blue, #4191C9);
}

.chna-location-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.chna-year-group {
    margin-bottom: 1.5rem;
}

.chna-year-group:last-child {
    margin-bottom: 0;
}

.chna-year-label {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue, #4191C9);
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e2e8f0;
}

.chna-doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chna-doc-list li {
    margin-bottom: 0.35rem;
}

.chna-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    width: 100%;
}

.chna-doc-link:hover {
    background: var(--brand-surface-tint, #E8F3FA);
    color: var(--link-hover);
}

.chna-doc-link i {
    color: var(--accent-light, #4191C9);
    font-size: 1rem;
    flex-shrink: 0;
}

.chna-doc-link i.fa-clipboard-list {
    color: var(--accent-light, #4191C9);
}

.chna-doc-badge {
    margin-left: auto;
    padding: 0.15rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #e8f0fe;
    color: var(--primary-blue, #4191C9);
    border-radius: 100px;
    flex-shrink: 0;
}

.chna-empty {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .chna-locations-grid {
        grid-template-columns: 1fr;
    }

    .chna-location-column {
        padding: 1.5rem;
    }

    .chna-section {
        padding: 2rem 0 3rem;
    }
}

/* Provider directory section */
.provider-directory-section {
    background: #E8F3FA;
}

/* When section is scoped to a selected location, remove top gap before heading. */
.provider-directory-section.provider-directory-section--no-top-padding {
    padding-top: 0;
}

.provider-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.provider-filters[hidden] {
    display: none !important;
}

.provider-filters label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #64748b;
}

.provider-filters input,
.provider-filters select {
    width: 100%;
    border: 1px solid #d5dbe5;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    background: #fff;
}

.provider-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #334155;
}

.provider-loading {
    font-size: 0.88rem;
    color: #475569;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

/* Provider directory: show first 6 cards until expanded */
.provider-directory-section .provider-grid:not(.provider-grid--expanded) > .provider-card:nth-child(n + 7) {
    display: none;
}

.provider-show-more-wrap {
    margin-top: 1.25rem;
    text-align: center;
}

.provider-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--btn-outline);
    background: #fff;
    border: 2px solid var(--btn-outline);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.provider-show-more-btn:hover {
    background: var(--btn-outline-hover);
    border-color: var(--btn-outline-hover);
    color: #fff;
}

.provider-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
}

.provider-card--has-profile-link {
    position: relative;
    cursor: pointer;
}

.provider-card-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.provider-card--has-profile-link:hover {
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.12);
}

.provider-card--has-profile-link:focus-visible {
    outline: 3px solid rgba(20, 78, 140, 0.35);
    outline-offset: 3px;
}

.provider-card-media {
    align-self: start;
    width: 150px;
    height: 150px;
}

.provider-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    background: #e2e8f0;
}

.provider-card-name {
    margin: 0;
    color: #0f172a;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
}

.provider-card-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

.provider-card-specialty-tag {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-blue, #4191C9);
    background: #e8f0fe;
    border-radius: 100px;
    line-height: 1.4;
}

.provider-card-phone,
.provider-card-location,
.provider-card-address {
    margin: 0.35rem 0 0;
    color: #475569;
}

.provider-card-phone a {
    color: var(--primary-blue, #4191C9);
    text-decoration: none;
    font-weight: 600;
}

.provider-card-phone a:hover,
.provider-card-phone a:focus-visible {
    color: var(--link-hover);
    text-decoration: none;
}

.provider-card-facilities {
    margin-top: 0.35rem;
}

.provider-card-facility {
    margin-top: 0.65rem;
}

.provider-card-facility:first-child {
    margin-top: 0;
}

.provider-card-facility .provider-card-location {
    margin-top: 0;
}

.provider-card-facility .provider-card-address {
    margin-top: 0.2rem;
}

.provider-card-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: var(--btn-fill);
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}

.provider-card-contact-btn:hover {
    background: var(--btn-fill-hover);
    transform: translateY(-1px);
    color: #fff;
}

.provider-card-contact-btn i {
    font-size: 0.78rem;
}

.provider-empty {
    margin-top: 1rem;
    color: #64748b;
}

/* Provider profile (detail) page */
.provider-profile-article {
    padding: 2.5rem 0 3.5rem;
    background: #E8F3FA;
}

.provider-profile-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.provider-profile-aside {
    position: sticky;
    top: 1.25rem;
}

.provider-profile-photo-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.1);
}

.provider-profile-photo-wrap.brand-photo-frame {
    overflow: visible;
    border-bottom-left-radius: 28px;
}

.provider-profile-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.provider-profile-contact {
    margin-top: 1.25rem;
    padding: 1.1rem 1.15rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-top: 5px solid var(--brand-green);
    font-size: 0.95rem;
}

.provider-profile-contact-row {
    margin: 0 0 0.75rem;
}

.provider-profile-contact-row:last-child {
    margin-bottom: 0;
}

.provider-profile-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.provider-profile-contact a {
    color: var(--primary-blue, #4191C9);
    font-weight: 600;
    text-decoration: none;
}

.provider-profile-contact a:hover,
.provider-profile-contact a:focus-visible {
    color: var(--link-hover);
    text-decoration: none;
}

.provider-profile-contact a[href^="tel:"]:hover,
.provider-profile-contact a[href^="tel:"]:focus-visible {
    color: var(--brand-green);
    text-decoration: none;
}

.provider-profile-main {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.85rem 2.25rem;
    border: 1px solid #e2e8f0;
    border-top: 5px solid var(--brand-green);
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
}

.provider-profile-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eef2f7;
}

.provider-profile-title {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.provider-profile-section-title {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-blue, #4191C9);
}

.provider-profile-specialties,
.provider-profile-locations,
.provider-profile-block {
    margin-top: 1.75rem;
}

.provider-profile-tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.provider-profile-tag-list li {
    margin: 0;
}

.provider-profile-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--brand-yellow);
    border: 1px solid var(--brand-yellow);
    border-radius: 999px;
}

.provider-profile-location-card {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.provider-profile-location-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.provider-profile-location-name {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: #0f172a;
}

.provider-profile-location-address {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.provider-profile-body {
    margin: 0;
    color: #334155;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .provider-profile-layout {
        grid-template-columns: 1fr;
    }

    .provider-profile-aside {
        position: static;
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    .provider-profile-photo {
        aspect-ratio: 1;
    }

    .provider-profile-contact {
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .provider-profile-aside {
        grid-template-columns: 1fr;
    }
}

/* Single location section */
.single-location-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.single-location-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 520px;
}

.single-location-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0f172a;
}

.single-location-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.single-location-meta {
    margin: 0.65rem 0;
    color: #334155;
}

.single-location-meta a {
    color: var(--primary-blue, #4191C9);
    text-decoration: none;
    font-weight: 600;
}

.single-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0 1.2rem;
}

/* Map & address — hospital / clinic rows (image + optional map, details, tags) */
.map-address-section {
    padding: 3rem 0;
    background: #fff;
}

.map-address-section-title {
    margin: 0 0 0.5rem;
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.map-address-section-subtitle {
    margin: 0 auto 2.5rem;
    max-width: 42rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
}

.map-address-grid {
    display: grid;
    gap: 2.5rem;
    align-items: stretch;
}

.map-address-grid--single {
    grid-template-columns: 1fr;
}

.map-address-grid--cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.map-address-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    height: 100%;
}

/* No image: classic card */
.map-address-card--plain {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(2, 6, 23, 0.07);
}

.map-address-card--plain .map-address-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.4rem 1.3rem;
    min-width: 0;
}

.map-address-card--plain .map-address-directions-btn {
    margin-top: auto;
    align-self: flex-start;
}

.map-address-card--plain .map-address-card-body:not(:last-child) {
    border-bottom: 1px solid #eef2f7;
}

.map-address-card--plain .map-address-card-map-wrap {
    border: 0;
    border-top: 1px solid #eef2f7;
    border-radius: 0;
}

/* Image as full-bleed background; copy sits inside */
.map-address-card--hero {
    gap: 1rem;
    background: transparent;
    overflow: visible;
}

.map-address-card-panel {
    display: grid;
    grid-template-columns: 1fr;
    isolation: isolate;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.14);
    min-width: 0;
    flex: 1;
    height: 100%;
    min-height: 100%;
}

.map-address-card-bg {
    grid-area: 1 / 1;
    position: relative;
    min-height: min(320px, 58vw);
    align-self: stretch;
    background: #1e293b;
}

.map-address-card-bg-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-address-card-bg-map {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #e2e8f0;
}

.map-address-card-bg-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-address-card-bg-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(29, 46, 93, 0.78);
}

.map-address-card-body--on-bg {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 1.5rem 1.45rem 1.65rem;
    max-width: min(36rem, 100%);
    min-width: 0;
}

.map-address-card-body--on-bg .map-address-directions-btn {
    margin-top: auto;
    align-self: flex-start;
}

.map-address-card-body--on-bg .map-address-card-title {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.map-address-card-body--on-bg .map-address-card-description {
    color: rgba(248, 250, 252, 0.94);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.map-address-card-body--on-bg .map-address-card-label {
    color: rgba(226, 232, 240, 0.88);
}

.map-address-card-body--on-bg .map-address-card-value {
    color: #f8fafc;
}

.map-address-card-body--on-bg .map-address-card-phone {
    color: #7dd3fc;
}

.map-address-card-body--on-bg .map-address-card-phone:hover {
    color: #fff;
}

.map-address-card-body--on-bg .map-address-tag {
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.map-address-directions-btn.map-address-directions-btn--on-bg {
    color: var(--navy, #1D2E5D);
    background: var(--brand-yellow, #FFC75B);
    border-color: var(--brand-yellow, #FFC75B);
    backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(29, 46, 93, 0.18);
}

.map-address-directions-btn.map-address-directions-btn--on-bg:hover {
    background: var(--navy-mid, #204F70);
    border-color: var(--navy-mid, #204F70);
    color: #fff;
}

.map-address-card-map-wrap {
    overflow: hidden;
    min-height: 220px;
    background: #f1f5f9;
}

.map-address-card--hero .map-address-card-map-wrap {
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 15%, transparent);
}

.map-address-card-map {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.map-address-card-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.map-address-card-description {
    margin: 0 0 1.25rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #64748b;
}

.map-address-card-block {
    margin: 0 0 1rem;
}

.map-address-card-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.map-address-card-value {
    margin: 0;
    font-size: 1.02rem;
    color: #1e3a5f;
    line-height: 1.5;
}

.map-address-card-phone {
    color: var(--primary-blue, #4191C9);
    font-weight: 600;
    text-decoration: none;
}

.map-address-card-phone:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.map-address-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1.35rem;
}

.map-address-tag {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue, #4191C9);
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 28%, #cbd5e1);
    border-radius: 999px;
}

a.map-address-tag.map-address-tag--link {
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

a.map-address-tag.map-address-tag--link:hover,
a.map-address-tag.map-address-tag--link:focus-visible {
    background: color-mix(in srgb, var(--primary-blue, #4191C9) 10%, #fff);
    border-color: var(--primary-blue, #4191C9);
    text-decoration: underline;
    outline: none;
}

.map-address-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy, #1D2E5D);
    background: var(--brand-yellow, #FFC75B);
    border: 1px solid var(--brand-yellow, #FFC75B);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(29, 46, 93, 0.18);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.map-address-directions-btn:hover {
    background: var(--navy-mid, #204F70);
    border-color: var(--navy-mid, #204F70);
    color: #fff;
}

.map-address-directions-btn i {
    font-size: 0.85em;
    opacity: 0.85;
}

/* All locations section */
.all-locations-section {
    padding: 4rem 0;
}

.locations-section {
    padding: 4rem 0;
}

.locations-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.page-headers-banner + .locations-section {
    padding-top: 2.5rem;
}

.locations-section:has(+ .all-locations-section) {
    padding-bottom: 1.5rem;
}

.locations-section + .all-locations-section {
    padding-top: 0;
}

.all-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.all-location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
    border-top: 5px solid var(--brand-yellow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.all-location-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    flex-shrink: 0;
}

.all-location-logo {
    display: block;
    width: auto;
    max-width: 240px;
    max-height: 104px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.all-location-thumb {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.all-location-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.all-location-content h3 {
    margin: 0 0 0.6rem;
    color: #0f172a;
}

.all-location-content p {
    margin: 0.4rem 0;
    color: #475569;
}

.all-location-content p i {
    color: var(--accent-light);
    margin-right: 0.35rem;
}

.all-location-phone-row {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}

.all-location-phone-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
}

.all-location-phone-link:hover,
.all-location-phone-link:focus-visible {
    color: var(--brand-green);
    text-decoration: none;
}

.all-location-phone-link:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.all-location-content .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.location-directory-group {
    margin-top: 2.5rem;
}

.location-directory-group:first-of-type {
    margin-top: 0;
}

.location-directory-group-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.location-directory-group-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.location-kind-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.location-kind-badge-main {
    background: rgba(42, 138, 226, 0.12);
    color: var(--primary-blue);
    border: 1px solid rgba(42, 138, 226, 0.2);
}

.location-kind-badge-clinic {
    background: rgba(7, 169, 89, 0.12);
    color: var(--brand-green, #07A959);
    border: 1px solid rgba(7, 169, 89, 0.25);
}

.location-card-badges {
    margin-bottom: 0.65rem;
}

.all-location-card-main {
    border: 1px solid rgba(42, 138, 226, 0.18);
    box-shadow: 0 10px 24px rgba(15, 61, 107, 0.1);
}

.location-assignment-note {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.location-assignment-note-unassigned {
    color: #b45309;
}

.location-clinics-section {
    padding: 2.5rem 0 4rem;
    background: #E8F3FA;
}

.location-clinics-section .provider-results-head {
    margin-bottom: 1.25rem;
}

.location-clinics-section .provider-results-head p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-gray);
}

.location-clinics-section .provider-results-head span {
    color: var(--primary-blue);
    font-weight: 700;
}

.location-clinics-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin: 0 0 1.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(42, 138, 226, 0.12);
    box-shadow: 0 8px 24px rgba(15, 61, 107, 0.05);
}

.location-clinics-selector label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.location-clinics-selector select {
    min-width: min(100%, 380px);
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.location-clinics-selector select:focus {
    outline: none;
    border-color: rgba(42, 138, 226, 0.45);
    box-shadow: 0 0 0 4px rgba(42, 138, 226, 0.12);
}

.location-clinics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.location-clinics-grid--single {
    grid-template-columns: minmax(0, min(560px, 100%));
    justify-content: center;
    margin-inline: auto;
}

.location-clinic-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 61, 107, 0.08);
    box-shadow: 0 12px 32px rgba(15, 61, 107, 0.07);
    height: 100%;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-clinic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 61, 107, 0.12);
}

.location-clinic-card-accent {
    height: 5px;
    background: var(--brand-yellow);
}

.location-clinic-hours {
    margin: 0 0 1.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(7, 169, 89, 0.08);
    border: 1px solid rgba(7, 169, 89, 0.18);
}

.location-clinic-hours-label {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy, #1D2E5D);
}

.location-clinic-hours-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-clinic-hours-list li {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--text-dark, #1D2E5D);
}

.location-clinic-hours-list li:last-child {
    margin-bottom: 0;
}

.location-clinic-hours-note {
    margin: 0.55rem 0 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(29, 46, 93, 0.78);
}

.single-location-hours {
    margin: 0 0 1.25rem;
}

.single-location-hours-list {
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
}

.single-location-hours-list li {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    color: var(--text-dark, #1D2E5D);
}

.single-location-hours-note {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: rgba(29, 46, 93, 0.8);
}

.location-clinic-card-body {
    padding: 1.5rem 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 5px);
}

.location-clinic-card-name {
    margin: 0 0 1rem;
    font-size: 1.28rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.location-clinic-card-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: #E8F3FA;
    border: 1px solid rgba(42, 138, 226, 0.1);
}

.location-clinic-card-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(42, 138, 226, 0.14);
    color: var(--accent-light);
    flex-shrink: 0;
}

.location-clinic-card-meta-icon .fa-map-marker-alt {
    font-size: 0.85rem;
}

.location-clinic-card-address {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.55;
    font-size: 0.94rem;
}

.location-clinic-tags,
.all-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.35rem 0 0.85rem;
}

.location-clinic-providers {
    margin-bottom: 0;
    flex: 1;
}

.location-clinic-providers-label {
    margin: 0 0 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.location-clinic-provider-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    overflow: hidden;
}

.location-clinic-provider-item + .location-clinic-provider-item {
    border-top: 1px solid #e8eef5;
}

.location-clinic-provider-link,
.location-clinic-provider-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.location-clinic-provider-link:hover {
    background: var(--brand-surface-tint, #E8F3FA);
    color: var(--link-hover);
}

.location-clinic-provider-link i {
    font-size: 0.72rem;
    color: var(--accent-light);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.location-clinic-provider-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

.location-clinic-card-footer {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid #e8eef5;
}

.location-clinic-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.8rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--btn-fill);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(15, 61, 107, 0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.location-clinic-contact-btn:hover {
    color: #fff;
    background: var(--btn-fill-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(15, 61, 107, 0.22);
}

.location-clinic-contact-btn i {
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .location-clinics-grid {
        grid-template-columns: 1fr;
    }

    .location-clinics-grid--single {
        grid-template-columns: minmax(0, min(560px, 100%));
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .location-clinics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-clinics-grid--single {
        grid-template-columns: minmax(0, min(560px, 100%));
        justify-content: center;
    }
}

.all-locations-empty {
    color: var(--text-gray);
    text-align: center;
    padding: 2rem 0;
}

/* Careers section */
.careers-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0 56px;
}

.careers-carousel-wrapper .carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    border: 1px solid var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
    color:var(--primary-blue);
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.careers-carousel-wrapper .carousel-btn i {
    font-size: 0.95rem;
}

.careers-carousel-wrapper .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--primary-blue);
}

.careers-prev-btn {
    left: 0;
}

.careers-next-btn {
    right: 0;
}

.careers-track-container {
    overflow: hidden;
    position: relative;
}

.careers-track {
    display: flex;
    transition: transform 0.5s ease;
}

.careers-card {
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    padding: 1.2rem;
    padding-top: calc(1.2rem + 5px);
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 355px;
}

.careers-card::before,
.service-list-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: var(--brand-yellow);
    border-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    clip-path: inset(0 0 13px 0);
    pointer-events: none;
    z-index: 3;
}

.careers-card::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-blue);
    border-top: none;
    border-radius: 0 0 12px 12px;
    pointer-events: none;
    z-index: 2;
}

.careers-card h3 {
    margin: 0 0 0.8rem;
    color: #0f172a;
    font-size: 1.75rem;
    line-height: 1.2;
}

.careers-meta {
    margin: 0.35rem 0;
    color: #334155;
    font-size: 0.95rem;
}

.careers-desc {
    margin: 0.7rem 0 1rem;
    color: #64748b;
    line-height: 1.65;
}

.careers-apply-btn {
    background: var(--accent-light, #4191C9) !important;
    color: #ffffff !important;
    border-color: var(--accent-light, #4191C9) !important;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
}

.careers-apply-btn:hover {
    background: var(--brand-green) !important;
    color: #ffffff !important;
    border-color: var(--brand-green) !important;
    transform: translateY(-2px);
}

.careers-browse-all-wrap {
    text-align: center;
    margin-top: 2rem;
}

.careers-browse-btn {
    min-width: 260px;
    justify-content: center;
}

/* Service list section */
.service-list-hero-image-wrap {
    margin: 1.25rem 0 1.5rem;
    border-radius: 14px;
    overflow: hidden;
}

.service-list-hero-image {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.service-list-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-list-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(15, 61, 107, 0.06);
    border-top: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 100%;
}

.service-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}

.service-list-card-image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #E8F3FA;
}

.service-list-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-list-card-image[data-src] {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-list-card-image.is-loaded {
    opacity: 1;
}

.service-list-card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.25rem 1.25rem 1.35rem;
}

.service-list-card-content h3 {
    margin: 0 0 0.65rem;
    color: #0f172a;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 700;
}

.service-list-card-summary {
    margin: 0 0 1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    flex: 1 1 auto;
}

.service-list-read-more {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding: 0;
    border: none;
    background: none;
    color: var(--primary-blue, var(--primary-blue, #4191C9));
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.2s ease, gap 0.2s ease;
}

.service-list-read-more:hover {
    color: var(--link-hover);
    gap: 0.55rem;
}

.service-list-read-more:focus-visible {
    outline: 2px solid var(--accent-light, var(--accent-light, #4191C9));
    outline-offset: 3px;
    border-radius: 4px;
}

.service-list-read-more i {
    font-size: 0.75em;
}

/* Service detail modal */
.service-list-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.service-list-modal[hidden] {
    display: none !important;
}

.service-list-modal.is-open {
    display: flex;
}

.service-list-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(2px);
}

.service-list-modal-panel {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.22);
}

.service-list-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(2, 6, 23, 0.12);
    transition: background 0.2s ease, color 0.2s ease;
}

.service-list-modal-close:hover {
    background: #fff;
    color: var(--primary-blue, var(--primary-blue, #4191C9));
}

.service-list-modal-image-wrap {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list-modal-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(48vh, 400px);
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-list-modal-image.is-loaded {
    opacity: 1;
}

.service-list-modal-body-wrap {
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-list-modal-title {
    margin: 0 0 0.75rem;
    color: #0f172a;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.25;
    font-weight: 800;
    padding-right: 2rem;
}

.service-list-modal-summary {
    margin: 0 0 1rem;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.65;
}

.service-list-modal-description {
    color: #475569;
    line-height: 1.65;
    font-size: 1rem;
}

.service-list-modal-description p {
    margin: 0 0 0.75rem;
}

.service-list-modal-description ul,
.service-list-modal-description ol {
    margin: 0.35rem 0 0.85rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.service-list-modal-description ul {
    list-style-type: disc;
}

.service-list-modal-description ol {
    list-style-type: decimal;
}

.service-list-modal-description li {
    display: list-item;
    margin: 0 0 0.35rem;
    padding-left: 0.15rem;
}

.service-list-modal-description li + li {
    margin-top: 0.35rem;
}

.service-list-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
}

.service-list-modal-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-blue, #4191C9);
    background: color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 22%, transparent);
    border-radius: 999px;
}

.service-list-card-description {
    color: #64748b;
    line-height: 1.6;
}

.service-list-card-description p {
    margin: 0 0 0.55rem;
}

.service-list-card-description ul,
.service-list-card-description ol {
    margin: 0 0 0.55rem;
    padding-left: 1.35rem;
}

.service-list-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1rem;
}

.service-list-card-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-blue, #4191C9);
    background: color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary-blue, var(--primary-blue, #4191C9)) 22%, transparent);
    border-radius: 999px;
}

@media (max-width: 900px) {
    .service-list-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-list-cards {
        grid-template-columns: 1fr;
    }
}

/* News carousel (CMS section) — uses :root theme tokens from style.css */
.news-carousel-section {
    background: #E8F3FA;
    padding: 3.5rem 0 4.25rem;
    border-top: 1px solid color-mix(in srgb, var(--primary-blue) 12%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--primary-blue) 10%, transparent);
}

.news-carousel-heading {
    text-align: center;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-weight: 800;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    letter-spacing: -0.02em;
}

.news-carousel-subheading {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 40rem;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.55;
}

.news-carousel-empty {
    text-align: center;
    color: var(--text-gray);
    margin: 0;
}

.news-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0 56px;
}

.news-carousel-wrapper .carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    border: 2px solid color-mix(in srgb, var(--primary-blue) 55%, transparent);
    background: var(--glass-bg);
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.news-carousel-wrapper .carousel-btn:hover {
    background: var(--white);
    border-color: var(--accent-light);
    color: var(--accent-light);
}

.news-prev-btn {
    left: 0;
}

.news-next-btn {
    right: 0;
}

.news-track-container {
    overflow: hidden;
    position: relative;
}

.news-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease;
}

.news-card {
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.news-card-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--primary-blue);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border: none;
}

.news-card-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: var(--brand-yellow);
    border-radius: 18px 18px 0 0;
    clip-path: inset(0 0 13px 0);
    pointer-events: none;
    z-index: 3;
}

.news-card-visual::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid color-mix(in srgb, var(--primary-blue) 85%, transparent);
    border-top: none;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
    z-index: 2;
}

.news-card-bg-img {
    display: block;
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 0;
}

.news-card-bg-placeholder {
    height: 280px;
    flex-shrink: 0;
    border-radius: 0;
    background: var(--navy-mid, #204F70);
}

.news-card-panel {
    position: relative;
    margin: -3.25rem 0.85rem 0.85rem;
    padding: 1.2rem 1.15rem 1rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid color-mix(in srgb, var(--primary-blue) 8%, transparent);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.news-card-title {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.news-card-date {
    margin: 0 0 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.3;
}

.news-card-date-label {
    font-weight: 700;
    color: color-mix(in srgb, var(--text-dark) 70%, var(--text-gray));
    margin-right: 0.3rem;
}

.news-card-date time {
    font-weight: 600;
    color: var(--text-gray);
}

.news-card-desc {
    flex: none;
    margin: 0 0 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    min-height: 0;
    max-height: 4.65em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-card-desc > * {
    display: inline;
    margin: 0;
    padding: 0;
}

.news-card-desc br {
    display: none;
}

.news-card-desc p + p::before {
    content: ' ';
}

.news-card-readmore {
    margin-top: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.95rem;
}

.news-card-readmore:hover {
    color: var(--link-hover);
}

.news-readmore-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid color-mix(in srgb, var(--white) 35%, transparent);
}

.news-readmore-icon i {
    font-size: 0.85rem;
    color: var(--white);
}

@media (max-width: 480px) {
    .news-carousel-section {
        padding: 3rem 0 3.75rem;
    }

    .news-carousel-heading {
        font-size: 2rem;
        line-height: 1.15;
    }

    .news-carousel-subheading {
        font-size: 0.98rem;
        margin-bottom: 1.6rem;
    }

    .news-carousel-wrapper {
        padding: 0 2rem;
    }

    .news-carousel-wrapper .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .news-prev-btn {
        left: 0;
    }

    .news-next-btn {
        right: 0;
    }

    .news-card-bg-img,
    .news-card-bg-placeholder {
        height: 250px;
    }

    .news-card-panel {
        margin: -2.75rem 0.7rem 0.7rem;
        padding: 1rem 0.95rem 0.95rem;
    }

    .news-card-title {
        font-size: 1rem;
    }

    .news-card-date {
        font-size: 0.74rem;
    }

    .news-card-desc {
        font-size: 0.88rem;
        line-height: 1.5;
        max-height: 4.5em;
    }

    .news-card-readmore {
        font-size: 0.9rem;
        gap: 0.55rem;
    }

    .news-readmore-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 360px) {
    .news-carousel-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .news-carousel-heading {
        font-size: 1.8rem;
    }

    .news-carousel-subheading {
        font-size: 0.92rem;
    }

    .news-carousel-wrapper {
        padding: 0 1.2rem;
    }

    .news-carousel-wrapper .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .news-prev-btn {
        left: -2px;
    }

    .news-next-btn {
        right: -2px;
    }

    .news-card-bg-img,
    .news-card-bg-placeholder {
        height: 220px;
    }

    .news-card-panel {
        margin: -2.45rem 0.55rem 0.55rem;
        padding: 0.9rem 0.85rem;
    }

    .news-card-title {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .news-card-date {
        font-size: 0.71rem;
        margin-bottom: 0.45rem;
    }

    .news-card-desc {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 0.8rem;
        max-height: 4.35em;
    }

    .news-card-readmore {
        width: 100%;
        justify-content: space-between;
    }

    .news-readmore-icon {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 320px) {
    .news-carousel-section {
        padding-bottom: 4.5rem;
    }

    .news-carousel-wrapper {
        padding: 0 0.85rem;
        margin-bottom: 0.5rem;
    }

    .news-carousel-wrapper .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.76rem;
    }

    .news-prev-btn {
        left: -2px;
    }

    .news-next-btn {
        right: -2px;
    }

    .news-card-bg-img,
    .news-card-bg-placeholder {
        height: 208px;
    }

    .news-card-panel {
        margin: -2.2rem 0.5rem 0.5rem;
        padding: 0.85rem 0.75rem;
    }

    .news-card-readmore {
        font-size: 0.88rem;
    }

    .news-readmore-icon {
        width: 32px;
        height: 32px;
    }
}

/* News full article */
.news-full-article {
    padding: 2.5rem 0 4rem;
    background: #E8F3FA;
}

.news-full-header {
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

.news-full-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
}

.news-full-date {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.02em;
}

.news-full-date-label {
    font-weight: 700;
    color: color-mix(in srgb, var(--text-dark) 72%, var(--text-gray));
    margin-right: 0.35rem;
}

.news-full-date time {
    font-weight: 600;
    color: var(--text-gray);
}

.news-full-hero {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid color-mix(in srgb, var(--primary-blue) 10%, transparent);
}

.news-full-hero-img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.news-full-body {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 0 0.25rem;
    min-width: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    overflow-x: auto;
}

.news-full-body::after {
    content: "";
    display: table;
    clear: both;
}

.news-full-body p {
    margin: 0 0 1rem;
}

.news-full-body p:last-child {
    margin-bottom: 0;
}

.news-full-body h1,
.news-full-body h2,
.news-full-body h3,
.news-full-body h4,
.news-full-body h5,
.news-full-body h6 {
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.25;
}

.news-full-body h1:first-child,
.news-full-body h2:first-child,
.news-full-body h3:first-child {
    margin-top: 0;
}

.news-full-body ul,
.news-full-body ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.news-full-body li {
    margin: 0.35rem 0;
}

.news-full-body li > p {
    margin: 0.25rem 0;
}

.news-full-body a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.news-full-body a:hover {
    color: var(--link-hover);
}

.news-full-body img,
.news-full-body video,
.news-full-body iframe,
.news-full-body svg {
    max-width: 100%;
    height: auto;
}

.news-full-body img {
    display: block;
    margin: 1rem auto;
    border-radius: var(--radius-sm);
}

.news-full-body figure {
    margin: 1.25rem 0;
    max-width: 100%;
}

.news-full-body figure img {
    margin: 0 auto;
}

.news-full-body blockquote {
    margin: 1.25rem 0;
    padding: 0.75rem 0 0.75rem 1.25rem;
    border-left: 4px solid var(--accent-light);
    color: var(--text-gray);
    font-style: italic;
}

.news-full-body pre,
.news-full-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
}

.news-full-body pre {
    margin: 1rem 0;
    padding: 1rem;
    max-width: 100%;
    overflow-x: auto;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid color-mix(in srgb, var(--primary-blue) 12%, transparent);
}

.news-full-body code {
    padding: 0.1em 0.35em;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.news-full-body pre code {
    padding: 0;
    background: none;
    border-radius: 0;
}

.news-full-body table {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
    font-size: 0.95em;
    table-layout: auto;
}

.news-full-body th,
.news-full-body td {
    border: 1px solid color-mix(in srgb, var(--primary-blue) 14%, transparent);
    padding: 0.5rem 0.65rem;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

.news-full-body th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.news-full-body hr {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--primary-blue) 12%, transparent);
}

.news-full-body div[style] {
    max-width: 100%;
}

/* Patient appointment request (public) */
.patient-appointment-section {
    padding: 2.5rem 0 4rem;
    background: #E8F3FA;
}

.patient-appointment-inner {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.patient-appointment-form {
    background: #fff;
    border: 1px solid rgba(15, 61, 107, 0.12);
    border-radius: 14px;
    padding: 1.5rem 1.35rem 1.75rem;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

.patient-appointment-alert {
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.patient-appointment-alert--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.patient-appointment-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* CMS dynamic forms section */
.cms-forms-section {
    padding: 2.5rem 0 4rem;
    background: #E8F3FA;
}

.cms-dynamic-form {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(15, 61, 107, 0.12);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}

/* Wider card when using multi-column field layout (admin: Form theme → Adjusted) */
.cms-dynamic-form--layout-adjusted {
    max-width: 1100px;
}

.cms-dynamic-form-fields--adjusted {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem 1rem;
    align-items: start;
}

@media (min-width: 768px) {
    .cms-dynamic-form-fields--adjusted {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cms-dynamic-form-fields--adjusted > .cms-form-heading,
    .cms-dynamic-form-fields--adjusted > .cms-form-subheading,
    .cms-dynamic-form-fields--adjusted > .cms-form-paragraph,
    .cms-dynamic-form-fields--adjusted > .cms-form-field--textarea,
    .cms-dynamic-form-fields--adjusted > .cms-form-field--checkbox-group {
        grid-column: 1 / -1;
    }
}

.cms-dynamic-form-fields--adjusted .cms-form-field {
    margin-bottom: 0;
}

.cms-dynamic-form--layout-adjusted > .btn.btn-primary {
    margin-top: 1.25rem;
}

.cms-form-heading {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue, var(--primary-blue, #4191C9));
    line-height: 1.25;
    text-align: center;
}

.cms-form-heading:first-child {
    margin-top: 0;
}

.cms-form-subheading {
    margin: 0.75rem 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark, #1e293b);
    line-height: 1.3;
    text-align: center;
}

.cms-form-paragraph {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: color-mix(in srgb, var(--text-dark, #1e293b) 88%, transparent);
    text-align: justify;
    direction: ltr;
}

.cms-form-checkbox-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.cms-form-checkbox-legend {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0;
}

.cms-form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(15, 61, 107, 0.2);
    border-radius: 10px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cms-form-checkbox-group:focus-within {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(42, 138, 226, 0.15);
}

.cms-form-checkbox-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
}

.cms-form-checkbox-item input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0;
    flex-shrink: 0;
    border-radius: 4px;
    accent-color: var(--accent-light, var(--accent-light, #4191C9));
    cursor: pointer;
}

.cms-form-field {
    margin-bottom: 1rem;
}

.cms-form-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cms-form-label-info {
    margin: -0.15rem 0 0.5rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: color-mix(in srgb, var(--text-dark, #1e293b) 72%, transparent);
    font-weight: 400;
}

.cms-form-field--checkbox-group .cms-form-label-info {
    margin: 0 0 0.5rem;
}

.cms-form-required {
    color: #dc2626;
}

.cms-form-field input,
.cms-form-field textarea,
.cms-form-field select {
    width: 100%;
    border: 1px solid rgba(15, 61, 107, 0.2);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fff;
}

.cms-form-field input:focus,
.cms-form-field textarea:focus,
.cms-form-field select:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(42, 138, 226, 0.15);
}

.cms-form-alert {
    max-width: 860px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.94rem;
}

.cms-form-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
}

.cms-form-alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #7f1d1d;
}

/* CTA with image — full-width background + glass card */
.cta-with-image-section {
    position: relative;
    min-height: 32rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-with-image-section--has-bg {
    background-image: var(--ctwi-bg-image);
}

.cta-with-image-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    pointer-events: none;
}

.cta-with-image-section__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.cta-with-image-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 1.75rem;
    background: rgba(15, 61, 107, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-with-image-card__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-yellow);
}

.cta-with-image-card__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.cta-with-image-card__sub {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.cta-with-image-card__body {
    margin: 0 0 1.75rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.cta-with-image-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.cta-with-image-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.cta-with-image-btn--primary {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(65, 145, 201, 0.28);
}

.cta-with-image-btn--primary:hover {
    transform: translateY(-1px);
    color: #fff;
    background: var(--btn-fill-hover);
}

.cta-with-image-btn--secondary {
    background: #fff;
    color: #0f172a;
}

.cta-with-image-btn--secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.2);
}

/* Community inner page responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .sidebar-nav {
        position: static !important;
        padding: 1.5rem !important;
    }

    .main-content {
        padding: 2rem !important;
    }

    .community-inner-grid {
        grid-template-columns: 1fr;
    }

    .community-inner-sidebar {
        position: static;
        top: auto;
    }

    .provider-filters {
        grid-template-columns: 1fr 1fr;
    }

    .provider-grid {
        grid-template-columns: 1fr;
    }

    .single-location-grid {
        grid-template-columns: 1fr;
    }

    .map-address-grid--cols {
        grid-template-columns: 1fr;
    }

    .all-locations-grid {
        grid-template-columns: 1fr;
    }

    .careers-carousel-wrapper {
        padding: 0 44px;
    }

    .news-carousel-wrapper {
        padding: 0 44px;
    }

    .service-list-modal-panel {
        max-height: 92vh;
    }

    .service-list-modal-body-wrap {
        padding: 1.25rem 1.15rem 1.35rem;
    }

    .cta-with-image-card__actions {
        flex-direction: column;
    }

    .cta-with-image-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .community-inner-section {
        padding: 2rem 0 3rem;
    }

    .community-inner-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .community-inner-section-head {
        margin-bottom: 1.5rem;
    }

    .community-inner-grid {
        gap: 1.25rem;
    }

    .community-inner-sidebar,
    .community-inner-panels,
    .community-inner-main-legacy {
        padding: 1.25rem 1rem;
    }

    .community-inner-content-title,
    h1.community-inner-content-title {
        font-size: 1.65rem;
    }

    .community-inner-subheader {
        align-items: flex-start;
    }

    .community-inner-subheader-title,
    .community-inner-subheader-title p,
    .community-inner-subheader-title h1,
    .community-inner-subheader-title h2,
    .community-inner-subheader-title h3 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .community-inner-subsection-body a.wysiwyg-inline-btn,
    .community-inner-subsection-body a.wysiwyg-inline-btn:visited {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 420px) {
    .community-inner-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .community-inner-sidebar,
    .community-inner-panels,
    .community-inner-main-legacy {
        padding: 1rem 0.85rem;
    }

    .community-inner-content-title,
    h1.community-inner-content-title {
        font-size: 1.45rem;
    }

    .community-inner-intro,
    .community-inner-subsection-body {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .community-inner-subheader {
        gap: 0.5rem;
    }

    .community-inner-subheader-icon-img,
    .community-inner-subheader-icon-fa {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 1.7rem;
    }

    .community-inner-subheader-title,
    .community-inner-subheader-title p,
    .community-inner-subheader-title h1,
    .community-inner-subheader-title h2,
    .community-inner-subheader-title h3 {
        font-size: 1.2rem;
    }

    .community-inner-nav-link {
        padding: 0.6rem 0.7rem;
    }
}

@media (max-width: 424px) {
    .provider-card {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .provider-card-media {
        display: block;
        justify-self: center;
        width: min(100%, 180px);
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        border-bottom-left-radius: 28px;
    }

    .provider-card-media img {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        aspect-ratio: 1 / 1;
    }

    .provider-card-body {
        width: 100%;
    }
}
