/* 
   New Design System: Bookstore Concept
   Inspired by BeTheme Bookstore Demo
*/

:root {
    /* Color Palette */
    --color-bg: #fdfcf8;
    /* Soft Cream / Paper */
    --color-text: #1a202c;
    /* Deep Charcoal */
    --color-text-dim: #4a5568;
    /* Muted Slate */
    --color-accent: #b7791f;
    /* Muted Gold */
    --color-accent-light: #d69e2e;
    --color-border: #e2e8f0;
    --color-section-bg: #f2efe9;
    /* Warmer, darker cream/beige */
    --color-bg-alt: #e6e0d4;
    /* Distinct Sand color */

    /* Typography */
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    --bp-tablet: 1024px;
    --bp-phone: 768px;
    --bp-small: 480px;
    --space-mobile-1: 0.5rem;
    --space-mobile-2: 0.75rem;
    --space-mobile-3: 1rem;
    --space-mobile-4: 1.5rem;
    --type-fluid-display: clamp(2rem, 5.8vw, 4rem);
    --type-fluid-title: clamp(1.75rem, 4.8vw, 3rem);
    --type-fluid-body: clamp(1rem, 2.7vw, 1.15rem);

    /* Shadows & Effects */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* World Map Grid Container */
.contribution-grid {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(var(--cols, 1), 10px);
    grid-template-rows: repeat(var(--rows, 1), 10px);
    gap: 4px;
    padding: 0;
    margin: 0;
}

.grid-cell {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.grid-cell--water {
    background-color: transparent;
}

.grid-cell--land {
    background-color: var(--cell-gray, rgb(240, 240, 240));
}

.grid-cell--land.active {
    background-color: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent);
    transform: scale(1.2);
    animation: twinkle 1s ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: clip;
}

main {
    position: relative;
    z-index: 1;
}

header,
footer {
    position: relative;
    z-index: 10;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Variants */
.section-alt {
    background-color: var(--color-bg-alt);
}

.section-accent {
    background-color: var(--color-accent);
    color: white;
}

.section-accent .section-subtitle,
.section-accent .text-accent,
.section-accent p {
    color: rgba(255, 255, 255, 0.9);
}

.section-accent .btn-outline {
    border-color: white;
    color: white;
}

.section-accent .btn-outline:hover {
    background-color: white;
    color: var(--color-accent);
}

/* Helper Classes */
.text-serif {
    font-family: var(--font-serif);
}

.text-accent {
    color: var(--color-accent);
}

/* Kicker-style yellow headings */
.section-heading .text-accent.text-serif.italic,
.split-text > .text-accent.text-serif.italic,
.hero-text > .text-accent.text-serif.italic {
    font-size: 1.25rem;
    line-height: 1.25;
    display: inline-block;
}

/* Keep hero kicker spans consistent with .hero-subtitle sizing */
.hero-inner .section-heading .text-accent.text-serif.italic,
.hero-inner .text-accent.text-serif.italic {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    display: inline-block;
}

.desktop-line-break {
    display: inline;
}

.section-padding {
    padding: var(--section-padding);
}

.italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--color-text);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: white;
}

.btn-outline {
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Header & Navigation */
.header {
    background-color: rgba(253, 252, 248, 0.95);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 80px;
    contain: layout;
}

.logo-img {
    height: 40px;
    width: auto;
    aspect-ratio: 180 / 40;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dim);
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    min-height: 44px;
    padding: 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 44px;
    line-height: 1;
}

.dropdown-trigger::before {
    content: '\25BE';
    font-size: 0.72rem;
    line-height: 1;
    order: 2;
    margin-left: 0.15rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger::before {
    transform: rotate(180deg);
}

.nav-item-dropdown.open .dropdown-trigger::before {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 10px);
    transition: all 0.3s ease;
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.nav-item-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

/* CTA Button Refinements */
.btn-cta-gold {
    background-color: white;
    color: var(--color-accent);
    border: 1px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-gold:hover {
    background-color: var(--color-text);
    color: white;
    border-color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    background-color: var(--color-text);
    border: 1px solid var(--color-text);
    color: white;
}

.btn-cta-outline:hover {
    background-color: white;
    color: var(--color-text);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-home-light {
    background-color: white;
    color: var(--color-accent);
    border-color: white;
}

.btn-home-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-home-light:hover,
.btn-home-outline:hover {
    background-color: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

/* Ensure section-accent overrides don't conflict with our fancy buttons */
.section-accent .btn-cta-gold:hover,
.section-accent .btn-cta-outline:hover {
    transition: var(--transition-base);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dim);
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-accent);
}

.dropdown-menu a::after {
    display: none;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    padding: 128px 0;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    margin: 1rem 0 2.5rem;
    line-height: 1.1;
    font-family: var(--font-serif);
    overflow-wrap: anywhere;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-dim);
    margin-bottom: 3.5rem;
    max-width: 500px;
    overflow-wrap: anywhere;
}

/* Homepage-only sloped right edge for intro copy */
.hero-description-slope {
    max-width: 38.4ch;
    line-height: 1.45;
    text-wrap: pretty;
    position: relative;
}

.hero-description-slope::after {
    content: "";
    float: right;
    width: 5.5ch;
    height: 4.7em;
    shape-outside: polygon(0 0, 100% 0, 32% 100%, 0 100%);
}

.provider-hero-description {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-image-wrapper {
    position: absolute;
    right: -15%;
    /* Increased offset for larger map */
    top: 50%;
    transform: translateY(-50%);
    width: 98%;
    /* Increased size by ~15% */
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: transparent;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--color-section-bg);
    border-top: 1px solid var(--color-border);
    padding: 32px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.25rem;
    text-align: center;
    align-items: stretch;
}

.trust-item {
    flex: 1 1 180px;
    padding: 0.2rem 0.45rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 108px;
}

.stat-num {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-num.stat-num-word {
    font-size: 1.62rem;
    line-height: 1.22;
    margin: 0 0 0.55rem;
}

.stat-label {
    font-family: var(--font-sans);
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
    line-height: 1.42;
    font-weight: 500;
    max-width: 32ch;
    margin: 0 auto;
    color: var(--color-text-dim);
}

/* Solutions Section */
.section-heading {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto;
    overflow-wrap: anywhere;
}

.physician-why-subtitle {
    max-width: 760px;
}

/* Reusable page-level helpers to reduce inline layout styles */
.hero-title-narrow {
    max-width: 900px;
    margin: 1.5rem auto;
}

.hero-description-centered {
    margin: 0 auto 3rem;
}

.hero-description-700 {
    margin: 0 auto;
    max-width: 700px;
}

.hero-btns-center {
    justify-content: center;
}

.btn-fixed-240 {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 1rem 0;
}

.role-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.section-bg-white {
    background-color: white;
}

.hero-inner-compact {
    padding-bottom: 40px;
}

.section-minh-60vh {
    min-height: 60vh;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    /* Reduced from 3rem */
}

.solution-card {
    background: white;
    padding: 2.4rem 1.6rem;
    /* Reduced from 3rem 2rem */
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    text-align: center;
}

.solution-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.solution-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.physician-why-section .solution-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--color-section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.physician-why-section .solution-card .card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--color-accent);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-text {
    color: var(--color-text-dim);
}

.solution-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    text-align: left;
    color: var(--color-text-dim);
}

