/* =========================
   1) Tokens
========================= */
:root {
    --primary: #901a42;
    --primary-dark: #721434;
    --secondary: #0e6c74;
    --secondary-dark: #0b555b;
    --accent: #bc8f24;

    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #eef1f4;
    --gray-200: #dbe1e7;
    --gray-300: #c3ccd6;
    --gray-500: #6b7785;
    --gray-700: #364150;
    --charcoal: #1b2430;

    --text-main: var(--charcoal);
    --text-muted: var(--gray-500);
    --bg-main: var(--white);
    --bg-soft: var(--off-white);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;

    --shadow-sm: 0 4px 14px rgba(27, 36, 48, 0.06);
    --shadow-md: 0 12px 32px rgba(27, 36, 48, 0.08);

    --section-space: clamp(3.5rem, 6vw, 6rem);
    --container-max: 1240px;
    --transition: 220ms ease;
}

/* =========================
   2) Layout
========================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-main);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
}

section {
    padding: var(--section-space) 0;
}

.bg-light,
.bg-white {
    background-color: var(--bg-main) !important;
}

.bg-primary,
.text-bg-primary {
    background: var(--primary) !important;
}

.bg-secondary,
.text-bg-secondary {
    background: var(--secondary) !important;
}

/* =========================
   3) Typography
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

h1,
.display-3,
.display-4 {
    font-size: clamp(2.15rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
}

h2,
.display-5,
.display-6 {
    font-size: clamp(1.8rem, 4vw, 2.55rem) !important;
    font-weight: 700 !important;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
}

p,
.lead {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.72;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

.section-kicker,
.tracking-widest,
.tracking-wider,
.tracking-wide {
    font-size: 0.76rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em !important;
    color: var(--accent);
}

/* =========================
   4) Header/Nav
========================= */
.top-utility-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.35rem 0;
}

.top-utility-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}

.top-utility-link {
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.top-utility-link:hover,
.top-utility-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.zihi-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(8px);
}

.zihi-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 52px;
    width: auto;
}

.header-nav {
    margin-left: auto;
    display: none;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0.8rem 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle i {
    font-size: 0.72rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    margin-top: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    min-width: 250px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    color: var(--gray-700);
    font-size: 0.92rem;
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--primary);
}

.nav-dropdown.is-open .dropdown-menu {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--charcoal);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    padding: 1rem 1rem 1.25rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
}

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

/* =========================
   5) Hero
========================= */
.page-hero,
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border-bottom: 1px solid var(--gray-200);
    min-height: auto;
    text-align: left;
    overflow: hidden;
}

.page-hero .container,
.hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-eyebrow,
.hero-section .hero-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.page-hero h1,
.hero-section h1,
.hero-title {
    color: var(--charcoal);
    max-width: 18ch;
    margin-bottom: 1rem;
}

.page-hero p,
.hero-section p,
.hero-section .lead {
    color: var(--gray-700);
    max-width: 64ch;
    opacity: 1 !important;
}

.hero-overlay,
.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.56) 75%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-carousel,
.hero-content-slide {
    position: relative;
    min-height: 280px;
}

.hero-content-slide {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-content-slide.active {
    opacity: 1;
}

.hero-indicators {
    margin-top: 1.5rem;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    background: transparent;
}

.hero-indicator.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* =========================
   6) Sections
========================= */
.divider {
    width: 64px;
    height: 2px;
    background: var(--accent);
    margin: 1rem 0;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

.approach-band,
.community-section,
.stats-hero,
.priority-section {
    background: var(--off-white);
    color: var(--text-main);
    position: relative;
}

.community-section h2,
.approach-band h2 {
    color: var(--charcoal) !important;
    text-shadow: none !important;
}

.community-section .lead,
.approach-band .lead {
    color: var(--gray-700) !important;
}

/* =========================
   7) Cards
========================= */
.card,
.pillar-card,
.pill-card,
.approach-card,
.feature-chip,
.report-tile,
.pub-card,
.policy-tile,
.insight-card {
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    background: var(--white) !important;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover,
.pillar-card:hover,
.pill-card:hover,
.approach-card:hover,
.report-tile:hover,
.pub-card:hover,
.policy-tile:hover,
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md) !important;
}

.card-body {
    padding: 1.5rem;
}

