:root {
    --ink: #182232;
    --muted: #647084;
    --line: #d8e0ea;
    --paper: #ffffff;
    --wash: #f5f8fb;
    --primary: #12606f;
    --primary-dark: #0b4450;
    --accent: #b87d1d;
    --success: #236a4d;
}

* {
    box-sizing: border-box;
}

body {
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-top: 82px;
}

a {
    color: var(--primary);
}

.site-navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand-logo,
.brand-fallback {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
}

.brand-fallback {
    display: inline-grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.76rem;
}

.navbar-nav .nav-link {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    padding-inline: 0.6rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.admin-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.home-hero {
    padding: 5.5rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.86)),
        url("../img/hero.JPG") center/cover no-repeat;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
}

h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 750;
}

h3 {
    font-size: 1.12rem;
    font-weight: 750;
}

.hero-subtitle {
    font-size: 1.22rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-copy,
.lead {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 780px;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.btn {
    border-radius: 8px;
    font-weight: 700;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.doctor-visual {
    width: min(100%, 390px);
    aspect-ratio: 4 / 5;
    margin-inline: auto;
    border-radius: 8px;
    overflow: hidden;
    background: var(--wash);
    border: 1px solid var(--line);
}

.doctor-visual img,
.doctor-placeholder {
    width: 100%;
    height: 100%;
}

.doctor-visual img {
    object-fit: cover;
}

.doctor-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #e8f3f5, #fff5e6);
}

.doctor-placeholder span {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 850;
    border: 1px solid var(--line);
}

.page-section,
.band {
    padding: 4.5rem 0;
}

.page-section.compact {
    padding: 3.5rem 0;
}

.band-light {
    background: var(--wash);
}

.narrow {
    max-width: 860px;
}

.section-heading {
    margin-bottom: 2rem;
}

.content-card {
    max-width: 960px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(36, 48, 67, 0.07);
}

.content-card h2 {
    margin-top: 1.35rem;
    font-size: 1.2rem;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    color: var(--muted);
    line-height: 1.75;
}

.compact-heading {
    margin-bottom: 1.3rem;
}

.content-body {
    color: #2f3948;
    font-size: 1.06rem;
    line-height: 1.75;
}

.info-panel,
.item-card,
.review-card,
.timeline-item,
.publication-item,
.review-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(24, 34, 50, 0.06);
}

.info-panel {
    padding: 1.45rem;
}

.panel-kicker,
.item-card span,
.publication-item span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.small-note,
.notice {
    color: var(--muted);
    margin-top: 1rem;
}

.status-available {
    border-color: rgba(35, 106, 77, 0.32);
}

.status-available h2 {
    color: var(--success);
}

.status-pending h2 {
    color: var(--accent);
}

.schedule-list {
    display: grid;
    gap: 0.65rem;
    margin: 1rem 0 0;
}

.schedule-list dt {
    color: var(--muted);
    font-weight: 700;
}

.schedule-list dd {
    margin: 0;
    font-weight: 700;
}

.item-card {
    padding: 1.25rem;
    position: relative;
}

.item-card h2,
.item-card h3 {
    font-size: 1.08rem;
    margin-top: 0.6rem;
}

.item-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 210px) minmax(180px, 240px) auto;
    gap: 1rem;
    align-items: end;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--wash);
    margin-bottom: 1.5rem;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

.publication-list {
    display: grid;
    gap: 1rem;
}

.publication-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1.25rem;
}

.publication-item h2 {
    font-size: 1.2rem;
    margin: 0.45rem 0;
}

.authors {
    font-weight: 700;
}

.publication-links {
    display: flex;
    gap: 0.5rem;
    align-items: start;
}

.publication-links a,
.resource-list a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-weight: 700;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.2rem;
    padding: 1.25rem;
    align-items: start;
}

.timeline-year {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 850;
}

.timeline-item img {
    width: 120px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.map-frame {
    min-height: 390px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
}

.review-form {
    padding: 1.25rem;
}

.review-stack {
    display: grid;
    gap: 1rem;
}

.review-card {
    padding: 1.1rem;
}

.stars {
    color: var(--accent);
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.empty-state {
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 1rem;
    background: var(--paper);
}

.resource-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer {
    padding: 1.4rem 0;
    color: #f6fafb;
    background: #182232;
}

.site-footer p {
    font-size: 0.95rem;
}

.footer-link {
    color: #fff3d7;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .admin-icon-link {
        margin-top: 0.4rem;
    }
}

@media (max-width: 991px) {
    .home-hero {
        padding-top: 4rem;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 76px;
    }

    .brand-text small {
        display: none;
    }

    .home-hero,
    .page-section,
    .band {
        padding: 3rem 0;
    }

    .filter-bar,
    .publication-item,
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .publication-links,
    .filter-actions {
        flex-wrap: wrap;
    }
}

/* Homepage refresh based on the provided medical layout reference. */
:root {
    --ink: #243043;
    --muted: #6f7f92;
    --line: #e3edf6;
    --paper: #ffffff;
    --wash: #f4fbff;
    --primary: #2aa8ef;
    --primary-dark: #147fc0;
    --accent: #24b7a1;
    --success: #1f9a70;
}

body {
    background: #f7fcff;
}

h1 {
    font-size: 3.45rem;
    line-height: 1.08;
}

h2 {
    font-size: 2rem;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(227, 237, 246, 0.78);
    box-shadow: 0 10px 30px rgba(36, 48, 67, 0.04);
}

.brand-logo,
.brand-fallback {
    width: 38px;
    height: 38px;
}

.brand-fallback {
    background: var(--primary);
}

.navbar-nav .nav-link {
    color: #6c7b90;
    font-size: 0.86rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.admin-icon-link {
    background: #eef8ff;
    border-color: #d5ecfb;
    color: var(--primary);
}

.home-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(560px, calc(100vh - 92px), 720px);
    padding: 0;
    background-color: #07111a;
    background-image:
        linear-gradient(90deg, #07111a 0%, #07111a 41%, rgba(7, 17, 26, 0.54) 55%, rgba(7, 17, 26, 0.08) 72%, rgba(7, 17, 26, 0.04) 100%),
        linear-gradient(0deg, rgba(7, 17, 26, 0.5), transparent 31%),
        url("../img/hero-cinematic.jpg");
    background-position: center, center, right center;
    background-repeat: no-repeat;
    background-size: cover, cover, auto 100%;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--line);
}

.home-hero .container {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 1.4rem;
    padding-top: 2.3rem;
    padding-bottom: 1.35rem;
}

.hero-content {
    position: relative;
    width: min(100%, 480px);
    justify-self: start;
    padding-left: 0;
    text-shadow: none;
}

.hero-content .eyebrow {
    display: inline-flex;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.82rem;
    color: #7fe8ff;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-hero h1 {
    max-width: 480px;
    color: #fff;
    font-size: clamp(2.35rem, 3.8vw, 4.05rem);
    font-weight: 760;
    line-height: 1.02;
    margin-bottom: 0.85rem;
}

.home-hero h1::after {
    content: "";
    display: inline-block;
    width: 0.18em;
    height: 0.18em;
    margin-left: 0.14em;
    background: #2ad4e8;
    vertical-align: baseline;
}

.eyebrow {
    color: var(--primary);
    letter-spacing: 0.08em;
}

.hero-subtitle {
    color: #7fe8ff;
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 0.68rem;
}

.hero-copy {
    max-width: 490px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.68;
}

.hero-search {
    width: min(100%, 590px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 52px;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem;
    margin-top: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(211, 231, 244, 0.95);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(27, 83, 116, 0.16);
    backdrop-filter: blur(12px);
}

.hero-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0.72rem 0.85rem;
    color: var(--ink);
    background: transparent;
}

.hero-search input::placeholder {
    color: #9badbd;
}

.hero-location {
    color: #5f6f82;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.65rem 0.85rem;
    border-left: 1px solid var(--line);
    white-space: nowrap;
}

.hero-search button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
}

.hero-actions {
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.hero-actions .btn {
    padding: 0.66rem 1.08rem;
    box-shadow: 0 16px 36px rgba(6, 12, 18, 0.28);
}

.home-hero .btn-primary {
    background: #28c3d7;
    border-color: #28c3d7;
    color: #06141b;
}

.hero-actions .btn-outline-primary {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.62);
}

.hero-schedule-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-self: end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-schedule-item {
    min-height: 76px;
    display: grid;
    align-content: center;
    gap: 0.18rem;
    padding: 0.2rem 1.25rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: none;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.hero-schedule-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-schedule-item:nth-child(2) {
    border-left-color: rgba(255, 255, 255, 0.22);
}

.hero-schedule-item:nth-child(3) {
    border-left-color: rgba(255, 255, 255, 0.22);
}

.hero-schedule-item span {
    color: #7fe8ff;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-schedule-item strong {
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.35;
}

.hero-schedule-item small {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 650;
    line-height: 1.45;
}

.hero-schedule-link:hover,
.hero-schedule-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 1.5rem;
    outline: 0;
}

.hero-schedule-link:first-child:hover,
.hero-schedule-link:first-child:focus-visible {
    padding-left: 0.25rem;
}

.hero-schedule-button {
    cursor: default;
}

.steps-section,
.services-section,
.highlights-section,
.resources-teaser,
.reviews-section {
    padding: 4.5rem 0;
    background: #fff;
}

.feature-section,
.resources-teaser,
.reviews-section {
    background: #f6fbff;
}