.solution-list li {
    margin-bottom: 0.5rem;
}

.operational-list {
    display: inline-block;
    text-align: left;
    margin: 0;
    padding-left: 1.15rem;
    max-width: 680px;
    color: var(--color-text);
}

.operational-list li {
    margin-bottom: 0.65rem;
}

.coverage-scenarios-copy {
    max-width: 860px;
    margin-bottom: 0;
    line-height: 1.75;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #0d1728 0%, #0f1c31 48%, #14233b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.footer::before {
    width: 520px;
    height: 520px;
    top: -240px;
    right: -180px;
    background: radial-gradient(circle, rgba(183, 121, 31, 0.24) 0%, rgba(183, 121, 31, 0) 72%);
}

.footer::after {
    width: 500px;
    height: 500px;
    bottom: -240px;
    left: -180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 72%);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr 1.25fr;
    gap: 2.4rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.footer-desc {
    margin-top: 1.2rem;
    color: #c5d0df;
    max-width: 330px;
    font-size: 0.93rem;
    line-height: 1.65;
}

.footer-title {
    color: #f4ecdf;
    font-size: 0.92rem;
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-serif);
}

.footer-links-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.5rem;
}

.footer-links-col a,
.footer-contact-col p {
    color: #d2dbe8;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-links-col a {
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.footer-links-col a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-links-col a:hover::after {
    transform: scaleX(1);
}

.footer-contact-col p {
    margin-bottom: 0.4rem;
}

.footer-location {
    margin-top: 0.85rem;
    color: #a4b3c8 !important;
    font-size: 0.86rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.35rem;
    text-align: center;
    color: #a4b3c8;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: #d6e0ef;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* --- Inner Page Styles --- */

/* Inner Hero defaults */
.hero-inner {
    padding: 64px 0 48px;
    text-align: center;
    background-color: var(--color-section-bg);
    border-bottom: 1px solid var(--color-border);
}

.hero-inner .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-inner .hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}


/* Feature/Benefit Grid (3-col) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    /* Reduced from 3rem */
    margin-top: 3.2rem;
    /* Reduced from 4rem */
}

.benefits-grid .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Homepage: make the 6 facility cards equal height */
.facilities-benefits-grid .benefit-item {
    height: 100%;
    min-height: 290px;
}

.benefits-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefits-grid.grid-4 .benefit-item {
    padding: 1.5rem 1rem;
}

.benefits-grid.grid-4 .benefit-title {
    font-size: 1.15rem;
}

.benefits-grid.grid-4 .benefit-desc {
    font-size: 0.9rem;
}

.benefit-item {
    text-align: center;
    padding: 1.6rem;
    background: white;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    border-radius: 4px;
    transition: var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
}

/* Keep locums bottom cards visually consistent */
.locums-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.locums-benefits .benefit-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 34ch;
}

/* Content Split (Image Left/Text Right or V.V.) */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 64px 0;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse>* {
    direction: ltr;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

/* About page: Our Story section */
.about-story-section .about-story-split {
    grid-template-columns: minmax(340px, 0.95fr) minmax(520px, 1.15fr);
    gap: 3rem;
    align-items: center;
    padding: 52px 0;
}

.about-story-section .about-story-image img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: clamp(414px, 52vw, 558px);
    object-fit: cover;
    border-radius: 0;
    box-shadow: 18px 18px 0 var(--color-section-bg);
}

.about-story-section .about-story-text {
    max-width: 66ch;
    line-height: 1.72;
}

.about-story-section .about-story-text p {
    font-size: 1.06rem;
    line-height: 1.72;
    margin-bottom: 1rem;
}

.about-story-section .about-story-text p:last-child {
    margin-bottom: 0;
}

.about-story-section .story-glow-container {
    padding: 1.65rem;
}

/* Keep body copy consistent in Concord sections */
.concord-difference-copy p,
.concord-advantage-copy p,
.app-concord-difference-copy p {
    font-size: 1.1rem;
    line-height: 1.75;
}

.concord-advantage-copy li {
    font-size: 1.05rem;
    line-height: 1.65;
}

.advantage-feature {
    background-color: var(--color-bg-alt);
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.advantage-copy h2 {
    margin-bottom: 2.35rem;
    text-align: center;
    font-size: 3rem;
}

.advantage-intro {
    margin-bottom: 1.5rem;
    max-width: none;
    width: 100%;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text-dim);
    text-align: justify;
    text-justify: inter-word;
}

.advantage-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: stretch;
}

.advantage-check-grid > div {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.advantage-check-grid h4 {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--color-text);
}

.advantage-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.advantage-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0;
}

.advantage-check-item span {
    font-size: 1rem;
    line-height: 1.58;
}

.advantage-check-item img {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 0.2rem;
}