.pillar-card,
.pill-card {
    text-align: left;
    padding: 1.5rem;
    aspect-ratio: auto;
}

.pill-card {
    border-bottom-left-radius: var(--radius-md) !important;
}

.pillar-icon,
.pill-icon,
.icon-box,
.icon-box-lg {
    width: 54px !important;
    height: 54px !important;
    border-radius: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: none !important;
}

.feature-chip {
    padding: 1rem;
    box-shadow: none !important;
}

.stat-card,
.evidence-stat-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    background: #fff;
    box-shadow: none;
    color: var(--text-main) !important;
}

.stat-cite {
    color: var(--text-muted) !important;
}

.report-cover,
.pub-cover,
.policy-cover {
    background-size: cover !important;
    background-position: center !important;
    background-color: var(--off-white) !important;
}

.headshot-frame,
.bio-modal-photo {
    border-radius: 12px !important;
}

.bio-modal-content {
    background: #fff !important;
    border: 1px solid var(--gray-200) !important;
    box-shadow: var(--shadow-md) !important;
}

.bio-modal-name {
    color: var(--charcoal) !important;
}

.bio-modal-rule {
    border-top-color: var(--gray-200) !important;
}

.bio-modal-linkedin {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
}

/* =========================
   8) Forms
========================= */
.form-control,
.form-select,
textarea,
input {
    border: 1px solid var(--gray-300) !important;
    border-radius: 10px !important;
    padding: 0.72rem 0.9rem;
    background: #fff;
    color: var(--charcoal);
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 0.17rem rgba(14, 108, 116, 0.15) !important;
}

.btn,
.primary-btn {
    border-radius: 10px !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.72rem 1.1rem;
    border-width: 1px !important;
    box-shadow: none !important;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary,
.primary-btn {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.primary-btn:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: none !important;
}

.btn-secondary {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}

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

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.btn-outline-secondary {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-secondary:hover {
    background: var(--secondary) !important;
    color: #fff !important;
}

.btn-accent,
.bg-accent {
    background: var(--accent) !important;
    color: #fff !important;
}

.rounded-pill,
.rounded-5,
.rounded-4 {
    border-radius: var(--radius-md) !important;
}

/* =========================
   9) Footer
========================= */
.site-footer {
    border-top: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
}

.newsletter-section {
    border-bottom: 1px solid var(--gray-200);
    background: var(--off-white);
}

.newsletter-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.newsletter-copy h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.newsletter-copy p {
    margin-top: 0.35rem;
    margin-bottom: 0;
}

.newsletter-form {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1rem;
}

.newsletter-grid {
    display: grid;
    gap: 0.8rem;
}

.newsletter-field {
    display: grid;
    gap: 0.35rem;
}

.newsletter-field span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-700);
    font-weight: 700;
}

.newsletter-actions {
    display: flex;
    align-items: end;
}

.site-footer-main {
    background: #fff;
}

.footer-logo {
    width: 135px;
    height: auto;
}

.footer-heading {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-700);
    text-decoration: none;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.footer-contact p i {
    width: 1.1rem;
    flex: 0 0 1.1rem;
    text-align: center;
    line-height: 1;
}

.footer-contact p span,
.footer-contact p a {
    line-height: 1.45;
}

.footer-contact a {
    color: var(--gray-700);
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.site-footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* =========================
   10) Utilities
========================= */
a {
    color: var(--primary);
    text-decoration: none;
}

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

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

#scroll-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
}

#scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: min(380px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    z-index: 1060;
}