.section-heading {
    max-width: 680px;
    margin-inline: auto;
}

.section-heading p {
    color: var(--muted);
}

.step-card,
.service-card,
.highlight-card {
    height: 100%;
    padding: 1.45rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(36, 48, 67, 0.06);
}

.step-icon,
.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-weight: 850;
    background: #eaf7ff;
    border: 1px solid #d2ecfb;
    border-radius: 50%;
}

.step-card h3,
.service-card h3,
.highlight-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.step-card p,
.service-card p,
.highlight-card p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.feature-section {
    padding: 4.75rem 0;
}

.profile-visual {
    position: relative;
    width: min(100%, 390px);
    aspect-ratio: 1 / 1.05;
    display: grid;
    place-items: center;
    margin-inline: auto;
}

.profile-arc {
    position: absolute;
    inset: 14% 7% 6% 0;
    background: #cceeff;
    border-radius: 8px;
}

.profile-visual img,
.profile-visual .doctor-placeholder {
    position: relative;
    width: 82%;
    height: 88%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(36, 48, 67, 0.1);
}

.profile-visual img {
    object-fit: cover;
    object-position: 42% center;
}

.profile-card {
    position: absolute;
    left: 0;
    bottom: 1.4rem;
    display: grid;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 35px rgba(42, 168, 239, 0.14);
}

.profile-card strong {
    font-size: 0.94rem;
}

.profile-card span {
    color: var(--muted);
    font-size: 0.82rem;
}

.check-list {
    display: grid;
    gap: 0.72rem;
    margin: 1.25rem 0 1.45rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.65rem;
    color: #4c5c70;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.services-section .service-card {
    min-height: 235px;
}

.services-section .col-xl-4:nth-child(2) .service-card {
    border-bottom: 5px solid var(--primary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.highlight-card {
    text-align: left;
}

.phone-mockup {
    width: min(100%, 270px);
    min-height: 420px;
    margin-inline: auto;
    padding: 2rem 1.2rem;
    background: #fff;
    border: 10px solid #e8f3fb;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(42, 168, 239, 0.18);
}

.phone-bar {
    width: 62px;
    height: 8px;
    margin: 0 auto 1.4rem;
    border-radius: 8px;
    background: #d3e7f5;
}

.phone-card {
    height: 92px;
    border-radius: 8px;
    background: var(--primary);
    margin-bottom: 1rem;
}

.phone-list,
.phone-list.short {
    height: 16px;
    border-radius: 8px;
    background: #e7f3fb;
    margin-bottom: 0.7rem;
}

.phone-list.short {
    width: 64%;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.phone-grid span {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: #eef8ff;
    border: 1px solid #d8edf9;
}

.item-card,
.review-card,
.info-panel,
.publication-item,
.timeline-item,
.review-form {
    border-color: var(--line);
    box-shadow: 0 20px 50px rgba(36, 48, 67, 0.06);
}

.reviews-section .review-card {
    background: #fff;
}

.home-cta {
    padding: 2.5rem 0 5rem;
    background: #f6fbff;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(42, 168, 239, 0.22);
}

.cta-panel .eyebrow,
.cta-panel p {
    color: #eaf7ff;
}

.cta-panel h2 {
    max-width: 620px;
}

.cta-badge {
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #fff;
    font-size: 2rem;
    font-weight: 850;
}

.visit-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(10, 53, 63, 0.92)),
        #07111a;
}

.visit-clinic-hero {
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(25, 83, 70, 0.9)),
        #07111a;
}

.visit-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.visit-detail-copy {
    max-width: 680px;
}

.visit-detail-hero .eyebrow {
    color: #7fe8ff;
}

.visit-detail-hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 4.5vw, 4.25rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.visit-detail-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.75;
}

.visit-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.visit-detail-hero .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.visit-detail-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.visit-detail-photo {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.visit-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
}

.visit-info-section {
    padding: 4.2rem 0;
    background: #f6fbff;
}

.visit-info-card {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 2rem;
    padding: 1.45rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.07);
}

.visit-info-card h2 {
    margin-bottom: 0.7rem;
}

.visit-info-card p {
    color: var(--muted);
    line-height: 1.7;
}

.visit-info-card dl {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 0.75rem 1rem;
    margin: 0;
}

.visit-info-card dt {
    color: var(--primary);
    font-weight: 850;
}

.visit-info-card dd {
    color: #304057;
    margin: 0;
}

.visit-info-card a {
    color: var(--primary);
    font-weight: 750;
}

.leadership-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(10, 53, 63, 0.93) 58%, rgba(35, 106, 77, 0.84)),
        #07111a;
}

.leadership-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 2.7rem;
    align-items: center;
}

.leadership-hero-copy {
    max-width: 700px;
}

.leadership-hero .eyebrow,
.leadership-dark-section .eyebrow,
.leadership-awards-section .eyebrow {
    color: #7fe8ff;
}

.leadership-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.7vw, 4.7rem);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.leadership-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.leadership-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.leadership-hero .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.leadership-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.leadership-hero-photo {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.leadership-hero-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
}

.leadership-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(7, 17, 26, 0.86));
}

.leadership-hero-photo figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.2rem;
    max-width: 450px;
    padding: 0.9rem 1rem;
    background: rgba(7, 17, 26, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.leadership-hero-photo figcaption span,
.leadership-snapshot-grid > article > span,
.leadership-office-org,
.leadership-period,
.leadership-membership-list span,
.leadership-conference-grid span,
.leadership-academic-grid span,
.leadership-award-grid span {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leadership-hero-photo figcaption span,
.leadership-snapshot-grid > article > span,
.leadership-office-org,
.leadership-period,
.leadership-conference-grid span,
.leadership-academic-grid span {
    color: #7fe8ff;
}

.leadership-hero-photo figcaption strong {
    color: #fff;
    line-height: 1.35;
}

.leadership-snapshot-band {
    padding: 1.15rem 0;
    background: #07111a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.leadership-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.leadership-snapshot-grid article {
    position: relative;
    display: grid;
    gap: 0.48rem;
    min-height: 184px;
    align-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    overflow: hidden;
}

.leadership-snapshot-grid article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #28c3d7;
}

.leadership-snapshot-grid article.org-rssdi::before {
    background: #8b1f20;
}

.leadership-snapshot-grid article.org-api::before {
    background: #d43828;
}

.leadership-snapshot-grid article.org-ccdsi::before {
    background: #1f66a6;
}

.leadership-snapshot-grid article.org-icp::before {
    background: #1f82d1;
}

.leadership-snapshot-grid span,
.leadership-snapshot-grid strong {
    max-width: 100%;
}

.leadership-snapshot-grid span {
    align-self: center;
}

.leadership-snapshot-grid strong {
    color: #fff;
    line-height: 1.35;
    align-self: start;
}

.leadership-logo-frame,
.leadership-office-logo {
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.leadership-logo-frame {
    width: 88px;
    height: 88px;
    padding: 0.55rem;
    border-radius: 18px;
}

.leadership-logo-frame img,
.leadership-office-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leadership-logo-card.org-rssdi .leadership-logo-frame,
.leadership-office-logo.org-rssdi {
    background: #fff8f8;
}

.leadership-logo-card.org-api .leadership-logo-frame,
.leadership-office-logo.org-api {
    background: #fff9ec;
}

.leadership-logo-card.org-ccdsi .leadership-logo-frame,
.leadership-office-logo.org-ccdsi {
    background: #f6fbff;
}

.leadership-logo-card.org-icp .leadership-logo-frame,
.leadership-office-logo.org-icp {
    background: #f2f8ff;
}

.leadership-section,
.leadership-academic-section,
.leadership-community-section,
.leadership-awards-section {
    padding: 4.8rem 0;
}

.leadership-section,
.leadership-community-section {
    background: #fff;
}

.leadership-section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.leadership-section-heading h2 {
    max-width: 760px;
}

.leadership-office-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.leadership-office-timeline article,
.leadership-conference-grid article,
.leadership-academic-grid article {
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.leadership-office-timeline article {
    min-height: 285px;
    border-top: 4px solid #28c3d7;
}

.leadership-office-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.leadership-office-logo {
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    padding: 0.55rem;
    border-color: var(--line);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(36, 48, 67, 0.11);
}

.leadership-office-timeline article:nth-child(2) {
    border-top-color: #24b7a1;
}

.leadership-office-timeline article:nth-child(3) {
    border-top-color: #b87d1d;
}

.leadership-office-timeline article:nth-child(4) {
    border-top-color: #d75955;
}

.leadership-office-timeline article:nth-child(5) {
    border-top-color: #147fc0;
}

.leadership-office-org,
.leadership-period,
.leadership-conference-grid span,
.leadership-academic-grid span {
    display: inline-flex;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.leadership-office-timeline .leadership-period {
    margin-bottom: 0;
    color: var(--primary);
    text-align: right;
}

.leadership-office-timeline h3,
.leadership-conference-grid h3,
.leadership-academic-grid h3,
.leadership-award-grid h3 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.leadership-office-timeline p,
.leadership-conference-grid p,
.leadership-academic-grid p,
.leadership-community-layout li {
    color: var(--muted);
    line-height: 1.68;
}

.leadership-dark-section,
.leadership-awards-section {
    color: #fff;
    background:
        linear-gradient(110deg, rgba(7, 17, 26, 0.98), rgba(10, 53, 63, 0.94)),
        #07111a;
}

.leadership-two-column,
.leadership-community-layout,
.leadership-awards-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.leadership-two-column h2,
.leadership-awards-layout h2 {
    color: #fff;
}

.leadership-two-column p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.leadership-membership-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.leadership-membership-list span {
    display: inline-flex;
    max-width: 100%;
    padding: 0.68rem 0.8rem;
    color: #eafaff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    line-height: 1.4;
}

.leadership-conference-grid,
.leadership-academic-grid,
.leadership-award-grid {
    display: grid;
    gap: 1rem;
}

.leadership-conference-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leadership-conference-grid article {
    min-height: 205px;
}

.leadership-academic-section {
    background: #f6fbff;
    border-block: 1px solid var(--line);
}

.leadership-academic-section .leadership-two-column h2 {
    color: var(--ink);
}

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

.leadership-academic-grid article {
    min-height: 185px;
}

.leadership-academic-grid span {
    font-size: 1.35rem;
    color: var(--primary);
}

.leadership-community-layout {
    align-items: center;
}

.leadership-community-layout figure {
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(36, 48, 67, 0.1);
}

.leadership-community-layout img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.leadership-community-layout ul {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.leadership-community-layout li {
    position: relative;
    padding: 0.9rem 1rem 0.9rem 2.35rem;
    background: #f6fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.leadership-community-layout li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.28rem;
    width: 0.58rem;
    height: 0.58rem;
    background: #24b7a1;
    border-radius: 50%;
}

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

.leadership-award-grid article {
    min-height: 165px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.leadership-award-grid span {
    color: #7fe8ff;
}

.leadership-award-grid h3 {
    color: #fff;
    margin-top: 0.45rem;
}

.leadership-award-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.leadership-updated {
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

@media (max-width: 1199px) {
    .leadership-office-timeline,
    .leadership-conference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    .leadership-hero-grid,
    .leadership-two-column,
    .leadership-community-layout,
    .leadership-awards-layout {
        grid-template-columns: 1fr;
    }

    .leadership-hero-photo {
        min-height: 390px;
    }
}

@media (max-width: 767px) {
    .leadership-hero,
    .leadership-section,
    .leadership-dark-section,
    .leadership-academic-section,
    .leadership-community-section,
    .leadership-awards-section {
        padding: 3rem 0;
    }

    .leadership-hero h1 {
        font-size: 2.05rem;
        line-height: 1.04;
    }

    .leadership-hero-copy p:not(.eyebrow) {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .leadership-hero-photo,
    .leadership-community-layout figure {
        min-height: 260px;
    }

    .leadership-snapshot-grid,
    .leadership-office-timeline,
    .leadership-conference-grid,
    .leadership-academic-grid,
    .leadership-award-grid {
        grid-template-columns: 1fr;
    }

    .leadership-office-timeline article,
    .leadership-conference-grid article,
    .leadership-academic-grid article,
    .leadership-award-grid article {
        min-height: auto;
    }
}

.resources-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(9, 56, 65, 0.93) 58%, rgba(35, 106, 77, 0.86)),
        #07111a;
}

/* Awards & Achievements page */
.awards-hero {
    position: relative;
    overflow: hidden;
    padding: 5.4rem 0 4.8rem;
    color: #fff;
    background:
        radial-gradient(circle at 90% 18%, rgba(184, 125, 29, 0.34), transparent 28rem),
        linear-gradient(120deg, rgba(7, 17, 26, 0.98), rgba(12, 73, 78, 0.93)),
        #07111a;
}

.awards-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% 46%;
    height: 360px;
    background: rgba(40, 195, 215, 0.12);
    border-radius: 50%;
    filter: blur(18px);
}

.awards-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.awards-hero h1 {
    max-width: 760px;
    color: #fff;
}

.awards-hero-copy p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.awards-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.awards-hero .btn-primary {
    color: #07111a;
    background: #f7c66b;
    border-color: #f7c66b;
}

.awards-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.52);
}

.awards-hero-media {
    position: relative;
    min-height: 470px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34);
}

.awards-hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
}

.awards-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 26, 0.82));
}