.advantage-panel {
    padding: 1.25rem;
    background: var(--color-section-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.advantage-panel h4 {
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.advantage-panel-row {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 1rem;
    align-items: stretch;
}

.advantage-panel-visual {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    min-height: 100%;
}

.advantage-panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-studies-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.case-study-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.15rem;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.real-world-coverage-section .case-study-card {
    aspect-ratio: 1 / 1;
    padding: 3rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.real-world-coverage-section .case-study-title {
    margin-bottom: 0.85rem;
}

.real-world-coverage-section .case-study-excerpt {
    margin-bottom: 1.1rem;
}

.advantage-check-grid > div:hover,
.advantage-panel:hover,
.real-world-coverage-section .case-study-card:hover,
.real-world-coverage-section .case-study-card:focus-within {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
}

.case-study-title {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    line-height: 1.35;
}

.case-study-excerpt {
    margin: 0 0 0.9rem;
    color: var(--color-text-dim);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.case-study-link:hover,
.case-study-link:focus-visible {
    color: var(--color-accent);
}

.case-study-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.real-world-coverage-section {
    background: var(--color-bg);
}

.facility-testimonials-section .testimonial-section {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 800px;
    padding: 0;
}

.facility-testimonial-org {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 1rem;
}

.facility-testimonials-section .testimonial-text {
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--color-text);
}

.facility-testimonials-section .testimonial-author {
    margin-top: 2.5rem;
}

.facility-testimonials-section .testimonial-role,
.facility-testimonials-section .facility-testimonial-company {
    color: var(--color-text-dim);
}

.facility-testimonials-section .testimonial-role {
    margin-bottom: 0.35rem;
}

.process-steps-section .process-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
    border: 2px solid rgba(183, 121, 31, 0.55);
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.08), 0 0 0 3px rgba(183, 121, 31, 0.14);
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 1.98rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: lining-nums tabular-nums;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.process-steps-section .benefits-grid.grid-4 .benefit-title {
    margin-bottom: 0.7rem;
}

.process-steps-section .benefits-grid.grid-4 .benefit-desc {
    line-height: 1.6;
}

.split-sub-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.split-sub-list li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 var(--color-section-bg);
}

/* Forms */
.form-section {
    padding: 64px 0;
}

.clean-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    line-height: 1.4;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--color-bg);
    transition: var(--transition-base);
}

.form-group input,
.form-group textarea,
.clean-form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
.clean-form textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 4px;
}

.form-group select {
    min-height: 52px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-text-dim) 50%),
        linear-gradient(135deg, var(--color-text-dim) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.newsletter-inline .newsletter-input {
    flex: 1;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.3;
    box-sizing: border-box;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-inline .newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(183, 121, 31, 0.14);
}

/* Referral Program */
.referral-hero-note {
    max-width: 760px;
    margin: 0 auto;
}

.referral-bonus-line {
    margin: -0.35rem 0 1rem;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-accent);
}

.referral-trust-strip {
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}

.referral-trust-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.25rem;
    align-items: center;
}

.referral-logo-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-border);
    padding-right: 1.25rem;
}

.referral-logo-lockup img {
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.referral-trust-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.referral-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--color-section-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.65rem 0.8rem;
}

.referral-trust-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.referral-trust-item span {
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--color-text);
    font-weight: 600;
}

.referral-shell {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(1.1rem, 2vw, 1.8rem);
}

.referral-card-head {
    margin-bottom: 1.6rem;
}

.referral-form-wrap {
    background: var(--color-section-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.3rem;
}

#referral-form {
    max-width: none;
    margin: 0;
    gap: 1.1rem;
}

.referral-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.7rem;
    align-items: start;
}

.referral-column {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 8px;
    padding: 1rem;
    display: grid;
    gap: 0.9rem;
}

.referral-column .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.referral-block-title {
    margin: 0 0 0.65rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

#referral-form .form-group input,
#referral-form .form-group select,
#referral-form .form-group textarea {
    background: #fff;
    border: 1px solid #c8d2df;
    border-radius: 5px;
}

#referral-form .form-group select {
    min-height: 54px;
    padding: 0.9rem 2.6rem 0.9rem 0.95rem;
    line-height: 1.35;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: linear-gradient(45deg, transparent 50%, #425466 50%),
        linear-gradient(135deg, #425466 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

#referral-form .form-group select:disabled {
    cursor: not-allowed;
    background-color: #f7f9fc;
    color: #7a8796;
    border-color: #d7dee8;
}

#referral-form .form-group input:focus,
#referral-form .form-group select:focus,
#referral-form .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(183, 121, 31, 0.16);
}

#referral-response {
    display: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    margin-top: 0.45rem;
}

.referral-terms {
    margin-top: 1.65rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.1rem;
}

.referral-terms-title {
    margin: 0 0 0.8rem;
    font-size: 1rem;
}

.referral-terms-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    font-size: 0.92rem;
}

.referral-terms-list li {
    margin-bottom: 0.5rem;
}

.referral-terms-copy {
    margin: 0;
    color: var(--color-text-dim);
    line-height: 1.55;
    font-size: 0.84rem;
}

.app-testimonials-section .homepage-testimonial-carousel {
    margin-top: 1.25rem !important;
}

.home-physician-led-line {
    max-width: none !important;
}

/* FAQ / Accordion */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--color-text-dim);
}

@media (min-width: 900px) {
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1200px;
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.team-card {
    position: relative;
    text-align: center;
    z-index: 1;
    width: 100%;
}

.team-card.is-open {
    z-index: 30;
}

.bio-flip-stage {
    position: relative;
    perspective: 1100px;
    min-height: 0;
    width: 100%;
}

.bio-flip-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.46s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.46s ease;
    transform-origin: center center;
    width: 100%;
}

.bio-flip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(20, 28, 41, 0.09);
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
}

.team-card:hover:not(.is-open) .bio-flip-card {
    transform: rotateY(-9deg);
}

.team-card:hover:not(.is-open) .bio-flip-card::after {
    opacity: 0.36;
}

.team-card.is-open .bio-flip-card {
    transform: rotateY(-14deg);
}

.team-card.is-open .bio-flip-card::after {
    opacity: 0.65;
}

.bio-flip-trigger {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: inherit;
    border-radius: 10px;
}

.bio-front {
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
}

.team-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: filter 0.36s ease, transform 0.36s ease;
}