.cookie-banner h4 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.cookie-banner p {
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.report-overlay,
.hero-title .accent-text,
.hero-title .hero-subline,
.hero-title .hero-subline-inline,
.accent-italic {
    font-style: normal !important;
    font-family: inherit !important;
}

@media (min-width: 992px) {
    .header-nav {
        display: inline-flex;
    }

    .mobile-menu-toggle,
    .mobile-nav {
        display: none !important;
    }

    .newsletter-shell {
        grid-template-columns: minmax(280px, 1fr) minmax(500px, 2fr);
        align-items: center;
    }

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

    .newsletter-field-wide {
        grid-column: auto;
    }
}

@media (max-width: 991.98px) {
    .top-utility-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
    }

    .header-container {
        min-height: 72px;
    }

    .brand-logo {
        height: 44px;
    }

    .header-actions .primary-btn-sm {
        display: none;
    }

    .page-hero,
    .hero-section {
        text-align: center;
    }

    .page-hero h1,
    .hero-section h1,
    .hero-title,
    .page-hero p,
    .hero-section p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Compatibility helpers */
.bg-light-primary { background: rgba(144, 26, 66, 0.08) !important; }
.bg-light-secondary { background: rgba(14, 108, 116, 0.09) !important; }
.bg-light-accent { background: rgba(188, 143, 36, 0.13) !important; }
.text-gray-300 { color: var(--gray-300) !important; }
.img-zoom-container { overflow: hidden; }
.img-zoom { transition: transform 280ms ease; }
.img-zoom-container:hover .img-zoom { transform: scale(1.03); }
.report-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 36, 48, 0.48);
    opacity: 0;
    transition: opacity 180ms ease;
}
.img-zoom-container:hover .report-overlay { opacity: 1; }
.contact-social-btn { width: 44px; height: 44px; }
.blog-hero {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border-bottom: 1px solid var(--gray-200);
}
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero__overlay { display: none; }
.blog-title { color: var(--charcoal); }
.blog-breadcrumb .breadcrumb-item,
.blog-breadcrumb .breadcrumb-item a,
.meta-bar,
.meta-item,
.meta-sep { color: var(--gray-700) !important; }
.meta-pill {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
}

.blog-filter-trigger {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(114, 20, 52, 0.24);
    transition: background-color 220ms ease;
}

.blog-filter-trigger:hover,
.blog-filter-trigger:focus-visible {
    background: var(--primary-dark);
    color: #fff;
}

.blog-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(27, 36, 48, 0.48);
    z-index: 1040;
}

.blog-filter-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(880px, calc(100vw - 2rem));
    z-index: 1050;
}

.blog-filter-modal .blog-filter-shell {
    background: #fff;
    margin: 0;
    box-shadow: 0 24px 48px rgba(27, 36, 48, 0.2);
}

.blog-filter-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    background: #fff;
    color: var(--gray-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-filter-close:hover,
.blog-filter-close:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-page-hero {
    padding-top: 1.25rem !important;
    padding-bottom: 1rem !important;
}

.blog-page-hero .container {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    max-width: 980px;
}

.blog-page-hero .hero-eyebrow,
.blog-page-hero h1,
.blog-page-hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.blog-page-hero .hero-eyebrow {
    max-width: 26rem;
}

.blog-page-hero h1 {
    max-width: 12ch;
    line-height: 1.02;
    margin-bottom: 1.1rem;
}

.blog-page-hero p {
    max-width: 46rem;
    margin-bottom: 0;
}

.blog-list-section {
    padding-top: 1rem !important;
    padding-bottom: 2.5rem !important;
}

.blog-detail-section {
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
    background: #f7f9fb !important;
}

.blog-reading-main {
    background: #f7f9fb;
}

.reading-progress {
    position: sticky;
    top: 82px;
    z-index: 1020;
    height: 3px;
    background: rgba(14, 108, 116, 0.12);
}

.reading-progress span {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: width 120ms ease-out;
}

.blog-article-shell {
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 28px rgba(27, 36, 48, 0.08) !important;
    max-width: 980px;
    margin-inline: auto;
    background: #fff !important;
}

.blog-article-kicker-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-article-kicker,
.blog-article-category {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.7rem;
}

.blog-article-kicker {
    background: rgba(144, 26, 66, 0.1);
    color: var(--primary);
}

.blog-article-category {
    background: rgba(14, 108, 116, 0.12);
    color: var(--secondary);
}

.blog-article-title {
    font-size: clamp(1.95rem, 3vw, 2.9rem) !important;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-top: 0.2rem;
}

.blog-article-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0 1.1rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.blog-author-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(188, 143, 36, 0.55);
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 143, 36, 0.12);
}

.blog-author-name {
    color: var(--primary);
    font-size: 0.98rem;
    line-height: 1.2;
    font-weight: 700;
}