.awards-hero-media figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.2rem;
    min-width: 210px;
    padding: 1rem 1.1rem;
    background: rgba(7, 17, 26, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.awards-hero-media figcaption span,
.awards-metrics-grid strong,
.award-feature-card span,
.award-timeline-kicker,
.award-category-card h3 {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.awards-hero-media figcaption span {
    color: #7fe8ff;
}

.awards-hero-media figcaption strong {
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
}

.awards-metrics-band {
    padding: 1.15rem 0;
    color: #fff;
    background: #07111a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.awards-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.awards-metrics-grid article {
    min-height: 112px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
}

.awards-metrics-grid span {
    display: block;
    color: #f7c66b;
    font-size: 1.9rem;
    font-weight: 850;
    line-height: 1;
    margin-bottom: 0.58rem;
}

.awards-metrics-grid strong {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.awards-section,
.awards-category-section,
.awards-timeline-section {
    padding: 4.8rem 0;
}

.awards-featured-section {
    background: #fff;
}

.awards-section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.awards-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.award-feature-card,
.award-category-card,
.award-timeline-card {
    --award-accent: #b87d1d;
    --award-soft: #fff7e8;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(36, 48, 67, 0.08);
}

.award-tone-gold {
    --award-accent: #b87d1d;
    --award-soft: #fff7e8;
}

.award-tone-blue {
    --award-accent: #1684c7;
    --award-soft: #edf7ff;
}

.award-tone-green {
    --award-accent: #24956f;
    --award-soft: #edf9f4;
}

.award-tone-rose {
    --award-accent: #c64c5b;
    --award-soft: #fff0f2;
}

.award-tone-slate {
    --award-accent: #647084;
    --award-soft: #f5f8fb;
}

.award-feature-card {
    min-height: 255px;
    display: grid;
    align-content: space-between;
    gap: 1.2rem;
    padding: 1.2rem;
    border-top: 5px solid var(--award-accent);
    background:
        linear-gradient(180deg, var(--award-soft), #fff 54%),
        #fff;
}

.award-feature-year {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--award-accent);
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 850;
    box-shadow: 0 16px 32px rgba(36, 48, 67, 0.16);
}

.award-feature-card span {
    color: var(--award-accent);
}

.award-feature-card h3 {
    margin: 0.42rem 0 0.55rem;
    line-height: 1.32;
}

.award-feature-card p,
.award-category-card p,
.award-timeline-card p {
    color: var(--muted);
    line-height: 1.68;
}

.awards-category-section {
    background: #f6fbff;
    border-block: 1px solid var(--line);
}

.awards-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
    align-items: start;
}

.awards-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.award-category-card {
    min-height: 220px;
    padding: 1.2rem;
    border-left: 5px solid var(--award-accent);
}

.award-category-card span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--award-accent);
    background: var(--award-soft);
    border-radius: 50%;
    font-size: 1.35rem;
    font-weight: 850;
}

.award-category-card h3 {
    color: var(--award-accent);
    line-height: 1.4;
}

.awards-timeline-section {
    background:
        linear-gradient(180deg, #fff, #f8fbfe),
        #fff;
}

.awards-timeline {
    position: relative;
    display: grid;
    gap: 1.15rem;
}

.awards-timeline::before {
    content: "";
    position: absolute;
    top: 0.8rem;
    bottom: 0.8rem;
    left: 5.35rem;
    width: 2px;
    background: linear-gradient(180deg, #f7c66b, #28c3d7, #24956f);
}

.award-timeline-item {
    --award-accent: #b87d1d;
    display: grid;
    grid-template-columns: 9.5rem minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
}

.award-timeline-year {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--award-accent);
    border: 6px solid #fff;
    border-radius: 50%;
    font-size: 1.12rem;
    font-weight: 850;
    box-shadow: 0 18px 42px rgba(36, 48, 67, 0.14);
}

.award-timeline-card {
    position: relative;
    padding: 1.2rem 1.3rem;
    border-left: 5px solid var(--award-accent);
}

.award-timeline-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    color: var(--award-accent);
    margin-bottom: 0.65rem;
}

.award-timeline-kicker strong {
    padding: 0.24rem 0.5rem;
    color: #07111a;
    background: #f7c66b;
    border-radius: 999px;
    font-size: 0.68rem;
}

.award-timeline-card h3 {
    margin-bottom: 0.45rem;
}

.award-timeline-card .award-body {
    color: var(--primary);
    font-weight: 750;
    margin-bottom: 0.35rem;
}

.award-timeline-card img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    margin-top: 1rem;
    border-radius: 8px;
}

.awards-updated {
    max-width: 900px;
    margin: 2rem auto 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1199px) {
    .awards-featured-grid,
    .awards-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .awards-hero-grid,
    .awards-category-layout {
        grid-template-columns: 1fr;
    }

    .awards-hero-media {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .awards-hero,
    .awards-section,
    .awards-category-section,
    .awards-timeline-section {
        padding: 3rem 0;
    }

    .awards-hero h1 {
        font-size: 2.2rem;
        line-height: 1.06;
    }

    .awards-hero-media {
        min-height: 280px;
    }

    .awards-metrics-grid,
    .awards-featured-grid,
    .awards-category-grid {
        grid-template-columns: 1fr;
    }

    .awards-timeline::before {
        left: 1.45rem;
    }

    .award-timeline-item {
        grid-template-columns: 3.4rem minmax(0, 1fr);
        gap: 0.85rem;
    }

    .award-timeline-year {
        width: 48px;
        height: 48px;
        border-width: 4px;
        font-size: 0.76rem;
    }

    .award-timeline-card {
        padding: 1rem;
    }
}

.resources-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 2.4rem;
    align-items: center;
}