.team-card:hover .team-img,
.team-card.is-open .team-img {
    filter: grayscale(0%);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.team-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.team-bio-popup {
    display: none;
}

.team-bio-overlay {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    width: min(100%, 560px);
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.35rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    text-align: left;
    max-height: min(74vh, 760px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.team-bio-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.team-bio-overlay-content {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
}

.team-bio-overlay h4 {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    grid-column: 1;
    outline: none;
}

.team-bio-overlay .team-bio-role {
    margin-bottom: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.team-bio-overlay .team-bio-photo {
    width: 100%;
    max-width: 190px;
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / span 20;
}

.team-bio-overlay p {
    margin-bottom: 0.72rem;
    color: var(--color-text-dim);
    line-height: 1.64;
    font-size: 0.92rem;
    grid-column: 1;
    max-width: 78ch;
    text-align: justify;
}

.team-bio-overlay p:last-child {
    margin-bottom: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.blog-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
}

.page-num:hover,
.page-num.active {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.blog-card {
    background: white;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--color-accent);
}

.blog-img-wrapper {
    height: 180px;
    /* Reduced from 240px (approx 25% reduction) */
    overflow: hidden;
    position: relative;
    background-color: var(--color-section-bg);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.blog-content {
    padding: 1.2rem;
    /* Reduced from 1.5rem */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Push the link to bottom */
}

.blog-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link::after {
    content: none !important;
    transition: padding-left 0.2s;
}

.blog-link:hover::after {
    padding-left: 0 !important;
}

/* Individual Blog Post Styling */
.container-narrow {
    max-width: 850px;
    margin: 0 auto;
}

.blog-content-main {
    font-size: 1.03rem;
    line-height: 1.76;
    color: var(--color-text);
}

.blog-content-main p {
    margin-bottom: 1.35rem;
}

.blog-content-main h2 {
    font-size: clamp(1.75rem, 2.8vw, 2.15rem);
    margin: 2.6rem 0 1rem;
    line-height: 1.2;
}

.blog-content-main h3 {
    font-size: clamp(1.4rem, 2.3vw, 1.7rem);
    margin: 2rem 0 0.9rem;
    line-height: 1.3;
}

.blog-content-main img {
    margin: 2.25rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    width: 100%;
}

.blog-content-main ul,
.blog-content-main ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.blog-content-main li {
    margin-bottom: 0.7rem;
    padding-left: 0.5rem;
}

.blog-content-main blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 1.35rem 1.5rem;
    background-color: var(--color-section-bg);
    font-style: italic;
    font-size: 1.1rem;
    margin: 2.2rem 0;
    font-family: var(--font-serif);
    color: var(--color-text-dim);
}

.blog-post-shell-wrap {
    background: var(--color-bg);
}

.page-header-editorial {
    padding-top: 3rem;
    padding-bottom: 2.4rem;
}

.blog-post-hero-shell {
    max-width: 940px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    padding: clamp(1.1rem, 2vw, 1.6rem);
    text-align: center;
}

.page-header-editorial.has-hero-image {
    background-image: none !important;
}

.page-header-editorial.has-hero-image .blog-post-hero-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 241, 0.96) 100%);
}

.page-header-editorial .page-title {
    margin: 0.65rem auto 0.85rem;
    max-width: 24ch;
    font-size: clamp(2rem, 4.2vw, 3rem);
    text-align: center;
    text-wrap: balance;
}

.page-header-editorial .page-subtitle {
    margin: 0 auto;
    max-width: 50ch;
    line-height: 1.52;
    font-size: 1.05rem;
    color: var(--color-text-dim);
    text-align: center;
    text-wrap: balance;
}

.page-header-editorial .blog-category {
    display: block;
    text-align: center;
}

.post-meta-row {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.post-meta-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.38rem 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    background: var(--color-section-bg);
}

.blog-content-shell {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    padding: clamp(1.2rem, 2vw, 2rem);
}

.blog-post-related {
    margin-top: 1.6rem;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    padding: 1.3rem 1.25rem;
}

.blog-related-title {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.blog-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-related-list li {
    margin-bottom: 0.7rem;
}

.blog-related-list li:last-child {
    margin-bottom: 0;
}

.blog-related-list a {
    display: block;
    min-height: 0;
    border: 1px solid var(--color-border);
    background: var(--color-section-bg);
    border-radius: 8px;
    padding: 0.65rem 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.blog-related-list a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.blog-related-cta {
    margin-top: 1.2rem;
}

.blog-skeleton-line {
    height: 0.95rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 35, 56, 0.08) 0%, rgba(20, 35, 56, 0.18) 50%, rgba(20, 35, 56, 0.08) 100%);
    background-size: 220% 100%;
    animation: blogSkeleton 1.2s ease-in-out infinite;
    margin: 0 0 1rem;
}

.blog-skeleton-line.short {
    width: 62%;
}

.blog-skeleton-line.medium {
    width: 76%;
}

.blog-content-shell:not(.is-loading) .blog-skeleton-line {
    display: none;
}

.blog-content-shell.is-loading > .blog-content-main > :not(.blog-skeleton-line) {
    display: none;
}

.blog-post-hero-shell.is-loading .page-title,
.blog-post-hero-shell.is-loading .page-subtitle,
.blog-post-hero-shell.is-loading .post-meta-chip {
    opacity: 0.62;
}

@keyframes blogSkeleton {
    0% {
        background-position: 180% 0;
    }

    100% {
        background-position: -40% 0;
    }
}

/* Page Header with Hero Image */
.page-header.has-hero-image {
    padding: 3.5rem 0 2.5rem;
    /* Increased roughly 30% */
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    background-color: white;
}

/* Keep blog post hero section tighter than generic inner-page hero image blocks */
.page-header-editorial.has-hero-image {
    padding: 2.6rem 0 2rem;
}

.page-header.has-hero-image .hero-title {
    font-size: 2.25rem;
    /* Increased from 1.75rem */
    margin: 0.75rem 0 1rem;
}

.page-header.has-hero-image .page-subtitle {
    color: var(--color-text-dim);
    font-size: 1.2rem;
    /* Increased from 1rem */
    line-height: 1.5;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Keep blog post hero subtitle aligned to editorial shell width */
.page-header-editorial.has-hero-image .page-subtitle {
    max-width: 50ch;
    font-size: 1.05rem;
    line-height: 1.52;
    text-align: center;
}

.page-header.has-hero-image .blog-category {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

/* Prevent generic hero-image margins from left-shifting blog post titles */
.page-header-editorial.has-hero-image .page-title {
    display: block;
    margin: 0.55rem auto 0.7rem;
    text-align: center;
}

.recent-posts-list li {
    margin-bottom: 1rem;
    font-weight: 600;
}

.recent-posts-list a:hover {
    color: var(--color-accent);
}

.blog-content-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
}

.blog-content-main th,
.blog-content-main td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.blog-content-main th {
    background-color: var(--color-section-bg);
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Provider Resource Specific Styles */
.vertical-resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    /* Centering the boxes */
}

.resource-card-long {
    width: 100%;
    padding: 0;
}

.resource-card-long .blog-content {
    padding: 15px 2rem;
    /* Smaller padding */
    text-align: left;
    /* Left align text */
}

/* Tighten internal spacing for the slim look */
.resource-card-long .blog-date {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.resource-card-long .blog-title {
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    /* Smaller font size */
}

.resource-card-long .blog-excerpt {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.resource-card-long .blog-link {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

/* Facility Resource Specific Styles */
.facility-resource-card {
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.facility-resource-card .blog-content {
    padding: 1.6rem 1.65rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.facility-resource-card:hover {
    border-color: var(--color-accent) !important;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.1);
}

.facility-resources-intro {
    margin-bottom: 2.2rem;
}

.facility-resources-intro .section-subtitle {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.facility-resources-view-all {
    margin-top: 0.9rem;
}

.facility-resource-group {
    margin-bottom: 2.7rem;
}

.facility-resource-group:last-child {
    margin-bottom: 0;
}

.facility-resource-group-title {
    margin: 0 auto 1rem;
    max-width: 1136px;
    width: 100%;
    font-family: var(--font-serif);
    font-size: 2.28rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
}

.facility-resource-grid {
    gap: 1.35rem;
}

.blog-grid.grid-3.facility-resource-grid {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
}

.facility-resource-head {
    display: flex;
    align-items: center;
    min-height: 52px;
    margin-bottom: 0.75rem;
}

.facility-resource-icon {
    width: 45px;
    height: 45px;
    opacity: 0.9;
    flex: 0 0 auto;
}

.facility-resource-card .blog-title {
    font-size: 1.16rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.facility-resource-card .blog-excerpt {
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 1.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.facility-resource-card .blog-link {
    font-size: 0.79rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: auto;
}

@media (min-width: 769px) {
    .facility-resource-card {
        aspect-ratio: 1 / 1;
    }
}

.comprehensive-solutions .facility-solutions-grid {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 1.1rem;
}

.comprehensive-solutions .facility-solutions-grid .benefit-item {
    aspect-ratio: auto;
    padding: 1.2rem;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.comprehensive-solutions .facility-solutions-grid .benefit-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
}

.comprehensive-solutions .facility-solutions-grid .benefit-icon img {
    width: 40px !important;
    height: 40px !important;
}

.comprehensive-solutions .facility-solutions-grid .benefit-title {
    margin-bottom: 0.85rem;
}

.comprehensive-solutions .facility-solutions-grid .benefit-desc {
    max-width: none;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .comprehensive-solutions .facility-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-links > li {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--color-section-bg);
        margin-top: 0.5rem;
        display: none;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
        transform: none;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block;
        transform: none;
    }

    .logo a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .nav-links a,
    .dropdown-menu a,
    .footer-links-col a,
    .footer-bottom a,
    .blog-link,
    .recent-posts-list a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        min-width: 44px;
    }

    .nav-links a {
        padding: 0.4rem 0;
    }

    .nav-item-dropdown .dropdown-trigger {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .dropdown-menu a {
        width: 100%;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .page-num {
        width: 44px;
        height: 44px;
    }

    .header-actions {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-grid,
    .trust-grid,
    .solutions-grid,
    .footer-grid,
    .benefits-grid,
    .benefits-grid.grid-4,
    .content-split,
    .form-row,
    .team-grid,
    .blog-grid,
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        height: 400px;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .hero-main-img {
        height: 100%;
    }

    .trust-grid {
        flex-direction: column;
        gap: 1.1rem;
    }

    .trust-bar {
        padding: 30px 0;
    }

    .trust-item {
        min-height: 96px;
        padding: 0.15rem 0.35rem;
    }

    .trust-bar .stat-num {
        margin-bottom: 0.22rem;
        line-height: 1.08;
    }

    .stat-label {
        line-height: 1.34;
        max-width: 30ch;
    }

    .content-split.reverse {
        direction: ltr;
    }
}

/* Reusable Components & Feature Classes */
.featured-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

#featured-jobs-container,
#featured-app-jobs-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.featured-jobs-grid > * {
    width: 100%;
}

.job-card-static {
    background: white;
    border: 1px solid var(--color-border);
    padding: 2rem;
    /* Reduced from 2.5rem */
    border-radius: 4px;
    transition: var(--transition-base);
}

.job-card-static:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--color-accent);
}

.job-card-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-accent);
}

.job-card-title {
    font-size: 1.4rem;
    margin: 0.75rem 0 0.5rem;
}

.job-card-meta {
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.75rem;
    line-height: 1.6;
}

/* Match provider testimonial typography across Physician + APP pages to client testimonials */
[data-testid="homepage-testimonials"] .testimonial-text,
[data-testid="app-testimonials"] .testimonial-text {
    font-size: 1.18rem;
    line-height: 1.75;
}

.testimonial-author {
    margin-top: 2.5rem;
}

.testimonial-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
}

.homepage-testimonial-carousel .testimonial-slide {
    display: none;
}

.homepage-testimonial-carousel .testimonial-slide.is-active {
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.is-active {
    background: var(--color-accent);
}

.testimonial-dot:hover {
    transform: scale(1.08);
}

.partners-section {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding-top: 56px;
    padding-bottom: 56px;
}

.partners-section .partners-heading {
    margin-bottom: 1.8rem;
}

.partners-logo-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.partners-logo-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.95rem 1rem;
    align-items: center;
    justify-items: center;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 83px;
    padding: 0.45rem 0.5rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border-radius: 10px;
}

.partner-logo {
    width: 100%;
    max-width: 182px;
    max-height: 58px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: filter 0.28s ease;
}

.partner-logo-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner-logo-item:hover .partner-logo {
    filter: saturate(1.06) contrast(1.03);
}

/* Provider history page */
.locums-history-container {
    max-width: 1040px;
}

.locums-history-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 2.25rem;
    align-items: start;
}

.locums-history-layout.locums-history-layout-single {
    grid-template-columns: 1fr;
    gap: 0;
}

.locums-history-block {
    color: var(--color-text);
}

.locums-history-block p {
    margin: 0 0 1.05rem;
    font-size: 1.03rem;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
}

.locums-history-subhead {
    margin: 0 0 0.85rem;
    font-family: var(--font-serif);
    font-size: 1.28rem;
    color: var(--color-text);
}

.locums-history-block-full {
    grid-column: 1 / -1;
}

.locums-history-close {
    margin-bottom: 0;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .partner-logo-item,
    .partner-logo {
        transition: none;
    }

    .partner-logo-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Animations */
[data-reveal] {
    opacity: 1;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Our Story Lightbulb Animation */
@keyframes bulb-glow {
    0% {
        filter: brightness(1) drop-shadow(0 0 0 rgba(255, 215, 0, 0));
        transform: scale(1);
    }

    100% {
        filter: brightness(1.15) drop-shadow(0 0 25px rgba(255, 190, 0, 0.6));
        transform: scale(1.02);
    }
}

@keyframes container-lift-glow {
    0% {
        box-shadow: 0 0 0 rgba(183, 121, 31, 0);
        border-color: transparent;
        transform: translateY(0);
    }

    100% {
        box-shadow: 0 10px 40px rgba(183, 121, 31, 0.3);
        border-color: var(--color-accent);
        transform: translateY(-5px);
        background-color: #fffcf5;
        /* Very subtle warm tint */
    }
}

/* Bulb Animation Class - Automatic when revealed */
.story-bulb-img {
    transition: all 1.5s ease-out;
}

[data-reveal].revealed .story-bulb-img {
    animation: bulb-glow 3s ease-in-out forwards;
    animation-delay: 0.5s;
    /* Wait slightly for the scroll reveal to start */
}

/* Container Animation Class - Automatic when revealed */
.story-glow-container {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 1.5s ease-out;
}

[data-reveal].revealed.story-glow-container {
    animation: container-lift-glow 3s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes contact-container-lift-glow-subtle {
    0% {
        box-shadow: 0 10px 30px rgba(183, 121, 31, 0.18);
        border-color: rgba(183, 121, 31, 0.55);
        transform: translateY(0);
        background-color: #fff;
    }

    100% {
        box-shadow: 0 14px 38px rgba(183, 121, 31, 0.28);
        border-color: rgba(183, 121, 31, 0.75);
        transform: translateY(-4px);
        background-color: #fff;
    }
}

.content-split.contact-form-shell.contact-glow-container {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(183, 121, 31, 0.55);
    box-shadow: 0 10px 30px rgba(183, 121, 31, 0.18);
    transition: all 1.2s ease-out;
}

[data-reveal].revealed.content-split.contact-form-shell.contact-glow-container {
    animation: contact-container-lift-glow-subtle 2s ease-in-out forwards;
    animation-delay: 0.25s;
}

/* Specialties We Serve - Floating Bubbles */
.specialties-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

#specialties .section-heading {
    margin-bottom: 2.35rem;
}

#specialties .specialties-container {
    padding-top: 0.6rem;
}

.specialty-bubble {
    background: white;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 500;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    position: relative;
    z-index: 1;
}

.specialty-bubble:hover {
    transform: scale(1.1) translateY(-5px) !important;
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(183, 121, 31, 0.3);
    z-index: 10;
}

/* Mobile Utilities */
.mobile-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-mobile-3);
}

.mobile-scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-card-compact {
    padding: 1rem;
    border-radius: 8px;
}

.mobile-fullbleed-safe {
    width: 100%;
    max-width: 100%;
}

.nav-overlay {
    position: fixed;
    inset: 80px 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

body.job-modal-open {
    overflow: hidden;
}

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-pair {
    gap: 1rem;
}

.btn-pair .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    width: 260px;
    text-align: center;
}

.locums-final-cta-row .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    min-height: 52px;
    text-align: center;
    white-space: nowrap;
}

.hero-btns.btn-pair .btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

a,
button,
input,
select,
textarea {
    touch-action: manipulation;
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Jobs page mobile patterns */
.jobs-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jobs-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.jobs-filter-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.jobs-filter-control {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--color-text);
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.jobs-filter-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(183, 121, 31, 0.14);
}

.jobs-filter-select {
    padding-right: 2.45rem;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-text-dim) 50%),
        linear-gradient(135deg, var(--color-text-dim) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.jobs-filter-btn {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.95rem;
    border-radius: 6px;
    text-align: center;
}

/* Prevent iOS Safari auto-zoom on form focus */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group select,
    .form-group textarea,
    .jobs-filter-control,
    .newsletter-inline .newsletter-input {
        font-size: 16px;
    }
}