.blog-author-date {
    color: var(--gray-700);
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-inline-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-engage-pill {
    height: 34px;
    min-width: 52px;
    padding: 0 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(144, 26, 66, 0.22);
    background: rgba(144, 26, 66, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.blog-engage-pill:hover {
    background: rgba(144, 26, 66, 0.15);
    border-color: rgba(144, 26, 66, 0.4);
}

.blog-engage-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.blog-share-pill {
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, filter 160ms ease;
}

.blog-share-pill:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.share-facebook { background: var(--primary); }
.share-x { background: var(--charcoal); }
.share-telegram { background: var(--secondary); }
.share-whatsapp { background: #1a9a56; }
.share-linkedin { background: #0a6ea8; }

.vocalize-player {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    background:
        linear-gradient(120deg, rgba(144, 26, 66, 0.06), rgba(14, 108, 116, 0.08));
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.95rem 1rem;
}

.vocalize-main {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vocalize-play {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vocalize-title {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.02rem;
}

.vocalize-sub {
    color: #6f7f94;
    font-size: 0.75rem;
}

.vocalize-time {
    margin-top: 0.2rem;
    color: var(--gray-700);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.vocalize-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
}

.vocalize-mini {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    background: #fff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.vocalize-rate {
    border: 1px solid var(--gray-300) !important;
    border-radius: 999px !important;
    background: #fff;
    padding: 0.2rem 0.55rem;
    min-width: 62px;
    font-size: 0.8rem;
    color: var(--charcoal);
}

.vocalize-voice {
    min-width: 92px;
}

.vocalize-volume {
    width: 110px;
}

.comments-modal-content {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
}

.comments-modal-content .modal-header {
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(120deg, rgba(144, 26, 66, 0.05), rgba(14, 108, 116, 0.06));
}

.article-toc {
    max-width: 72ch;
    margin-inline: auto;
    padding: 1.15rem 1.15rem 1rem;
    border: 1px solid rgba(14, 108, 116, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(14, 108, 116, 0.08), rgba(14, 108, 116, 0.02)),
        #ffffff;
    box-shadow: 0 10px 24px rgba(27, 36, 48, 0.06);
    position: relative;
    overflow: hidden;
}

.article-toc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.article-toc-title {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.article-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-item;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.article-toc li {
    margin: 0;
    counter-increment: toc-item;
}

.article-toc li.toc-sub {
    grid-column: span 1;
}

.article-toc a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.58rem 0.68rem;
    border: 1px solid rgba(14, 108, 116, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
    transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.article-toc a::before {
    content: counter(toc-item, decimal-leading-zero);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondary);
    background: rgba(14, 108, 116, 0.12);
    border-radius: 999px;
    min-width: 2.05rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
}

.article-toc a:hover {
    color: var(--primary);
    border-color: rgba(144, 26, 66, 0.28);
    background: rgba(144, 26, 66, 0.05);
    transform: translateY(-1px);
}

.content-text,
.article-sections,
.references-accordion {
    max-width: 72ch;
    margin-inline: auto;
}

.content-text p,
.content-text li,
.article-sections p,
.article-sections li {
    font-size: 1.1rem;
    line-height: 1.9 !important;
    color: var(--gray-700);
    margin-bottom: 1.05rem;
}

.content-text h2,
.article-sections h2 {
    margin-top: 2.2rem;
    margin-bottom: 0.9rem;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    color: var(--charcoal);
}

.content-text h3,
.article-sections h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
    color: var(--secondary);
}

.content-text blockquote {
    margin: 1.6rem 0;
    padding: 0.8rem 1rem;
    border-left: 4px solid var(--accent);
    background: rgba(188, 143, 36, 0.08);
    border-radius: 8px;
}

.content-text a {
    color: var(--secondary);
    text-decoration-thickness: 1.5px;
}

.content-text a:hover {
    color: var(--primary);
}

.blog-news-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(27, 36, 48, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(27, 36, 48, 0.12);
}

.blog-news-media {
    height: 245px;
    background: #e8edf2;
    overflow: hidden;
}

.blog-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-news-media-placeholder {
    background: linear-gradient(120deg, #d9e1ea, #eef3f8);
}

.blog-news-body {
    padding: 1.5rem 1.6rem 1.45rem;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-news-meta {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #596b82;
    font-weight: 700;
}

.blog-news-meta-dot {
    margin: 0 0.45rem;
    color: #97a3b3;
}

.blog-news-meta-ago {
    white-space: nowrap;
}

.blog-news-title {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #081a3b;
    font-weight: 700;
}

.blog-news-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #304a68;
    margin: 0;
}

.blog-news-read {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-decoration: none;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    margin-top: auto;
}

.blog-news-read:hover {
    color: var(--primary-dark);
}

@media (max-width: 991.98px) {
    .blog-page-hero {
        padding-top: 0.8rem !important;
        padding-bottom: 0.8rem !important;
    }

    .blog-article-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
    }

    .blog-page-hero h1 {
        max-width: 14ch;
    }

    .blog-page-hero p {
        max-width: 34rem;
    }

    .blog-article-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-inline-share {
        width: 100%;
        gap: 0.4rem;
        overflow: hidden;
        align-items: center;
    }

    .blog-engage-pill {
        height: 32px;
        min-width: 44px;
        padding: 0 0.55rem;
        font-size: 0.8rem;
        gap: 0.28rem;
    }

    .blog-share-pill {
        width: 32px;
        height: 32px;
        font-size: 0.86rem;
    }

    .reading-progress {
        top: 72px;
    }

    .content-text p,
    .content-text li,
    .article-sections p,
    .article-sections li {
        font-size: 1.04rem;
        line-height: 1.82 !important;
    }

    .article-toc ol {
        grid-template-columns: 1fr;
    }

    .blog-filter-modal {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
    }

    .blog-filter-modal .blog-filter-shell {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .blog-news-media {
        height: 215px;
    }

    .blog-news-body {
        min-height: 300px;
        padding: 1.25rem;
    }
}

/* Premium depth pass */
.page-hero,
.hero-section {
    background:
        radial-gradient(circle at 8% 15%, rgba(144, 26, 66, 0.08), transparent 38%),
        radial-gradient(circle at 92% 10%, rgba(14, 108, 116, 0.07), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f7f9 100%);
}

.page-hero::before,
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(27, 36, 48, 0.045) 1px, transparent 1px);
    background-size: 84px 100%;
    pointer-events: none;
    opacity: 0.35;
}

.hero-slide::after {
    background:
        linear-gradient(95deg, rgba(255, 255, 255, 0.94) 18%, rgba(255, 255, 255, 0.74) 58%, rgba(255, 255, 255, 0.9) 100%),
        linear-gradient(to right, rgba(27, 36, 48, 0.04) 1px, transparent 1px);
    background-size: auto, 74px 100%;
}

.hero-brief-panel {
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(27, 36, 48, 0.08);
    padding: 1.35rem;
}

.hero-brief-panel h2 {
    font-size: 1.35rem !important;
    line-height: 1.25;
}

.hero-brief-item {
    border-top: 1px solid var(--gray-200);
    padding-top: 0.9rem;
    margin-top: 0.9rem;
}

.hero-brief-item h3 {
    color: var(--charcoal);
}

.hero-brief-item p {
    font-size: 0.94rem;
    color: var(--gray-700);
    line-height: 1.55;
}

.section-kicker {
    color: var(--secondary) !important;
}

.card,
.pillar-card,
.pill-card,
.approach-card,
.feature-chip,
.report-tile,
.pub-card,
.policy-tile,
.insight-card {
    position: relative;
    overflow: hidden;
}

.card::before,
.pillar-card::before,
.pill-card::before,
.approach-card::before,
.report-tile::before,
.pub-card::before,
.policy-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.35;
}

.card:hover::before,
.pillar-card:hover::before,
.pill-card:hover::before,
.approach-card:hover::before,
.report-tile:hover::before,
.pub-card:hover::before,
.policy-tile:hover::before {
    opacity: 0.9;
}

.btn,
.primary-btn {
    letter-spacing: 0.015em;
    font-weight: 700;
}

.btn-primary,
.primary-btn {
    box-shadow: 0 6px 18px rgba(114, 20, 52, 0.18) !important;
}

.btn-outline-primary,
.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.95);
}

.site-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.site-footer-main {
    background: transparent;
}

.footer-heading {
    color: var(--charcoal);
}

@media (max-width: 991.98px) {
    .hero-brief-panel {
        margin-top: 0.35rem;
    }
}