.resources-hero-copy {
    max-width: 780px;
}

.resources-hero .eyebrow,
.resources-helpline-section .eyebrow {
    color: #7fe8ff;
}

.resources-hero h1 {
    color: #fff;
    font-size: clamp(2.35rem, 4.6vw, 4.65rem);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.resources-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.resources-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.resources-hero .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.resources-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.resources-safety-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.resources-safety-card span,
.resources-nav-grid span,
.resources-topic-head span,
.resources-download-row span,
.resources-helpline-grid span {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resources-safety-card span {
    color: #7fe8ff;
}

.resources-safety-card strong {
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.35;
}

.resources-safety-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0;
}

.resources-nav-band {
    padding: 1.15rem 0;
    background: #07111a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.resources-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.resources-nav-grid a {
    display: grid;
    gap: 0.28rem;
    min-height: 88px;
    align-content: center;
    padding: 0.9rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
}

.resources-nav-grid a:hover,
.resources-nav-grid a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: 0;
}

.resources-nav-grid span {
    color: #7fe8ff;
}

.resources-nav-grid strong {
    line-height: 1.3;
}

.resources-library-section,
.resources-download-section,
.resources-visit-section,
.resources-helpline-section {
    padding: 4.8rem 0;
}

.resources-library-section,
.resources-visit-section {
    background: #fff;
}

.resources-download-section {
    background: #f6fbff;
    border-block: 1px solid var(--line);
}

.resources-section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.resources-section-heading p,
.resources-download-layout p,
.resources-topic-head p,
.resources-helpline-layout p {
    color: var(--muted);
    line-height: 1.72;
}

.resources-library-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.resources-topic-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.2rem;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.resources-topic-head {
    display: grid;
    align-content: start;
}

.resources-topic-head span {
    display: inline-grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    margin-bottom: 1rem;
    color: #06141b;
    background: #7fe8ff;
    border-radius: 50%;
}

.resources-topic-card:nth-child(2) .resources-topic-head span {
    background: #b7ead7;
}

.resources-topic-card:nth-child(3) .resources-topic-head span {
    background: #ffe2a3;
}

.resources-topic-card:nth-child(4) .resources-topic-head span {
    background: #ffc8c6;
}

.resources-topic-head h3 {
    font-size: 1.22rem;
    line-height: 1.3;
}

.resources-topic-card ul,
.resources-visit-card ul {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.resources-topic-card li {
    display: grid;
    gap: 0.2rem;
    padding: 0.72rem 0.8rem;
    background: #f6fbff;
    border: 1px solid #e2edf4;
    border-radius: 8px;
}

.resources-topic-card li strong {
    color: #263548;
    line-height: 1.35;
}

.resources-topic-card li small {
    color: var(--muted);
    line-height: 1.35;
}

.resources-download-layout,
.resources-helpline-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.resources-download-list {
    display: grid;
    gap: 0.75rem;
}

.resources-download-row {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 70px;
    padding: 0.9rem 1rem;
    color: var(--ink);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(36, 48, 67, 0.05);
}

.resources-download-row:hover,
.resources-download-row:focus-visible {
    border-color: #9ad8e4;
    box-shadow: 0 18px 46px rgba(42, 168, 239, 0.12);
    outline: 0;
}

.resources-download-row span {
    color: var(--primary);
}

.resources-download-row strong {
    line-height: 1.35;
}

.resources-download-row em {
    color: #236a4d;
    font-style: normal;
    font-weight: 850;
}

.resources-visit-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    padding: 1.45rem;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(18, 96, 111, 0.96), rgba(35, 106, 77, 0.92)),
        var(--primary);
    border-radius: 8px;
}

.resources-visit-card .eyebrow {
    color: #7fe8ff;
}

.resources-visit-card h2 {
    color: #fff;
}

.resources-visit-card li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
}

.resources-visit-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.55rem;
    height: 0.55rem;
    background: #7fe8ff;
    border-radius: 50%;
}

.resources-helpline-section {
    color: #fff;
    background:
        linear-gradient(110deg, rgba(7, 17, 26, 0.98), rgba(10, 53, 63, 0.94)),
        #07111a;
}

.resources-helpline-layout h2 {
    color: #fff;
}

.resources-helpline-layout p {
    color: rgba(255, 255, 255, 0.72);
}