.jobs-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.jobs-filter-toggle {
    display: none;
    margin-bottom: 1rem;
    width: 100%;
}

.jobs-sidebar {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}

.jobs-main {
    flex: 3;
    min-width: 300px;
}

.job-card {
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.job-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    pointer-events: none;
}

.job-card-main {
    flex: 1;
    min-width: 0;
}

.job-card-meta-row {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
    flex-wrap: wrap;
}

.job-card-meta-row span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.job-card-actions {
    text-align: right;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-left: 1px solid var(--color-border);
    padding-left: 1.5rem;
}

.job-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.job-pagination button {
    padding: 0.55rem 0.95rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-weight: 500;
}

.job-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.job-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.job-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 32, 44, 0.16);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    z-index: 3;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.job-modal-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
    background: #ffffff;
}

.job-modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4.2rem 3rem 3rem;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

.job-modal-details {
    flex: 2;
    min-width: 300px;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-sizing: border-box;
}

.job-modal-form-wrap {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    height: fit-content;
    text-align: left;
    box-sizing: border-box;
}

.job-overview-public-description,
.job-overview-public-description * {
    font-family: var(--font-sans) !important;
}

.job-overview-public-description h1,
.job-overview-public-description h2,
.job-overview-public-description h3,
.job-overview-public-description h4,
.job-overview-public-description h5,
.job-overview-public-description h6 {
    font-size: 1rem !important;
    font-weight: 600;
    margin: 0 0 0.6rem;
    line-height: 1.5;
}

.job-overview-public-description p,
.job-overview-public-description li {
    margin: 0 0 0.5rem;
    line-height: 1.7;
}

/* Adaptive breakpoints */
@media (max-width: 1024px) {
    .container,
    .container-wide {
        padding: 0 1.25rem;
    }

    .section-padding {
        padding: 64px 0;
    }

    .partners-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .partners-logo-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem 0.9rem;
    }

    .partner-logo-item {
        min-height: 76px;
    }

    .partner-logo {
        max-width: 168px;
        max-height: 53px;
    }

    .locums-history-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .locums-history-block-full {
        grid-column: auto;
    }

    .about-story-section .about-story-split {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        padding: 1rem 0;
    }

    .about-story-section .about-story-image {
        order: 1;
    }

    .about-story-section .about-story-text {
        order: 2;
        max-width: 100%;
    }

    .about-story-section .about-story-image img {
        height: clamp(270px, 43vw, 378px);
        border-radius: 0;
        box-shadow: 13px 13px 0 var(--color-section-bg);
    }

    .hero-title {
        font-size: var(--type-fluid-display);
    }

    .stat-num.stat-num-word {
        font-size: 1.48rem;
    }

    .stat-label {
        font-size: 0.92rem;
        max-width: 34ch;
    }

    .section-title {
        font-size: var(--type-fluid-title);
    }

    .advantage-copy h2 {
        font-size: var(--type-fluid-title);
    }

    .locums-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-check-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advantage-panel-row {
        grid-template-columns: 1fr;
    }

    .case-studies-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0.5rem;
    }

    .real-world-coverage-section .case-study-card {
        aspect-ratio: auto;
        padding: 2.25rem;
    }

    .hero-description {
        font-size: var(--type-fluid-body);
    }

    .hero-description-slope {
        max-width: 38.4ch;
        line-height: 1.47;
    }

    .hero-description-slope::after {
        width: 4.6ch;
        height: 4.2em;
    }

    .provider-hero-description {
        max-width: 680px;
        font-size: 1.24rem;
        line-height: 1.5;
    }

    .page-header-editorial {
        padding-top: 2.3rem;
        padding-bottom: 2rem;
    }

    .blog-post-hero-shell {
        padding: 1.05rem 1rem;
    }

    .blog-content-shell {
        padding: 1.15rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links > li {
        display: block;
        width: 100%;
    }

    .nav-links > li > a {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .header-actions {
        display: none;
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-item-dropdown .dropdown-trigger {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .nav-links,
    .nav-links li,
    .nav-links a,
    .dropdown-menu a {
        text-align: left !important;
    }

    .nav-links a,
    .dropdown-menu a,
    .nav-item-dropdown .dropdown-trigger {
        justify-content: flex-start !important;
    }

    .dropdown-menu {
        position: static;
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--color-section-bg);
        margin-top: 0.5rem;
        display: none;
        border-radius: 8px;
        width: 100%;
        min-width: 0;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block;
        transform: none;
    }

    .hero-grid,
    .solutions-grid,
    .benefits-grid,
    .benefits-grid.grid-4,
    .content-split,
    .form-row,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-grid,
    .blog-grid.grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .referral-trust-inner {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .referral-logo-lockup {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 0.85rem;
    }

    .referral-trust-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .referral-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .desktop-line-break {
        display: none;
    }

    .home-physician-led-line {
        white-space: normal;
    }

    .facilities-benefits-grid .benefit-item {
        min-height: 0;
    }

    .facility-resource-group-title {
        font-size: 2.07rem;
    }

    .facility-resource-icon {
        width: 42px;
        height: 42px;
    }

    .hero-image-wrapper {
        order: 2;
        height: 320px;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .hero-text {
        order: 1;
    }
    .featured-jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
        justify-content: center;
    }

    #featured-jobs-container,
    #featured-app-jobs-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .job-card-actions {
        border-left: 0;
        border-top: 1px solid var(--color-border);
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
        align-items: stretch;
    }
}

@media (min-width: 1025px) {
    .home-physician-led-line {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 51px 0;
    }

    .partners-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .partners-logo-panel {
        padding: 0;
    }

    .partners-logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .partner-logo-item {
        min-height: 71px;
    }

    .partner-logo {
        max-width: 170px;
        max-height: 53px;
    }

    .about-story-section .story-glow-container {
        padding: 1rem;
        border: 1px solid rgba(183, 121, 31, 0.28);
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
        transform: none;
        animation: none;
    }

    .about-story-section [data-reveal].revealed.story-glow-container {
        animation: none !important;
        transform: none !important;
    }

    .about-story-section .about-story-split {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .about-story-section .about-story-image img {
        height: clamp(216px, 52vw, 288px);
        border-radius: 0;
        box-shadow: 9px 9px 0 var(--color-section-bg);
    }

    .about-story-section .about-story-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.72rem;
    }

    .content-split.contact-form-shell.contact-glow-container {
        padding: 1rem;
    }

    .provider-hero-description {
        max-width: 620px;
        font-size: 1.12rem;
        line-height: 1.45;
    }

    .hero-inner {
        padding: 45px 0 35px;
    }

    .hero-description-slope {
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-description-slope::after {
        display: none;
    }

    .hero-inner .hero-title {
        font-size: clamp(1.9rem, 7.1vw, 2.6rem);
    }

    .hero-editorial .text-accent.text-serif.italic[style*="font-size: 2rem"] {
        font-size: clamp(1.35rem, 5.4vw, 1.75rem) !important;
    }

    .hero-title-narrow {
        max-width: 100%;
        margin: 1rem auto 1.1rem;
    }

    .hero-description-centered {
        margin: 0 auto 2rem;
    }

    .page-header-editorial .page-title {
        font-size: clamp(1.7rem, 7.2vw, 2.25rem);
        max-width: 23ch;
    }

    .page-header-editorial .page-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        max-width: 34ch;
    }

    .page-header-editorial.has-hero-image .page-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        max-width: 34ch;
    }

    .post-meta-row {
        gap: 0.4rem;
    }

    .post-meta-chip {
        font-size: 0.72rem;
    }

    .stat-num.stat-num-word {
        font-size: 1.36rem;
    }

    .stat-label {
        font-size: 0.92rem;
        line-height: 1.32;
        max-width: 31ch;
    }

    .trust-item {
        min-height: 0;
        padding-top: 0.05rem;
        padding-bottom: 0.05rem;
    }

    .trust-grid {
        gap: 0.82rem;
    }

    .trust-bar {
        padding: 24px 0;
    }

    .trust-bar .stat-num {
        margin: 0 0 0.16rem;
        line-height: 1.05;
    }

    .trust-bar:not(.physician-stats-trust) {
        padding: 16px 0;
    }

    .trust-bar:not(.physician-stats-trust) .trust-grid {
        gap: 0.45rem;
    }

    .trust-bar:not(.physician-stats-trust) .trust-item {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .trust-bar:not(.physician-stats-trust) .stat-num.stat-num-word {
        margin: 0 0 0.22rem;
        line-height: 1.14;
    }

    .trust-bar:not(.physician-stats-trust) .stat-label {
        line-height: 1.28;
        max-width: 30ch;
        margin: 0 auto;
    }

    .physician-stats-trust {
        padding: 16px 0;
    }

    .physician-stats-trust .trust-grid {
        gap: 0.35rem;
    }

    .physician-stats-trust .trust-item {
        padding-top: 0;
        padding-bottom: 0;
        min-height: 0;
    }

    .physician-stats-trust .stat-num {
        font-size: clamp(1.75rem, 7.2vw, 2.05rem);
        margin: 0 0 0.08rem;
        line-height: 1.02;
    }

    .physician-stats-trust .stat-label {
        font-size: 0.86rem;
        line-height: 1.2;
        max-width: 20ch;
        margin: 0;
    }

    .blog-post-related {
        padding: 1rem 0.95rem;
    }

    .blog-content-main {
        font-size: 1rem;
        line-height: 1.68;
    }

    .blog-content-main h2 {
        font-size: 1.55rem;
        margin: 2rem 0 0.8rem;
    }

    .blog-content-main h3 {
        font-size: 1.28rem;
        margin: 1.55rem 0 0.75rem;
    }

    .locums-history-block p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .locums-history-subhead {
        font-size: 1.16rem;
    }

.concord-difference-copy p,
.concord-advantage-copy p,
.app-concord-difference-copy p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .locums-benefits {
        grid-template-columns: 1fr;
    }

    .case-studies-row {
        grid-template-columns: 1fr;
    }

    .real-world-coverage-section .case-study-card {
        padding: 1.75rem;
    }

    .facility-testimonials-section .testimonial-section {
        padding: 0;
    }

    .facility-testimonials-section .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.68;
    }

    .facility-testimonial-org {
        font-size: 1.08rem;
    }

    .hero-btns,
    .cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-btns .btn,
    .cta-row .btn {
        width: 100%;
        text-align: center;
        min-width: 0;
    }

    .btn-fixed-240 {
        max-width: 100%;
        width: 100%;
        white-space: normal;
        padding: 0.85rem 1rem;
    }

    .locums-final-cta-row .btn {
        width: 100%;
        min-height: 48px;
        white-space: nowrap;
    }

    #featured-jobs-container,
    #featured-app-jobs-container {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .blog-grid.grid-3 {
        grid-template-columns: 1fr;
    }

    .referral-shell {
        padding: 1rem;
    }

    .referral-form-wrap {
        padding: 1rem;
    }

    .referral-column {
        padding: 0.85rem;
    }

    .referral-column .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .referral-trust-list {
        grid-template-columns: 1fr;
    }

    .comprehensive-solutions .facility-solutions-grid .benefit-item {
        aspect-ratio: auto;
        min-height: auto;
        padding: 1.25rem;
    }

    .comprehensive-solutions .facility-solutions-grid {
        grid-template-columns: 1fr;
    }

    .facility-resource-group {
        margin-bottom: 2.2rem;
    }

    .facility-resource-group-title {
        font-size: 1.875rem;
        margin-bottom: 0.85rem;
    }

    .facility-resource-head {
        min-height: 46px;
        margin-bottom: 0.65rem;
    }

    .facility-resource-icon {
        width: 39px;
        height: 39px;
    }

    .team-bio-overlay {
        width: 100%;
        justify-self: stretch;
        padding: 1rem;
        max-height: min(70vh, 660px);
    }

    .team-bio-overlay-content {
        grid-template-columns: 1fr;
        row-gap: 0.7rem;
    }

    .team-bio-overlay h4,
    .team-bio-overlay p {
        grid-column: 1;
    }

    .team-bio-overlay .team-bio-photo {
        max-width: 140px;
        margin: 0 auto 0.15rem;
        grid-column: 1;
        grid-row: auto;
    }

    .jobs-filter-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .jobs-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .jobs-sidebar,
    .jobs-main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    [style*="min-width: 300px"],
    [style*="min-width: 250px"],
    [style*="min-width: 240px"],
    [style*="minmax(400px, 1fr)"] {
        min-width: 0 !important;
        width: 100% !important;
    }

    .jobs-sidebar {
        position: static;
        padding: 1.25rem;
        display: none;
    }

    .jobs-sidebar.active {
        display: block;
    }

    .job-card {
        padding: 1.2rem;
    }

    .job-card-row {
        gap: 1rem;
    }

    .job-card-title {
        font-size: 1.1rem;
    }

    .job-card-meta-row {
        flex-direction: column;
        gap: 0.65rem;
    }

    .job-modal {
        align-items: flex-end;
        padding: 0;
    }

    .job-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 14px 14px 0 0;
    }

    .job-modal-close {
        position: sticky;
        top: 0.6rem;
        right: 0.5rem;
        margin-left: auto;
        z-index: 2;
    }

    .job-modal-body {
        padding: 2.6rem 1rem 1.25rem;
        gap: 1rem;
        flex-direction: column;
    }

    .job-modal-details,
    .job-modal-form-wrap {
        min-width: 0;
        width: 100%;
    }

    .job-modal-form-wrap {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .jobs-filter-btn,
    .job-pagination button {
        min-height: 44px;
    }

    .jobs-filter-btn {
        white-space: normal;
    }

    .blog-content-main {
        font-size: 1.03rem;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .blog-content-main h2 {
        font-size: 1.6rem;
        margin: 2.5rem 0 1rem;
    }

    .blog-content-main h3 {
        font-size: 1.3rem;
        margin: 2rem 0 0.9rem;
    }

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

    .blog-content-main a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    iframe {
        max-width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .clean-form input,
    .clean-form select,
    .clean-form textarea,
    .btn,
    .mobile-menu-toggle {
        min-height: 44px;
    }

    /* Guardrails for inline desktop-only styles that can break mobile */
    [style*="white-space: nowrap"] {
        white-space: normal !important;
    }

    [style*="max-width: 240px"] {
        max-width: 100% !important;
        width: 100% !important;
    }

    [style*="margin-top: 5rem"] {
        margin-top: 0 !important;
    }

    [style*="padding-right: 3rem"] {
        padding-right: 0 !important;
        padding-top: 0 !important;
    }

    [style*="position: absolute; top: 40px; right: 0; bottom: 0; left: 40px"] {
        display: none !important;
    }

    [style*="border-top: 2px solid var(--color-accent); border-right: 2px solid var(--color-accent)"] {
        display: none !important;
    }

    /* Page-specific mobile refinements */
    .partnership-hero-title {
        white-space: normal !important;
    }

    .facility-resource-card .blog-content {
        padding: 1.2rem 1.1rem 1.15rem;
    }

    .facility-resource-card .blog-excerpt {
        -webkit-line-clamp: 6;
    }

    .success-story-right {
        padding: 1.2rem;
    }

    .success-story-title {
        font-size: clamp(1.2rem, 6vw, 1.55rem);
    }

    .policy-shell p,
    .policy-shell li {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.85rem 1.1rem;
        font-size: 0.92rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .trust-bar:not(.physician-stats-trust) .stat-num.stat-num-word {
        font-size: 1.24rem;
    }

    .physician-stats-trust .stat-num {
        font-size: clamp(1.6rem, 7.8vw, 1.9rem);
    }

    .homepage-testimonial-carousel .testimonial-text {
        font-size: 1.25rem;
    }

    [data-testid="homepage-testimonials"] .testimonial-text,
    [data-testid="app-testimonials"] .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.68;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .specialty-bubble:hover,
    .solution-card:hover,
    .job-card-static:hover,
    .blog-card:hover {
        transform: none !important;
    }

    .bio-flip-card,
    .team-bio-overlay,
    .team-card:hover .bio-flip-card,
    .team-card.is-open .bio-flip-card {
        transition: none !important;
    }

    .bio-flip-card {
        transform: none !important;
    }

    .team-bio-overlay {
        transform: none !important;
    }
}