.resources-helpline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.resources-helpline-grid article {
    display: grid;
    gap: 0.45rem;
    min-height: 145px;
    align-content: end;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.resources-helpline-grid span {
    color: #7fe8ff;
}

.resources-helpline-grid a {
    color: #fff;
    font-size: 1.28rem;
    font-weight: 850;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.resources-updated {
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

@media (max-width: 1199px) {
    .resources-library-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .resources-hero-grid,
    .resources-download-layout,
    .resources-visit-card,
    .resources-helpline-layout {
        grid-template-columns: 1fr;
    }

    .resources-nav-grid,
    .resources-helpline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .resources-hero,
    .resources-library-section,
    .resources-download-section,
    .resources-visit-section,
    .resources-helpline-section {
        padding: 3rem 0;
    }

    .resources-hero h1 {
        font-size: 2.05rem;
        line-height: 1.04;
    }

    .resources-hero-copy p:not(.eyebrow) {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .resources-nav-grid,
    .resources-topic-card,
    .resources-helpline-grid {
        grid-template-columns: 1fr;
    }

    .resources-download-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .resources-safety-card,
    .resources-topic-card,
    .resources-visit-card {
        padding: 1rem;
    }
}

.site-footer {
    padding: 2rem 0 0;
    color: var(--ink);
    background: #fff;
    border-top: 1px solid var(--line);
}

.site-footer p {
    color: #5c6c80;
}

.footer-link {
    color: var(--primary);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 3.2rem 0 2.4rem;
}

.footer-brand {
    max-width: 410px;
}

.footer-brand-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    border-radius: 8px;
    background: #eef8ff;
    border: 1px solid #d4ecfb;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(42, 168, 239, 0.12);
}

.footer-brand-mark img,
.footer-brand-mark .brand-fallback {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-column p {
    color: #657589;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.footer-social a,
.footer-legal a:last-child {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: var(--primary);
    background: #eef8ff;
    border: 1px solid #d4ecfb;
    border-radius: 50%;
    text-decoration: none;
}

.footer-social a:hover,
.footer-legal a:last-child:hover {
    color: #fff;
    background: var(--primary);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.footer-column a {
    color: #5f7084;
    font-weight: 700;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary);
}

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

.footer-review-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.7rem 1rem;
    color: #fff !important;
    background: var(--primary);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(42, 168, 239, 0.18);
}

.footer-developer-credit {
    position: relative;
    overflow: hidden;
    margin-top: 0.25rem;
    color: #fff;
    background:
        radial-gradient(circle at 12% 15%, rgba(246, 208, 255, 0.22), transparent 29%),
        linear-gradient(135deg, #220b2f 0%, #56206c 48%, #842a8f 100%);
    border-top: 1px solid rgba(246, 208, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-developer-credit::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px);
    pointer-events: none;
}

.footer-developer-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-developer-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-developer-logo {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0.34rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(246, 208, 255, 0.55);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(20, 3, 29, 0.32);
}

.footer-developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-developer-title span {
    display: block;
    color: #f5c8ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-developer-title strong {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.2;
}

.footer-developer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.footer-developer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.58rem 0.78rem;
    color: #f8fbfc;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 208, 255, 0.22);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-developer-links a svg {
    color: #f5c8ff;
}

.footer-developer-links a:hover {
    color: #5b1f70;
    background: #fff;
    transform: translateY(-1px);
}

.footer-developer-links a:hover svg {
    color: currentColor;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0 1.6rem;
    border-top: 1px solid var(--line);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #657589;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom p {
    font-size: 0.92rem;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 3rem;
    }

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

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

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .home-hero {
        min-height: auto;
        background-color: #07111a;
        background-image:
            linear-gradient(90deg, #07111a 0%, rgba(7, 17, 26, 0.94) 46%, rgba(7, 17, 26, 0.42) 72%, rgba(7, 17, 26, 0.12) 100%),
            linear-gradient(0deg, rgba(7, 17, 26, 0.54), transparent 34%),
            url("../img/hero-cinematic.jpg");
        background-position: center, center, right center;
        background-repeat: no-repeat;
        background-size: cover, cover, auto 100%;
    }

    .home-hero .container {
        min-height: auto;
        gap: 1.55rem;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        justify-self: start;
        width: min(100%, 480px);
    }

    .home-hero h1 {
        max-width: 480px;
    }

    .hero-schedule-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
        justify-self: start;
    }

    .visit-detail-grid,
    .visit-info-card {
        grid-template-columns: 1fr;
    }

    .visit-detail-photo {
        min-height: 340px;
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-developer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-developer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.15rem;
    }

    .home-hero {
        padding: 0;
        background-color: #07111a;
        background-image:
            linear-gradient(90deg, rgba(7, 17, 26, 0.97), rgba(7, 17, 26, 0.83)),
            url("../img/hero-cinematic.jpg");
        background-position: center, 24% center;
        background-repeat: no-repeat;
        background-size: cover, auto 100%;
    }

    .home-hero .container {
        padding-top: 3.2rem;
        padding-bottom: 1.45rem;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-content .eyebrow {
        font-size: 0.68rem;
    }

    .home-hero h1 {
        max-width: 100%;
        line-height: 1.04;
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.28rem;
        margin-bottom: 0.45rem;
    }

    .hero-copy {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.94rem;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .hero-actions {
        gap: 0.55rem;
        margin-top: 0.9rem;
    }

    .hero-actions .btn {
        padding: 0.55rem 0.7rem;
        font-size: 0.92rem;
    }

    .hero-search {
        grid-template-columns: 1fr 48px;
    }

    .hero-location {
        grid-column: 1 / -1;
        grid-row: 2;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0.85rem;
    }

    .hero-schedule-item {
        min-height: auto;
        gap: 0.08rem;
        padding: 0.6rem 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-schedule-strip {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0.65rem;
    }

    .hero-schedule-item span {
        font-size: 0.65rem;
    }

    .hero-schedule-item strong {
        font-size: 0.9rem;
    }

    .hero-schedule-item small {
        display: none;
    }

    .hero-schedule-link:hover,
    .hero-schedule-link:focus-visible,
    .hero-schedule-link:first-child:hover,
    .hero-schedule-link:first-child:focus-visible {
        padding-left: 0;
    }

    .visit-detail-hero,
    .visit-info-section {
        padding: 3rem 0;
    }

    .visit-detail-hero h1 {
        font-size: 2rem;
        line-height: 1.04;
    }

    .visit-detail-copy p:not(.eyebrow) {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .visit-detail-photo {
        min-height: 255px;
    }

    .visit-info-card {
        padding: 1rem;
    }

    .visit-info-card dl {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .visit-info-card dd {
        margin-bottom: 0.5rem;
    }

    .steps-section,
    .services-section,
    .highlights-section,
    .resources-teaser,
    .reviews-section,
    .feature-section {
        padding: 3.2rem 0;
    }

    .highlight-grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 1.45rem;
    }

    .cta-badge {
        width: 96px;
        height: 96px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-top: 2.4rem;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .footer-developer-links,
    .footer-developer-links a {
        width: 100%;
    }

    .footer-developer-links a {
        justify-content: center;
    }
}

.clinical-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 24%, rgba(40, 195, 215, 0.24), transparent 30%),
        linear-gradient(90deg, #07111a 0%, #0b2530 58%, #f6fbff 58%, #f6fbff 100%);
}

.clinical-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 2.5rem;
    align-items: center;
}

.clinical-hero-copy {
    max-width: 660px;
}

.clinical-hero .eyebrow,
.clinical-emergency-band .eyebrow {
    color: #7fe8ff;
}

.clinical-hero h1 {
    color: #fff;
    font-size: clamp(2.45rem, 4.8vw, 4.7rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.clinical-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.75;
}

.clinical-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

.clinical-hero .btn-primary,
.clinical-resource-card .btn-primary,
.clinical-research-band .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.clinical-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.clinical-visual-panel {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.clinical-visual-panel::before {
    content: "";
    position: absolute;
    inset: 8% 4% 5% 14%;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(40, 195, 215, 0.22), rgba(36, 183, 161, 0.16)),
        #fff;
    border: 1px solid rgba(40, 195, 215, 0.24);
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(7, 17, 26, 0.18);
}

.clinical-visual-panel img {
    width: min(72%, 380px);
    aspect-ratio: 3 / 4.1;
    object-fit: cover;
    object-position: center top;
    border: 10px solid #fff;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(7, 17, 26, 0.28);
}

.clinical-metric {
    position: absolute;
    display: grid;
    gap: 0.15rem;
    min-width: 160px;
    padding: 0.78rem 0.88rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(7, 17, 26, 0.14);
}

.clinical-metric span {
    color: #147fc0;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clinical-metric strong {
    color: var(--ink);
    font-size: 0.92rem;
}

.metric-a1c {
    left: 0;
    top: 20%;
}

.metric-bp {
    right: 0;
    top: 42%;
}

.metric-foot {
    left: 7%;
    bottom: 12%;
}

.clinical-path-band {
    padding: 1.25rem 0;
    background: #07111a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clinical-path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.clinical-path article {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.clinical-path article:first-child {
    border-left: 0;
}

.clinical-path span,
.clinical-schedule-card span,
.clinical-alert-card span {
    color: #7fe8ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clinical-path h2 {
    color: #fff;
    font-size: 1.02rem;
    margin: 0;
}

.clinical-path p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.clinical-section,
.clinical-contact-section {
    padding: 4.8rem 0;
    background: #fff;
}

.clinical-section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.clinical-section-heading p,
.clinical-schedule-layout p,
.clinical-contact-card p {
    color: var(--muted);
    line-height: 1.72;
}

.clinical-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.clinical-service-card {
    position: relative;
    min-height: 235px;
    padding: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.clinical-service-card::after {
    content: "";
    position: absolute;
    right: -2.4rem;
    bottom: -2.4rem;
    width: 7rem;
    height: 7rem;
    background: color-mix(in srgb, var(--primary) 14%, transparent);
    border-radius: 50%;
}

.clinical-service-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #06141b;
    background: #7fe8ff;
    border-radius: 50%;
    font-weight: 850;
}

.clinical-service-card h3 {
    font-size: 1.05rem;
}

.clinical-service-card p {
    color: var(--muted);
    line-height: 1.65;
}

.clinical-service-card:nth-child(2n) span {
    background: #8ce8cf;
}

.clinical-service-card:nth-child(3n) span {
    background: #ffd36a;
}

.clinical-schedule-section {
    padding: 4.8rem 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 17, 26, 0.96), rgba(18, 96, 111, 0.86)),
        #07111a;
}

.clinical-schedule-layout,
.clinical-prep-layout,
.clinical-emergency-grid,
.clinical-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.clinical-schedule-layout p,
.clinical-schedule-layout .eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.clinical-schedule-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.clinical-schedule-card {
    min-height: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.clinical-schedule-card h3 {
    color: #fff;
    margin: 0.55rem 0 1rem;
}

.clinical-schedule-card dl {
    display: grid;
    gap: 0.6rem;
    margin: 0;
}

.clinical-schedule-card dt {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    font-weight: 820;
    text-transform: uppercase;
}

.clinical-schedule-card dd {
    margin: -0.45rem 0 0;
    color: #fff;
    font-weight: 760;
}

.clinical-note {
    margin: 1rem 0 0;
    padding: 0.8rem;
    color: #fff;
    background: rgba(40, 195, 215, 0.14);
    border-radius: 8px;
}

.clinical-prep-card,
.clinical-resource-card,
.clinical-contact-card {
    padding: 1.4rem;
    background: #f6fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.clinical-prep-card ul {
    display: grid;
    gap: 0.78rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.clinical-prep-card li {
    position: relative;
    padding-left: 1.6rem;
    color: #324156;
    line-height: 1.62;
}

.clinical-prep-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.58rem;
    height: 0.58rem;
    background: #24b7a1;
    border-radius: 50%;
}

.clinical-resource-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin: 1.1rem 0 1.25rem;
}

.clinical-resource-list span {
    padding: 0.58rem 0.7rem;
    color: #12424d;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 720;
}

.clinical-emergency-band {
    padding: 4.8rem 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 17, 26, 0.96), rgba(72, 28, 34, 0.86)),
        #07111a;
}

.clinical-emergency-band p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.clinical-alert-card {
    align-self: stretch;
    display: grid;
    align-content: center;
    gap: 0.5rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #ff7a59;
    border-radius: 8px;
}

.clinical-alert-card strong {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.45;
}

.clinical-contact-card {
    align-items: center;
    background: #07111a;
}

.clinical-contact-card h2,
.clinical-contact-card p {
    color: #fff;
}

.clinical-contact-links {
    display: grid;
    gap: 0.7rem;
}

.clinical-contact-links a,
.clinical-contact-links span {
    display: block;
    padding: 0.78rem 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-weight: 760;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.clinical-updated {
    margin: 1rem 0 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1199px) {
    .clinical-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .clinical-hero {
        background:
            linear-gradient(180deg, #07111a 0%, #0b2530 62%, #f6fbff 62%, #f6fbff 100%);
    }

    .clinical-hero-grid,
    .clinical-schedule-layout,
    .clinical-prep-layout,
    .clinical-emergency-grid,
    .clinical-contact-card {
        grid-template-columns: 1fr;
    }

    .clinical-visual-panel {
        min-height: 440px;
    }

    .clinical-path,
    .clinical-service-grid,
    .clinical-schedule-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .clinical-hero,
    .clinical-section,
    .clinical-schedule-section,
    .clinical-emergency-band,
    .clinical-contact-section {
        padding: 3.2rem 0;
    }

    .clinical-hero h1 {
        font-size: 2.28rem;
    }

    .clinical-visual-panel {
        min-height: 380px;
    }

    .clinical-visual-panel img {
        width: min(78%, 300px);
        border-width: 7px;
    }

    .clinical-metric {
        min-width: 138px;
        padding: 0.62rem 0.7rem;
    }

    .metric-a1c {
        left: 0;
        top: 11%;
    }

    .metric-bp {
        right: 0;
        top: 45%;
    }

    .metric-foot {
        left: 0;
        bottom: 8%;
    }

    .clinical-path,
    .clinical-service-grid,
    .clinical-schedule-cards {
        grid-template-columns: 1fr;
    }

    .clinical-path article,
    .clinical-path article:first-child {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .clinical-path article:first-child {
        border-top: 0;
    }
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 4.4rem 0 3.7rem;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 17, 26, 0.94), rgba(7, 17, 26, 0.78)),
        #07111a;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    gap: 3rem;
    align-items: center;
}

.about-hero-copy {
    max-width: 610px;
}

.about-hero .eyebrow,
.about-section-dark .eyebrow {
    color: #7fe8ff;
}

.about-hero h1 {
    max-width: 680px;
    color: #fff;
    font-size: clamp(2.45rem, 4.5vw, 4.25rem);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.about-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.72;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.about-hero .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.about-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.about-hero-visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: 42% center;
    display: block;
}

.about-hero-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    max-width: min(86%, 360px);
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem 1rem;
    background: rgba(7, 17, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.about-hero-badge span {
    color: #7fe8ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-badge strong {
    color: #fff;
    line-height: 1.35;
}

.about-profile-band,
.about-section {
    padding: 4.8rem 0;
    background: #fff;
}

.about-profile-band {
    background: #f6fbff;
}

.about-profile-grid,
.about-two-column,
.about-focus-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.2rem;
    align-items: start;
}

.about-lede h2,
.about-two-column h2,
.about-focus-layout h2,
.about-research-band h2 {
    max-width: 650px;
}

.about-lede p,
.about-two-column p,
.about-focus-layout .lead {
    color: var(--muted);
    line-height: 1.75;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.about-stat-grid div,
.about-credential,
.about-focus-card,
.about-award {
    padding: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(36, 48, 67, 0.06);
}

.about-stat-grid strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.about-stat-grid span,
.about-credential p,
.about-focus-card p,
.about-award p {
    color: var(--muted);
}

.about-credential-grid,
.about-focus-grid,
.about-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-credential {
    border-top: 4px solid #28c3d7;
}

.about-credential:nth-child(2) {
    border-top-color: #24b7a1;
}

.about-credential:nth-child(3) {
    border-top-color: #b87d1d;
}

.about-credential:nth-child(4) {
    border-top-color: #d75955;
}

.about-credential span,
.about-award span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-credential h3,
.about-focus-card h3,
.about-award h3 {
    font-size: 1.05rem;
}

.about-section-dark {
    color: #fff;
    background: #07111a;
}

.about-section-dark p {
    color: rgba(255, 255, 255, 0.74);
}

.about-leadership-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.about-leadership-list span {
    display: inline-flex;
    max-width: 100%;
    padding: 0.62rem 0.75rem;
    color: #eafaff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-weight: 720;
}

.about-focus-layout {
    align-items: center;
}

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

.about-focus-card {
    min-height: 180px;
}

.about-research-band {
    background: linear-gradient(180deg, #f6fbff, #fff);
    border-block: 1px solid var(--line);
}

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

.about-check-list li {
    position: relative;
    padding-left: 1.6rem;
    color: #324156;
    line-height: 1.65;
}

.about-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.58rem;
    height: 0.58rem;
    background: #24b7a1;
    border-radius: 50%;
}

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

.about-award {
    border-left: 4px solid #b87d1d;
}

.about-award:nth-child(2) {
    border-left-color: #24b7a1;
}

.about-award:nth-child(3) {
    border-left-color: #28c3d7;
}

.about-outreach-note {
    max-width: 930px;
    margin: 1.5rem auto 0;
    padding: 1.15rem 1.25rem;
    color: #324156;
    background: #f6fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.about-outreach-note p {
    margin: 0;
    line-height: 1.75;
}

.about-philosophy {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 17, 26, 0.96), rgba(18, 96, 111, 0.88)),
        #07111a;
}

.about-philosophy blockquote {
    max-width: 920px;
    margin: 0 auto 2rem;
    text-align: center;
}

.about-philosophy blockquote p {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
}

.about-philosophy cite {
    color: #7fe8ff;
    font-style: normal;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.about-facts div {
    display: grid;
    gap: 0.28rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.about-facts span {
    color: #7fe8ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-facts a,
.about-facts strong {
    color: #fff;
    font-weight: 760;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.about-updated {
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

@media (max-width: 1199px) {
    .about-credential-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    .about-hero-grid,
    .about-profile-grid,
    .about-two-column,
    .about-focus-layout {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        min-height: 390px;
    }

    .about-stat-grid,
    .about-focus-grid,
    .about-awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero,
    .about-profile-band,
    .about-section {
        padding: 2.55rem 0;
    }

    .about-hero h1 {
        font-size: 2.05rem;
        line-height: 1.04;
    }

    .about-hero p:not(.eyebrow) {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .about-hero-actions {
        margin-top: 1rem;
    }

    .about-hero-visual {
        min-height: 245px;
    }

    .about-credential-grid,
    .about-facts {
        grid-template-columns: 1fr;
    }
}

.media-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0 4.2rem;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(11, 68, 80, 0.92) 58%, rgba(34, 106, 77, 0.82)),
        #07111a;
}

.media-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.media-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.media-hero-copy {
    max-width: 680px;
}

.media-hero .eyebrow,
.media-video-section .eyebrow,
.media-awards-section .eyebrow {
    color: #7fe8ff;
}

.media-hero h1 {
    color: #fff;
    font-size: clamp(2.45rem, 4.9vw, 4.85rem);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.media-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.media-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.55rem;
}

.media-hero .btn-primary,
.media-kit-card .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.media-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.media-visual-stack {
    position: relative;
    min-height: 520px;
}

.media-visual-main,
.media-visual-side {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.media-visual-main {
    inset: 0 9% 0 0;
}

.media-visual-side {
    right: 0;
    bottom: 1.2rem;
    width: min(42%, 260px);
    aspect-ratio: 4 / 5;
    border: 7px solid #fff;
}

.media-visual-main img,
.media-visual-side img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-visual-main img {
    object-position: center;
}

.media-visual-side img {
    object-position: center top;
}

.media-visual-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 26, 0.84));
}

.media-visual-main figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.25rem;
    max-width: 420px;
    padding: 0.95rem 1rem;
    background: rgba(7, 17, 26, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.media-visual-main figcaption span,
.media-channel-grid span,
.media-press-card span,
.media-video-card small,
.media-social-grid span,
.media-outreach-track span,
.media-award-grid span,
.media-contact-card span,
.media-archive-card span {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-visual-main figcaption span {
    color: #7fe8ff;
}

.media-visual-main figcaption strong {
    color: #fff;
    line-height: 1.35;
}

.media-channel-band {
    padding: 1.2rem 0;
    background: #07111a;
}

.media-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.media-channel-grid article {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.media-channel-grid article:first-child {
    border-left: 0;
}

.media-channel-grid span,
.media-video-card small,
.media-award-grid span {
    color: #7fe8ff;
}

.media-channel-grid strong {
    color: #fff;
}

.media-press-section,
.media-video-section,
.media-social-section,
.media-community-section,
.media-awards-section,
.media-kit-section,
.media-archive-section {
    padding: 4.8rem 0;
}

.media-press-section,
.media-social-section,
.media-kit-section,
.media-archive-section {
    background: #fff;
}

.media-section-heading,
.media-community-head {
    max-width: 780px;
    margin-bottom: 2rem;
}

.media-section-heading h2,
.media-community-head h2,
.media-archive-head h2 {
    max-width: 760px;
}

.media-press-grid,
.media-social-grid,
.media-award-grid,
.media-archive-grid {
    display: grid;
    gap: 1rem;
}

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

.media-press-card {
    position: relative;
    min-height: 240px;
    padding: 1.2rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.media-press-card::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 4.4rem;
    height: 4.4rem;
    border: 1px solid #bfe7f0;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 46%, #bfe7f0 46%, #bfe7f0 54%, transparent 54%),
        linear-gradient(0deg, transparent 46%, #bfe7f0 46%, #bfe7f0 54%, transparent 54%);
    opacity: 0.5;
}

.media-press-card span,
.media-social-grid span,
.media-archive-card span {
    color: var(--primary);
}

.media-press-card h3 {
    margin-top: 0.9rem;
    font-size: 1.15rem;
    line-height: 1.35;
}

.media-press-card p,
.media-social-intro p,
.media-social-grid p,
.media-outreach-track p,
.media-award-grid p,
.media-archive-card p {
    color: var(--muted);
    line-height: 1.68;
}

.media-press-card strong {
    display: inline-flex;
    margin-top: 0.6rem;
    padding: 0.45rem 0.62rem;
    color: #236a4d;
    background: #edf8ef;
    border-radius: 8px;
}

.media-video-section,
.media-awards-section {
    color: #fff;
    background:
        linear-gradient(105deg, rgba(7, 17, 26, 0.98), rgba(12, 45, 56, 0.96)),
        #07111a;
}

.media-video-layout,
.media-social-layout,
.media-awards-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 2rem;
    align-items: start;
}

.media-video-layout h2,
.media-awards-layout h2 {
    color: #fff;
}

.media-video-layout p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.media-video-list {
    display: grid;
    gap: 0.85rem;
}

.media-video-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.media-play-mark {
    position: relative;
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    background: #28c3d7;
    border-radius: 50%;
}

.media-play-mark::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 0.18rem;
    border-top: 0.48rem solid transparent;
    border-bottom: 0.48rem solid transparent;
    border-left: 0.72rem solid #06141b;
}

.media-video-card h3 {
    color: #fff;
    margin: 0.22rem 0 0.2rem;
}

.media-video-card p {
    margin: 0;
}

.media-social-section,
.media-community-section {
    background: #f6fbff;
    border-block: 1px solid var(--line);
}

.media-social-intro {
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

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

.media-social-grid article {
    min-height: 180px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid #28c3d7;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(36, 48, 67, 0.05);
}

.media-social-grid article:nth-child(2) {
    border-top-color: #24b7a1;
}

.media-social-grid article:nth-child(3) {
    border-top-color: #b87d1d;
}

.media-social-grid strong {
    display: block;
    margin: 0.55rem 0;
    color: var(--ink);
    font-size: 1.15rem;
}

.media-outreach-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.media-outreach-track article {
    min-height: 245px;
    padding: 1.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.media-outreach-track span {
    display: inline-grid;
    min-width: 4rem;
    height: 4rem;
    place-items: center;
    margin-bottom: 1rem;
    color: #06141b;
    background: #7fe8ff;
    border-radius: 50%;
}

.media-outreach-track article:nth-child(2) span {
    background: #b7ead7;
}

.media-outreach-track article:nth-child(3) span {
    background: #ffe2a3;
}

.media-outreach-track article:nth-child(4) span {
    background: #ffc8c6;
}

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

.media-award-grid article {
    min-height: 165px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.media-award-grid h3 {
    color: #fff;
    margin-top: 0.45rem;
}

.media-award-grid p {
    color: rgba(255, 255, 255, 0.7);
}

.media-kit-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.45rem;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(18, 96, 111, 0.96), rgba(35, 106, 77, 0.9)),
        var(--primary);
    border-radius: 8px;
}

.media-kit-card h2 {
    color: #fff;
    margin-bottom: 0;
}

.media-kit-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.media-kit-card .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.media-archive-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.media-contact-card {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: #f6fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.media-contact-card span {
    color: var(--primary);
}

.media-contact-card a {
    color: var(--ink);
    font-weight: 750;
    overflow-wrap: anywhere;
    text-decoration: none;
}

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

.media-archive-card {
    position: relative;
    display: grid;
    gap: 0.45rem;
    min-height: 250px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(36, 48, 67, 0.06);
}

.media-archive-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
}

.media-archive-card h3 {
    font-size: 1.04rem;
    line-height: 1.4;
}

.media-archive-card strong {
    color: var(--ink);
}

.media-archive-card a {
    margin-top: auto;
    font-weight: 750;
}

.media-updated {
    margin: 1.2rem 0 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1199px) {
    .media-outreach-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    .media-hero-grid,
    .media-video-layout,
    .media-social-layout,
    .media-awards-layout,
    .media-kit-card,
    .media-archive-head {
        grid-template-columns: 1fr;
    }

    .media-visual-stack {
        min-height: 430px;
    }

    .media-channel-grid,
    .media-press-grid,
    .media-social-grid,
    .media-award-grid {
        grid-template-columns: 1fr;
    }

    .media-kit-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .media-hero,
    .media-press-section,
    .media-video-section,
    .media-social-section,
    .media-community-section,
    .media-awards-section,
    .media-kit-section,
    .media-archive-section {
        padding: 3rem 0;
    }

    .media-hero h1 {
        font-size: 2.1rem;
        line-height: 1.04;
    }

    .media-hero-copy p:not(.eyebrow) {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .media-visual-stack {
        min-height: auto;
        display: grid;
        gap: 0.8rem;
    }

    .media-visual-main,
    .media-visual-side {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .media-visual-main {
        min-height: 300px;
    }

    .media-visual-side {
        aspect-ratio: 16 / 9;
        border-width: 0;
    }

    .media-channel-grid article,
    .media-channel-grid article:first-child {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .media-channel-grid article:first-child {
        border-top: 0;
    }

    .media-video-card,
    .media-outreach-track,
    .media-archive-grid {
        grid-template-columns: 1fr;
    }
}

.research-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4.2rem;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 17, 26, 0.98), rgba(8, 50, 60, 0.92) 54%, rgba(20, 87, 92, 0.86)),
        #07111a;
}

.research-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.research-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.research-hero-copy {
    max-width: 680px;
}

.research-hero .eyebrow,
.research-trials-section .eyebrow,
.research-recognition-section .eyebrow {
    color: #7fe8ff;
}

.research-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.8vw, 4.9rem);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.research-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.research-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.55rem;
}

.research-hero .btn-primary {
    color: #06141b;
    background: #28c3d7;
    border-color: #28c3d7;
}

.research-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
}

.research-dashboard {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.research-dashboard::before {
    content: "";
    position: absolute;
    inset: 0.7rem;
    border: 1px solid rgba(127, 232, 255, 0.16);
    border-radius: 8px;
    pointer-events: none;
}

.research-dashboard-head,
.research-dashboard-score,
.research-domain-list,
.research-dashboard-foot {
    position: relative;
    z-index: 1;
}

.research-dashboard-head {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.research-dashboard-head span,
.research-dashboard-score span,
.research-domain-row span,
.research-dashboard-foot span,
.research-trial-card span,
.research-guideline-tags span,
.research-team-list span,
.research-award-grid span {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.research-dashboard-head span,
.research-domain-row span {
    color: #7fe8ff;
}

.research-dashboard-head strong {
    color: #fff;
    font-size: 1.35rem;
}

.research-dashboard-score {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.research-dashboard-score div {
    display: grid;
    gap: 0.3rem;
    min-height: 118px;
    padding: 1rem;
    align-content: end;
    background: #fff;
    border-radius: 8px;
}

.research-dashboard-score div:nth-child(2) {
    background: #ecfff9;
}

.research-dashboard-score div:nth-child(3) {
    background: #fff6df;
}

.research-dashboard-score span {
    color: #526278;
}

.research-dashboard-score strong {
    color: #07111a;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 0.95;
}

.research-domain-list {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    background: rgba(7, 17, 26, 0.46);
    border-radius: 8px;
}

.research-domain-row {
    display: grid;
    gap: 0.38rem;
}

.research-domain-track,
.research-metric-track {
    height: 0.55rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.research-domain-track i,
.research-metric-track i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #28c3d7, #24b7a1);
    border-radius: inherit;
}

.research-dashboard-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.research-dashboard-foot span {
    padding: 0.46rem 0.62rem;
    color: #d8fbff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.research-metrics-section,
.research-guideline-section,
.research-publications-section,
.research-collaboration-section,
.research-recognition-section {
    padding: 4.8rem 0;
}

.research-metrics-section,
.research-publications-section {
    background: #fff;
}

.research-section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.research-section-heading p,
.research-trials-layout p,
.research-guideline-panel p,
.research-publication-card p,
.research-funding-card p,
.research-team-list p,
.research-ethics-panel p {
    color: var(--muted);
    line-height: 1.72;
}

.research-metric-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.research-metric-card {
    display: grid;
    gap: 0.52rem;
    min-height: 250px;
    padding: 1.12rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.research-metric-card:nth-child(2) .research-metric-track i {
    background: linear-gradient(90deg, #24b7a1, #78c257);
}

.research-metric-card:nth-child(3) .research-metric-track i {
    background: linear-gradient(90deg, #b87d1d, #ffb000);
}

.research-metric-card:nth-child(4) .research-metric-track i {
    background: linear-gradient(90deg, #d75955, #ef6aa6);
}

.research-metric-card:nth-child(5) .research-metric-track i {
    background: linear-gradient(90deg, #147fc0, #28c3d7);
}

.research-metric-index {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    color: #06141b;
    background: #e8f7fb;
    border-radius: 50%;
    font-weight: 850;
}

.research-metric-card strong {
    color: var(--primary);
    font-size: 2.45rem;
    line-height: 1;
}

.research-metric-card h3 {
    margin: 0;
    font-size: 1rem;
}

.research-metric-card p {
    margin: 0;
    color: #4b5a70;
}

.research-metric-card small {
    margin-top: auto;
    color: #748196;
}

.research-metric-track {
    background: #e8f1f6;
}

.research-trials-section {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 17, 26, 0.98), rgba(10, 39, 50, 0.96)),
        #07111a;
}

.research-trials-layout,
.research-guideline-layout,
.research-collaboration-grid,
.research-recognition-layout,
.research-ethics-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.research-trials-layout h2,
.research-recognition-layout h2,
.research-ethics-panel h2 {
    color: #fff;
}

.research-trials-layout p {
    color: rgba(255, 255, 255, 0.72);
}

.research-trial-list {
    display: grid;
    gap: 0.9rem;
}

.research-trial-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.research-trial-number {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    color: #06141b;
    background: #7fe8ff;
    border-radius: 8px;
    font-weight: 850;
}

.research-trial-card span {
    color: #7fe8ff;
}

.research-trial-card h3 {
    color: #fff;
    margin: 0.15rem 0 0.35rem;
}

.research-trial-card dl {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 0.35rem 0.7rem;
    margin: 0.85rem 0 0;
}

.research-trial-card dt {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 750;
}

.research-trial-card dd {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.research-guideline-section,
.research-collaboration-section {
    background: #f6fbff;
    border-block: 1px solid var(--line);
}

.research-guideline-panel,
.research-funding-card {
    padding: 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.research-guideline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.research-guideline-tags span {
    padding: 0.5rem 0.7rem;
    color: #0b4450;
    background: #e8f7fb;
    border: 1px solid #bfe7f0;
    border-radius: 8px;
}

.research-guideline-tags span:nth-child(2),
.research-guideline-tags span:nth-child(5) {
    color: #236a4d;
    background: #edf8ef;
    border-color: #bce5c3;
}

.research-guideline-tags span:nth-child(3) {
    color: #865400;
    background: #fff6df;
    border-color: #f1d58d;
}

.research-guideline-tags span:nth-child(4) {
    color: #9b3532;
    background: #fff0f0;
    border-color: #f2c5c3;
}

.research-guideline-list {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.research-guideline-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3.1rem;
    color: #304057;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(36, 48, 67, 0.05);
}

.research-guideline-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.18rem;
    width: 0.85rem;
    height: 0.85rem;
    background: #24b7a1;
    border-radius: 50%;
    box-shadow: 0 0 0 0.35rem #e6f8f3;
}

.research-publications-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.research-publications-head h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.research-publication-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.research-publication-card {
    min-height: 235px;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid #28c3d7;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(36, 48, 67, 0.06);
}

.research-publication-card:nth-child(2) {
    border-top-color: #24b7a1;
}

.research-publication-card:nth-child(3) {
    border-top-color: #b87d1d;
}

.research-publication-card:nth-child(4) {
    border-top-color: #d75955;
}

.research-publication-card span {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.research-publication-card h3 {
    font-size: 1.03rem;
    line-height: 1.38;
}

.research-team-list {
    display: grid;
    gap: 0.85rem;
}

.research-team-list article {
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.research-team-list span {
    color: var(--primary);
}

.research-team-list p {
    margin: 0.35rem 0 0;
}

.research-recognition-section {
    color: #fff;
    background:
        linear-gradient(120deg, rgba(7, 17, 26, 0.98), rgba(16, 84, 94, 0.92)),
        #07111a;
}

.research-award-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.research-award-grid article {
    min-height: 170px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.research-award-grid span {
    color: #7fe8ff;
}

.research-award-grid h3 {
    color: #fff;
    margin-top: 0.45rem;
}

.research-award-grid p {
    color: rgba(255, 255, 255, 0.7);
}

.research-ethics-panel {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.research-ethics-panel p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.research-updated {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

@media (max-width: 1199px) {
    .research-metric-grid,
    .research-publication-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .research-hero-grid,
    .research-trials-layout,
    .research-guideline-layout,
    .research-collaboration-grid,
    .research-recognition-layout,
    .research-ethics-panel {
        grid-template-columns: 1fr;
    }

    .research-hero-grid {
        gap: 2rem;
    }

    .research-dashboard-score,
    .research-award-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .research-hero,
    .research-metrics-section,
    .research-trials-section,
    .research-guideline-section,
    .research-publications-section,
    .research-collaboration-section,
    .research-recognition-section {
        padding: 3rem 0;
    }

    .research-hero h1 {
        font-size: 2.1rem;
        line-height: 1.04;
    }

    .research-hero-copy p:not(.eyebrow) {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .research-dashboard {
        padding: 0.85rem;
    }

    .research-metric-grid,
    .research-publication-grid {
        grid-template-columns: 1fr;
    }

    .research-publications-head {
        display: grid;
        align-items: start;
    }

    .research-trial-card {
        grid-template-columns: 1fr;
    }

    .research-trial-card dl {
        grid-template-columns: 1fr;
    }
}

.publications-hero {
    padding: 4.8rem 0 3rem;
    background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
    border-bottom: 1px solid var(--line);
}

.publication-count-card {
    display: grid;
    gap: 0.25rem;
    justify-items: start;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(42, 168, 239, 0.12);
}

.publication-count-card span {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 850;
    line-height: 1;
}

.publication-count-card strong {
    color: var(--ink);
    font-size: 1rem;
}

.publication-stats-section {
    padding: 3.6rem 0 1.2rem;
    background: #fff;
}

.publication-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
}

.publication-stat-card,
.publication-data-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(36, 48, 67, 0.08);
}

.publication-stat-card {
    min-height: 190px;
    display: grid;
    align-content: start;
    padding: 1.35rem;
}

.publication-stat-card::before,
.publication-stat-card::after,
.publication-data-card::before,
.publication-data-card::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: var(--card-color, var(--primary));
    pointer-events: none;
}

.publication-stat-card::before,
.publication-data-card::before {
    top: 0;
    right: 0;
    border-top: 8px solid var(--card-color, var(--primary));
    border-right: 8px solid var(--card-color, var(--primary));
}

.publication-stat-card::after,
.publication-data-card::after {
    left: 0;
    bottom: 0;
    border-left: 8px solid var(--card-color, var(--primary));
    border-bottom: 8px solid var(--card-color, var(--primary));
}

.publication-stat-card span {
    color: #8b97a6;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.publication-stat-card strong {
    color: var(--ink);
    font-size: 2.35rem;
    line-height: 1;
    margin-top: 0.4rem;
}

.publication-stat-card h2 {
    font-size: 1rem;
    margin: 0.8rem 0 0.45rem;
}

.publication-stat-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.publication-visual-section {
    padding: 2rem 0 2.5rem;
    background: #fff;
}

.publication-visual-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f6fbff 0%, #ffffff 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(36, 48, 67, 0.06);
}

.publication-visual-panel h2 {
    font-size: 1.42rem;
}

.publication-visual-panel p {
    color: var(--muted);
    line-height: 1.65;
}

.publication-year-bars {
    display: grid;
    gap: 0.65rem;
}

.year-bar-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 32px;
    gap: 0.65rem;
    align-items: center;
}

.year-bar-row span,
.year-bar-row strong {
    color: #516176;
    font-size: 0.85rem;
    font-weight: 800;
}

.year-bar-row strong {
    text-align: right;
}

.year-bar-track {
    height: 11px;
    overflow: hidden;
    background: #e8f3fb;
    border-radius: 999px;
}

.year-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #24b7a1);
    border-radius: inherit;
}

.publication-type-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.type-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 100%;
    padding: 0.55rem 0.7rem;
    color: #344155;
    background: #fff;
    border: 1px solid var(--type-color, var(--line));
    border-left: 6px solid var(--type-color, var(--primary));
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
}

.type-chip strong {
    display: inline-grid;
    min-width: 1.55rem;
    height: 1.55rem;
    place-items: center;
    color: #fff;
    background: var(--type-color, var(--primary));
    border-radius: 50%;
    font-size: 0.72rem;
}

.stat-sun,
.pub-sun,
.type-sun {
    --card-color: #ffbf17;
    --type-color: #ffbf17;
}

.stat-slate,
.pub-slate,
.type-slate {
    --card-color: #8fa3bb;
    --type-color: #8fa3bb;
}

.stat-green,
.pub-green,
.type-green {
    --card-color: #72c45b;
    --type-color: #72c45b;
}

.stat-teal,
.pub-teal,
.type-teal {
    --card-color: #20bf7a;
    --type-color: #20bf7a;
}

.stat-aqua,
.pub-aqua,
.type-aqua {
    --card-color: #72d9dc;
    --type-color: #72d9dc;
}

.stat-blue,
.pub-blue,
.type-blue {
    --card-color: #3c93d0;
    --type-color: #3c93d0;
}

.stat-stone,
.pub-stone,
.type-stone {
    --card-color: #99877c;
    --type-color: #99877c;
}

.stat-orange,
.pub-orange,
.type-orange {
    --card-color: #ff7b22;
    --type-color: #ff7b22;
}

.stat-rose,
.pub-rose,
.type-rose {
    --card-color: #ed6aa5;
    --type-color: #ed6aa5;
}

.publications-browser {
    background: #fff;
}

.publication-filter {
    margin-bottom: 2rem;
    background: #f6fbff;
}

.publication-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.publication-data-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--card-color, var(--primary)) 7%, #fff) 0%, #fff 38%),
        #fff;
}

.pub-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.pub-index {
    color: var(--card-color, var(--primary));
    font-size: 2.05rem;
    font-weight: 850;
    line-height: 1;
}

.pub-type {
    display: block;
    color: var(--card-color, var(--primary));
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pub-card-head strong {
    color: #6a788a;
    font-size: 0.86rem;
}

.publication-data-card h2 {
    font-size: 1.08rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.pub-meta {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.pub-meta dt {
    color: #8a97a8;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pub-meta dd {
    color: #556477;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 0.5rem;
}

.publication-data-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.62;
}

.pub-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.pub-status,
.pub-doi {
    display: inline-flex;
    max-width: 100%;
    padding: 0.42rem 0.58rem;
    color: #506075;
    background: #f4f9fd;
    border: 1px solid color-mix(in srgb, var(--card-color, var(--primary)) 28%, var(--line));
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 750;
}

.pub-doi {
    overflow-wrap: anywhere;
}

.pub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.pub-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.72rem;
    color: #fff;
    background: var(--card-color, var(--primary));
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.pub-sun .pub-actions a,
.pub-green .pub-actions a,
.pub-aqua .pub-actions a,
.type-sun strong,
.type-green strong,
.type-aqua strong {
    color: var(--ink);
}

@media (max-width: 1199px) {
    .publication-stat-grid,
    .publication-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .publication-visual-panel {
        grid-template-columns: 1fr 1fr;
    }

    .publication-type-cloud {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .publications-hero {
        padding: 3rem 0 2.4rem;
    }

    .publication-stat-grid,
    .publication-card-grid,
    .publication-visual-panel {
        grid-template-columns: 1fr;
    }

    .publication-data-card {
        min-height: auto;
    }

    .publication-type-cloud {
        grid-column: auto;
    }
}
