﻿@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Geist:wght@100..900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #172b54;
    --gold: #c99700;
    --gold-light: #e8b800;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --text: #1a1a1a;
    --muted: #5a6272;
    --border: #ddd8ce;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Geist", sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

/* ── NAV ── */
.site-header {
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--nav-h);
    box-shadow: 0 2px 16px rgba(23,43,84,0.08);
}

.clearfix {
    clear: both
}

.header-inner {
    width: 100%;
    display: block;
    position: relative;
    padding-top: 10px;
}

.header-logo {
    float: left;
    margin-right: 10px;
}

    .header-logo img {
        height: 114px;
        width: auto;
    }

.logo-title {
    font-size: 39px;
    font-weight: 200;
    letter-spacing: -1px;
    line-height: 32px;
    text-transform: capitalize;
    color: #162d56;
    margin-top: 24px;
    font-family: 'DM Serif Display', serif;
}

    .logo-title span {
        font-size: 20px;
        color: #c99700;
        letter-spacing: 0;
    }

.social {
  position: absolute;
  right: 50px;
  top: 43px;
}

    .social a {
        background-color: #fff;
        color: #162d56;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        display: inline-block;
        line-height: 38px;
        text-align: center;
        margin-left: 5px;
        border: 1px #dbe8ff solid;
        font-size: 14px;
    }

.nav {
    border-top: 1px #dbe8ff solid;
}
/* Primary nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    height: var(--nav-h);
}

    .primary-nav > li {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .primary-nav > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 13px 15px;
            height: 100%;
            color: #000;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.01em;
            white-space: nowrap;
            position: relative;
            transition: color 0.2s;
            text-transform: uppercase;
        }

            .primary-nav > li > a:hover,
            .primary-nav > li:hover > a {
                color: var(--gold);
            }

                .primary-nav > li > a:hover::after,
                .primary-nav > li:hover > a::after {
                    transform: scaleX(1);
                }

            .primary-nav > li > a.active {
                color: var(--gold);
            }

                .primary-nav > li > a.active::after {
                    transform: scaleX(1);
                }

            /* chevron */
            .primary-nav > li > a .chevron {
                width: 10px;
                height: 10px;
                opacity: 0.45;
                transition: transform 0.25s ease, opacity 0.2s;
            }

        .primary-nav > li:hover > a .chevron {
            transform: rotate(180deg);
            opacity: 1;
        }

/* ── ANIMATED DROPDOWN ── */
.dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--white);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(23,43,84,0.12), 0 2px 8px rgba(0,0,0,0.06);
    min-width: 220px;
    list-style: none;
    z-index: 999;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    border-radius: 0 0 8px 8px;
}

.primary-nav > li:hover .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

/* Staggered item reveal */
.dropdown li {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.primary-nav > li:hover .dropdown li {
    opacity: 1;
    transform: translateX(0);
}

    .primary-nav > li:hover .dropdown li:nth-child(1) {
        transition-delay: 0.04s;
    }

    .primary-nav > li:hover .dropdown li:nth-child(2) {
        transition-delay: 0.08s;
    }

    .primary-nav > li:hover .dropdown li:nth-child(3) {
        transition-delay: 0.12s;
    }

    .primary-nav > li:hover .dropdown li:nth-child(4) {
        transition-delay: 0.16s;
    }

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s, padding-left 0.18s;
}

.dropdown li:last-child a {
    border-bottom: none;
}

/* Gold left-border on hover */
.dropdown li a::before {
    content: '';
    display: block;
    width: 2px;
    height: 0;
    background: var(--gold);
    flex-shrink: 0;
    transition: height 0.18s ease;
    border-radius: 1px;
}

.dropdown li a:hover {
    background: #fafaf8;
    color: var(--gold);
}

    .dropdown li a:hover::before {
        height: 14px;
    }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
        transform-origin: center;
    }

    /* Hamburger → X when open */
    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 1997;
    overflow-y: auto;
    padding: 0 0 40px;
    border-top: 2px solid var(--gold);
}

    .mobile-nav.open {
        display: block;
        top: 0 !important;
    }

    /* Top-level link (no submenu) */
    .mobile-nav > a {
        display: block;
        padding: 16px 28px;
        color: rgba(255,255,255,0.92);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.01em;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    }

        .mobile-nav > a:hover,
        .mobile-nav > a:focus {
            color: var(--gold-light);
            background: rgba(255,255,255,0.04);
            padding-left: 34px;
        }

/* Collapsible group (parent item with submenu) */
.mobile-nav-group {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Toggle button = the parent label + the +/− indicator */
.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 0;
    padding: 16px 28px;
    color: rgba(255,255,255,0.92);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

    .mobile-nav-toggle:hover,
    .mobile-nav-toggle:focus {
        color: var(--gold-light);
        background: rgba(255,255,255,0.04);
        padding-left: 34px;
        outline: none;
    }

    .mobile-nav-toggle .toggle-icon {
        position: relative;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-left: 12px;
    }

        /* Horizontal bar of the + (always visible) */
        .mobile-nav-toggle .toggle-icon::before,
        .mobile-nav-toggle .toggle-icon::after {
            content: "";
            position: absolute;
            background: var(--gold);
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.25s ease;
        }

        .mobile-nav-toggle .toggle-icon::before {
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            transform: translateY(-50%);
        }

        /* Vertical bar of the + (rotates away when open) */
        .mobile-nav-toggle .toggle-icon::after {
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            transform: translateX(-50%) rotate(0deg);
        }

/* Open state: vertical bar collapses → becomes a minus */
.mobile-nav-group.is-open .mobile-nav-toggle .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.mobile-nav-group.is-open .mobile-nav-toggle {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.06);
}

/* Submenu — collapsed by default, expands smoothly */
.mobile-nav .mobile-sub {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: rgba(0,0,0,0.18);
    transition: grid-template-rows 0.35s ease;
}

.mobile-nav-group.is-open .mobile-sub {
    grid-template-rows: 1fr;
}

.mobile-nav .mobile-sub > div {
    min-height: 0;
    overflow: hidden;
}

.mobile-nav .mobile-sub a {
    display: block;
    padding: 12px 28px 12px 44px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

    .mobile-nav .mobile-sub a::before {
        content: "";
        position: absolute;
        left: 28px;
        top: 50%;
        width: 6px;
        height: 1px;
        background: var(--gold);
        opacity: 0.5;
        transform: translateY(-50%);
        transition: width 0.2s ease, opacity 0.2s ease;
    }

    .mobile-nav .mobile-sub a:hover,
    .mobile-nav .mobile-sub a:focus {
        color: var(--gold-light);
        background: rgba(255,255,255,0.04);
        padding-left: 50px;
    }

        .mobile-nav .mobile-sub a:hover::before,
        .mobile-nav .mobile-sub a:focus::before {
            width: 10px;
            opacity: 1;
        }

/* Legacy support: hide the old static section labels (no longer used) */
.mobile-nav .mobile-section-label {
    display: none;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
    position: sticky;
    top: 0;
    background: var(--navy);
    z-index: 2;
}

.mobile-nav-close {
    background: none;
    border: 0;
    color: #fff;
    font-size: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    border-radius: 50%;
}

    .mobile-nav-close:hover {
        color: var(--gold-light);
        border-color: var(--gold);
        transform: rotate(90deg);
    }

.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 0;
}

/* Slides track */
.slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* Individual slide */
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image layer */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Dark overlay */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(23, 43, 84, 0.88) 0%, rgba(23, 43, 84, 0.65) 50%, rgba(23, 43, 84, 0.50) 100% );
    z-index: 1;
}

/* Slide 1 — deep navy gradient only */
.slide-1 .slide-bg {
    background: linear-gradient(135deg, #0d1f3e 0%, #172b54 40%, #1e3a6e 100%);
}

/* Slide 2 — darker warm tone */
.slide-2 .slide-bg {
    background: linear-gradient(135deg, #1a1200 0%, #2b1f00 40%, #172b54 100%);
}

/* Slide 3 — deep teal-navy */
.slide-3 .slide-bg {
    background: linear-gradient(135deg, #0a1a2e 0%, #112244 50%, #172b54 100%);
}

/* Decorative geometric accent */
.slide-accent {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    opacity: 0.07;
    z-index: 1;
    transition: opacity 0.6s;
}

.slide.active .slide-accent {
    opacity: 0.12;
}

/* Content */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

.slide-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(201, 151, 0, 0.4);
    padding: 5px 14px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
    border-radius: 4px;
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(28px, 4.5vw, 52px);
    /*! font-weight: 300; */
    color: var(--white);
    line-height: 1.13;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    max-width: 640px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s 0.22s, transform 0.55s 0.22s;
    /*! font-family: 'DM Serif Display', serif; */
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title em {
    font-style: italic;
    color: var(--gold);
}

.slide-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s 0.34s, transform 0.55s 0.34s;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, gap 0.2s;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s 0.46s, transform 0.5s 0.46s, background 0.2s;
    border-radius: 6px;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: var(--gold-light);
}

.slide-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.slide-btn:hover svg {
    transform: translateX(4px);
}

/* ── SLIDER CONTROLS ── */

/* Prev / Next arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    border-radius: 50%;
}

    .slider-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow.prev {
        left: 32px;
    }

    .slider-arrow.next {
        right: 32px;
    }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 80px;
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
}

    .slider-dot.active {
        background: var(--gold);
        width: 48px;
    }

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    z-index: 10;
    width: 0%;
    transition: width 0.1s linear;
}

/* Slide counter */
.slider-counter {
    position: absolute;
    bottom: 26px;
    right: 52px;
    z-index: 10;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
}

    .slider-counter span {
        color: rgba(255,255,255,0.85);
        font-weight: 600;
    }

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 6px;
}

    .btn-primary:hover {
        background: var(--gold-light);
    }

/* ── SECTIONS ── */
section {
    padding: 80px 32px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'DM Serif Display', serif;
}
/* ── IRAQ ENERGY OUTLOOK ── */
.outlook {
    background: #f7f6f2;
    padding: 60px 0;
    overflow: hidden;
}

.outlook-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

    .outlook-inner::after {
        background-color: #172b54;
        content: '';
        width: 100%;
        height: 100%;
        left: 100%;
        top: 0;
        position: absolute;
    }
/* Left — cover image pane */
.outlook-cover {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 20px;
}

    .outlook-cover img {
        width: 100%;
        display: block;
        filter: brightness(0.92);
        transition: filter 0.4s, transform 0.5s ease;
        border-radius: 10px;
    }

.outlook:hover .outlook-cover img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* edition badge */
.outlook-edition-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    z-index: 2;
    border-radius: 4px;
}

/* Right — text pane */
.outlook-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

    /* Subtle decorative line accent */
    .outlook-content::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20px;
        bottom: 20px;
        width: 1px;
        background: var(--gold);
    }

.outlook-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .outlook-label::after {
        content: '';
        display: block;
        height: 1px;
        width: 48px;
        background: rgba(201,151,0,0.4);
    }

.outlook-title {
    /*! font-weight: 300; */
    color: #172b54;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.outlook-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.outlook-divider {
    width: 48px;
    height: 2px;
    background: #ddd;
    margin-bottom: 20px;
}

.outlook-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 790px;
    margin-bottom: 20px;
}

    .outlook-desc strong {
        color: rgba(255,255,255,0.92);
        font-weight: 400;
    }

/* Topics list */
.outlook-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.outlook-topic {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 5px 14px;
    transition: border-color 0.2s, color 0.2s;
    border-radius: 4px;
}

    .outlook-topic:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* CTA row */
.outlook-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.outlook-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, gap 0.2s;
    flex-shrink: 0;
    border-radius: 6px;
}

    .outlook-btn svg {
        width: 13px;
        height: 13px;
        transition: transform 0.2s;
    }

    .outlook-btn:hover {
        background: var(--gold-light);
    }

        .outlook-btn:hover svg {
            transform: translateX(4px);
        }

.outlook-archive {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

    .outlook-archive:hover {
        color: rgba(255,255,255,0.8);
        border-bottom-color: rgba(255,255,255,0.3);
    }

/* Edition meta */
.outlook-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dbe8ff;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.outlook-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.outlook-meta-label {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.outlook-meta-value {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
}
/* About */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-body p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

    .about-body p strong {
        color: var(--navy);
        font-weight: 500;
    }

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-card {
    padding: 28px 32px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
}

    .about-card h3 {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
    }

    .about-card h4 {
        font-size: 17px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .about-card p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
    }

/* Pillars */
.pillars {
    background: var(--navy);
    color: var(--white);
}

    .pillars .section-label {
        color: rgba(201,151,0,0.8);
    }

    .pillars h2 {
        color: var(--white);
    }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.pillar {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

    .pillar:last-child {
        border-right: none;
    }

.pillar-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 24px;
}

.pillar h3 {
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.pillar p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* Founder */
.founder {
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    border-radius: 10px;
}

.founder-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.founder-name {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.founder-title {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 400;
}

.founder-bio {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

/* CTA */
.cta {
    background: var(--off-white);
    text-align: center;
}

    .cta h2 {
        margin-bottom: 16px;
    }

    .cta p {
        font-size: 16px;
        color: var(--muted);
        max-width: 520px;
        margin: 0 auto 36px;
        line-height: 1.7;
    }

/* Footer */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 28px 32px;
    font-size: 13px;
    border-top: 2px solid var(--gold);
}

/* ── RESPONSIVE ── */
/* ── NEWS & ARTICLES ── */
.news {
    background: #fff;
    padding: 80px 0px;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 24px;
}

    .news-header h2 {
        margin-bottom: 0;
    }

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
    border-radius: 6px;
}

    .news-view-all:hover {
        border-bottom-color: var(--gold);
        gap: 13px;
    }

    .news-view-all svg {
        width: 13px;
        height: 13px;
    }

/* Two-column grid */
.news-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

/* Each card: horizontal layout — image left, text right */
.news-card {
    background: var(--white);
    display: grid;
    min-height: 200px;
    transition: box-shadow 0.22s;
    text-decoration: none;
    color: inherit;
    position: relative;
    border: 1px solid #dbe8ff;
    border-radius: 10px;
    overflow: hidden;
}

    .news-card:hover {
        box-shadow: inset 0 0 0 2px var(--gold);
        z-index: 1;
    }

/* Image pane */
.news-card-img-placeholder {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

    .news-card-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
/* Subtle zoom on hover */
.news-card:hover .news-card-img-placeholder svg {
    transform: scale(1.04);
    transition: transform 0.5s ease;
}

/* Text pane */
.news-card-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.news-tag {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 3px 9px;
    flex-shrink: 0;
    border-radius: 4px;
}

    .news-tag.tag-report {
        background: var(--navy);
    }

    .news-tag.tag-event {
        background: #2d6b4a;
    }

    .news-tag.tag-opinion {
        background: #7a3a00;
    }

    .news-tag.tag-news {
        background: #444;
    }

.news-date {
    font-size: 11.5px;
    color: var(--muted);
}

.news-card-title {
    font-size: 18px;
    /*! font-weight: 100; */
    color: #000;
    line-height: 1.38;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.18s;
    /*! font-family: 'DM Serif Display', serif; */
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
    flex: 1;
    margin-bottom: 20px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
    align-self: flex-start;
    border-radius: 6px;
}

    .news-read-more svg {
        width: 11px;
        height: 11px;
    }

    .news-read-more:hover {
        gap: 12px;
    }

/* Gold left accent line on card hover */
.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.news-card:hover::before {
    transform: scaleY(1);
}

/* ── RESPONSIVE ── */

/* ══════════════════════════════════════════
   NEW EDITORIAL SECTIONS
══════════════════════════════════════════ */

/* ── Shared section wrapper ── */
.hs-section {
    padding: 72px 0;
}

    .hs-section.hs-dark {
        background: var(--navy);
        border-top: none;
    }

    .hs-section.hs-light-bg {
        background: var(--off-white);
    }

.hs-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

    .hs-section-header h2 {
        color: var(--navy);
        margin: 4px 0 0;
        /*! font-weight: 300; */
        letter-spacing: -0.02em;
    }

/* ── Tabs ── */
.hs-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px #dbe8ff solid;
    margin-bottom: 32px;
    overflow-x: auto;
}

.hs-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    text-transform: uppercase;
}

    .hs-tab:hover {
        color: var(--navy);
    }

    .hs-tab.active {
        color: var(--navy);
        border-bottom-color: var(--gold);
    }

/* ── Badges ── */
.hs-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 2px 8px;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.badge-brief {
    color: #1d4ed8;
}

.badge-report {
    color: #7c3aed;
}

.badge-data {
    color: #065f46;
}

.badge-comment {
    color: #92400e;
}

.badge-event {
    color: var(--navy);
    background-color: #ecf2ff;
    border: 0;
}

/* ── Shared read link ── */
.hs-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 12px;
    transition: gap .2s;
    border-radius: 6px;
}

    .hs-read-link:hover {
        gap: 10px;
    }

    .hs-read-link svg {
        width: 12px;
        height: 12px;
    }

.hs-date {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .02em;
}

/* ══ RESEARCH & PUBLICATIONS — 2 COL ══ */
.hs-research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hs-featured-card {
    border: 1px #dbe8ff solid;
    border-radius: 10px;
    overflow: hidden;
}

.hs-featured-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

    .hs-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

.hs-featured-card:hover .hs-featured-img img {
    transform: scale(1.03);
}

.hs-featured-img .hs-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    padding: 3px 10px;
}

.hs-featured-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.hs-featured-title {
    font-size: 24px;
    /*! font-weight: 600; */
    color: #000;
    margin: 10px 0 12px;
    line-height: 1.4;
    letter-spacing: 0;
    /*! font-family: 'DM Serif Display', serif; */
}

.hs-featured-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.hs-list {
    display: flex;
    flex-direction: column;
}

.hs-list-item {
    padding: 22px 0;
    border-top: 1px #dbe8ff solid;
}

    .hs-list-item:first-child {
        /*! border-top: 1px solid var(--border); */
    }

.hs-list-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hs-list-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    /*! font-weight: 100; */
    line-height: 1.4;
    color: #000;
}

    .hs-list-item h4 a {
        color: inherit;
        text-decoration: none;
        transition: color .2s;
        /*! font-family: 'DM Serif Display', serif; */
    }

        .hs-list-item h4 a:hover {
            color: var(--gold);
        }

.hs-list-item p {
    font-size: .86rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ══ ENERGY SECTORS — 4 COL ══ */
.hs-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.hs-sector-card {
    background: var(--navy);
    padding: 36px 28px 32px;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background .25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 10px;
}

    .hs-sector-card:last-child {
        border-right: none;
    }

    .hs-sector-card:hover {
        background: #0f1e3a;
    }

.hs-sector-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: 4px;
}

    .hs-sector-icon svg {
        width: 100%;
        height: 100%;
    }

.hs-sector-card h3 {
    font-size: 20px;
    /*! font-weight: 100; */
    color: var(--white);
    margin: 0;
    letter-spacing: 0;
    /*! font-family: 'DM Serif Display', serif; */
}

.hs-sector-card p {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.hs-sector-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .2s;
}

    .hs-sector-link:hover {
        gap: 9px;
    }

    .hs-sector-link svg {
        width: 11px;
        height: 11px;
    }

.hs-sector-count {
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

.hs-sector-strip {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
}

.hs-strip-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}

.hs-strip-items {
    display: flex;
    flex-direction: column;
}

.hs-strip-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s;
    font-weight: bold;
}

    .hs-strip-item:hover {
        color: var(--white);
    }

    .hs-strip-item .hs-date {
        margin-left: auto;
        color: rgba(255,255,255,.3);
        flex-shrink: 0;
    }

    .hs-strip-item .hs-badge {
        font-size: .66rem;
        border-color: rgba(255,255,255,.2);
        color: rgba(255,255,255,.55);
        flex-shrink: 0;
        border-radius: 4px;
    }

/* ══ SECTOR — MOST RECENT NEWS GRID ══ */
.hs-sector-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 4px;
}

.hs-sector-news-card {
    background: #fff;
    border: 1px solid #2e4065;
    display: flex;
    flex-direction: column;
    transition: background .2s, border-color .2s;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
}

    .hs-sector-news-card:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(201,151,0,0.4);
    }

.hs-sector-news-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

    .hs-sector-news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.hs-sector-news-card:hover .hs-sector-news-img img {
    transform: scale(1.05);
}

.hs-sector-news-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hs-sector-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hs-sector-news-meta .hs-date {
        font-size: .72rem;
        color: rgba(255,255,255,.35);
        margin-left: auto;
    }

.hs-sector-news-body h4 {
    font-size: .935rem;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    margin: 0;
    flex: 1;
}

    .hs-sector-news-body h4 a {
        color: inherit;
        text-decoration: none;
        transition: color .2s;
    }

        .hs-sector-news-body h4 a:hover {
            color: var(--gold-light);
        }

.hs-sector-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .2s, color .2s;
    margin-top: auto;
}

    .hs-sector-news-link:hover {
        gap: 9px;
        color: var(--gold-light);
    }

    .hs-sector-news-link svg {
        width: 11px;
        height: 11px;
    }

/* ══ PROGRAMS & PROJECTS — 4 COL ══ */
.hs-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hs-program-card {
    border: 1px #dbe8ff solid;
    border-bottom: 3px solid;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    background: var(--white);
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
}

    .hs-program-card:hover {
        box-shadow: 0 6px 24px rgba(23,43,84,.08);
    }

/* Image wrapper with overlaid status badge */
.hs-program-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

    .hs-program-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.hs-program-card:hover .hs-program-img img {
    transform: scale(1.05);
}

.hs-program-img .hs-program-status {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 10px;
    background: var(--white);
    color: var(--muted);
    border: 1px solid var(--border);
}

/* Text content below image */
.hs-program-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hs-program-ongoing {
    border-bottom-color: var(--gold);
}

    .hs-program-ongoing .hs-program-img .hs-program-status {
        color: var(--gold);
        border-color: var(--gold);
    }

.hs-program-completed {
    border-bottom-color: #22c55e;
}

    .hs-program-completed .hs-program-img .hs-program-status {
        color: #16a34a;
        border-color: #22c55e;
    }

.hs-program-partner {
    border-bottom-color: #6366f1;
}

    .hs-program-partner .hs-program-img .hs-program-status {
        color: #4f46e5;
        border-color: #6366f1;
    }

.hs-program-card h3 {
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

.hs-program-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.hs-program-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px #dbe8ff solid;
    font-size: .78rem;
    color: var(--muted);
}

    .hs-program-meta a {
        color: var(--navy);
        font-weight: 600;
        text-decoration: none;
        font-size: .78rem;
        transition: color .2s;
    }

        .hs-program-meta a:hover {
            color: var(--gold);
        }

.hs-donors {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.hs-donor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hs-donor-tag {
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color .2s, color .2s;
    border-radius: 4px;
}

    .hs-donor-tag:hover {
        border-color: var(--navy);
        color: var(--navy);
    }

/* ══ EVENTS & INSIGHTS — 2 COL ══ */
.hs-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.hs-col-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--navy);
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.hs-event-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px #dbe8ff solid;
    align-items: flex-start;
}

.hs-event-date-block {
    flex-shrink: 0;
    width: 54px;
    text-align: center;
    background: var(--navy);
    padding: 10px 0;
    border-radius: 6px;
}

.hs-event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hs-event-month {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
}

.hs-event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .hs-event-details h4 {
        font-size: 18px;
        /*! font-weight: 100; */
        color: #000;
        margin: 4px 0 0;
        line-height: 1.4;
        /*! font-family: 'DM Serif Display', serif; */
    }

        .hs-event-details h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .hs-event-details h4 a:hover {
                color: var(--gold);
            }

    .hs-event-details p {
        font-size: .84rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.6;
    }

.hs-event-location {
    font-size: .78rem;
    color: var(--muted);
}

.hs-insight-card {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px #dbe8ff solid;
    border-radius: 10px;
    overflow: hidden;
}

.hs-insight-img {
    width: 112px;
    height: 82px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

    .hs-insight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .3s;
    }

.hs-insight-card:hover .hs-insight-img img {
    transform: scale(1.05);
}

.hs-insight-body h4 {
    font-size: 18px;
    /*! font-weight: 100; */
    color: #000;
    margin: 4px 0 6px;
    line-height: 1.4;
    /*! font-family: 'DM Serif Display', serif; */
}

    .hs-insight-body h4 a {
        color: inherit;
        text-decoration: none;
        transition: color .2s;
    }

        .hs-insight-body h4 a:hover {
            color: var(--gold);
        }

.hs-insight-body p {
    font-size: .83rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ══ RESPONSIVE — NEW SECTIONS ══ */

/* ══════════════════════════════════════════
   MEDIA QUERIES
══════════════════════════════════════════ */
@media (max-width: 1260px) {
    .container {
        width: 98%;
    }

    .primary-nav > li > a {
        padding: 13px 8px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0em;
    }
}

@media (max-width: 1100px) {
    .primary-nav > li > a {
        padding: 13px 8px;
    }

    .hs-sector-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {

    .primary-nav {
        display: none;
    }

    .hamburger {
        display: flex;
        float: right;
    }

    .header-logo img {
        height: 70px;
    }

    .logo-title {
        font-size: 24px;
        line-height: 22px;
        margin-top: 12px;
    }

    .social {
        right: 60px;
        top: 23px;
    }

    .nav {
        border-top: 0;
        position: absolute;
        z-index: 1000;
        top: 29px;
        width: 100%;
    }

    .mobile-nav {
        padding: 0 0 40px;
    }

    .news {
        padding: 40px 0;
    }
}

@media (max-width: 920px) {
    .outlook-inner {
        grid-template-columns: 1fr;
    }
.sun {
    display: none;
}
    .outlook-cover {
        min-height: 280px;
    }

        .outlook-cover img {
            object-position: center 20%;
        }

    .outlook-content {
        padding: 20px;
    }

    .outlook-label {
        font-size: 8px;
        margin-bottom: 20px;
    }

    .outlook-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .outlook-btn {
        padding: 10px 24px;
        font-size: 11px;
    }

    .outlook-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .outlook-subtitle {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .outlook-content::before {
        top: 0;
        bottom: 0;
    }

    .about-grid, .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .pillar:last-child {
            border-bottom: none;
        }

    .founder-img {
        max-width: 280px;
    }

    section {
        padding: 56px 24px;
    }

    .slide-content {
        padding: 0 64px 0 32px;
    }

    .slider-dots {
        left: 32px;
    }

    .slider-arrow.prev {
        left: 16px;
    }

    .slider-arrow.next {
        right: 16px;
    }

    .slider-counter {
        right: 28px;
    }

    .slide-accent {
        display: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        grid-template-columns: 280px 1fr;
    }

    .news-card-img-placeholder {
        height: 245px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .news {
        padding: 30px 0;
    }

    .hs-research-grid,
    .hs-events-grid,
    .hs-people-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hs-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hs-section {
        padding: 40px 0;
    }

    .hs-strip-item {
        flex-wrap: wrap;
    }

        .hs-strip-item .hs-date {
            margin-left: 0;
        }
}

@media (max-width: 768px) {

    /* ── BASE TYPOGRAPHY ── */
    body {
        font-size: 14px;
        line-height: 1.55;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    /* ── SECTIONS ── */
    section {
        padding: 40px 16px;
    }

    .container {
        width: 100%;
        padding: 0 16px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 8px;
    }

    /* ── HERO SLIDER ── */
    .hero-slider {
        height: 420px;
    }

    .slide-tag {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 16px;
        letter-spacing: 0.14em;
    }

    .slide-title {
        font-size: clamp(20px, 5.5vw, 28px);
        margin-bottom: 12px;
        max-width: 100%;
    }

    .slide-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 0.08em;
        gap: 8px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

        .slider-arrow.prev {
            left: 10px;
        }

        .slider-arrow.next {
            right: 10px;
        }

    .slider-dots {
        left: 20px;
        bottom: 20px;
        gap: 7px;
    }

    .slider-dot {
        width: 20px;
        height: 2px;
    }

        .slider-dot.active {
            width: 36px;
        }

    .slider-counter {
        font-size: 10px;
        right: 20px;
        bottom: 18px;
    }

    /* ── OUTLOOK ── */
    .outlook-inner {
        grid-template-columns: 1fr;
    }

    .outlook-cover {
        min-height: 200px;
    }

    .outlook-content {
        padding: 24px 18px;
    }

    .outlook-label {
        font-size: 9px;
        letter-spacing: 0.16em;
        margin-bottom: 12px;
    }

    .outlook-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .outlook-subtitle {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .outlook-divider {
        margin-bottom: 14px;
    }

    .outlook-desc {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .outlook-btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .outlook-archive {
        font-size: 11px;
    }

    .outlook-meta {
        margin-top: 20px;
        padding-top: 16px;
        gap: 16px;
    }

    .outlook-meta-label {
        font-size: 9px;
    }

    .outlook-meta-value {
        font-size: 12px;
    }

    .outlook-topics {
        gap: 6px;
        margin-bottom: 20px;
    }

    .outlook-topic {
        font-size: 10px;
        padding: 4px 10px;
    }

    .outlook-edition-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: 14px;
        left: 14px;
    }

    /* ── ABOUT ── */
    .about-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-body p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 12px;
    }

    .about-card {
        padding: 18px 20px;
        margin-bottom: 10px;
    }

        .about-card h3 {
            font-size: 9px;
            margin-bottom: 4px;
        }

        .about-card h4 {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .about-card p {
            font-size: 13px;
        }

    /* ── PILLARS ── */
    .pillars-grid {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .pillar {
        padding: 28px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .pillar:last-child {
            border-bottom: none;
        }

    .pillar-num {
        font-size: 10px;
        margin-bottom: 14px;
    }

    .pillar h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pillar p {
        font-size: 13px;
    }

    /* ── FOUNDER ── */
    .founder-img {
        max-width: 200px;
    }

    .founder-label {
        font-size: 10px;
    }

    .founder-name {
        font-size: clamp(22px, 5vw, 28px);
    }

    .founder-title {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .founder-bio {
        font-size: 13px;
        line-height: 1.7;
    }

    /* ── NEWS ── */
    .news {
        padding: 32px 0;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 18px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-card-img-placeholder {
        height: 180px;
    }

    .news-card-body {
        padding: 18px 20px;
    }

    .news-meta {
        margin-bottom: 10px;
    }

    .news-tag {
        font-size: 9px;
        padding: 2px 7px;
        letter-spacing: 0.14em;
    }

    .news-date {
        font-size: 10.5px;
    }

    .news-card-title {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.35;
    }

    .news-card-excerpt {
        font-size: 12.5px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .news-read-more {
        font-size: 10.5px;
    }

    .news-view-all {
        font-size: 11px;
    }

    /* ── HS EDITORIAL SECTIONS ── */
    .hs-section {
        padding: 32px 0;
    }

    .hs-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

        .hs-section-header h2 {
            font-size: clamp(20px, 5vw, 26px);
            margin: 0;
        }

    .hs-tab {
        font-size: 11px;
        padding: 8px 14px;
        letter-spacing: 0.03em;
    }

    .hs-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .hs-date {
        font-size: 0.72rem;
    }

    /* Research grid */
    .hs-research-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hs-featured-body {
        padding: 18px 16px;
    }

    .hs-featured-title {
        font-size: 18px;
        margin: 8px 0 10px;
    }

    .hs-featured-desc {
        font-size: 0.84rem;
    }

    .hs-list-item {
        padding: 16px 0;
    }

        .hs-list-item h4 {
            font-size: 16px;
        }

        .hs-list-item p {
            font-size: 0.82rem;
        }

    /* Sector grid */
    .hs-sector-grid {
        grid-template-columns: 1fr;
    }

    .hs-sector-card {
        padding: 24px 18px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
        gap: 10px;
    }

        .hs-sector-card:last-child {
            border-bottom: none;
        }

    .hs-sector-icon {
        width: 36px;
        height: 36px;
    }

    .hs-sector-card h3 {
        font-size: 16px;
    }

    .hs-sector-card p {
        font-size: 0.82rem;
    }

    .hs-sector-link {
        font-size: 0.72rem;
    }

    .hs-sector-count {
        font-size: 0.68rem;
    }

    .hs-sector-strip {
        padding-top: 20px;
    }

    .hs-strip-label {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .hs-strip-item {
        font-size: 0.82rem;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 8px;
    }

        .hs-strip-item .hs-date {
            margin-left: 0;
        }

    /* Sector news grid */
    .hs-sector-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hs-sector-news-body {
        padding: 14px 16px 16px;
        gap: 8px;
    }

        .hs-sector-news-body h4 {
            font-size: 0.88rem;
        }

    .hs-sector-news-link {
        font-size: 0.68rem;
    }

    /* Program grid */
    .hs-program-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .hs-program-body {
        padding: 16px 16px 14px;
        gap: 8px;
    }

    .hs-program-card h3 {
        font-size: 16px;
    }

    .hs-program-card p {
        font-size: 0.82rem;
    }

    .hs-program-meta {
        font-size: 0.72rem;
        padding-top: 10px;
    }

    .hs-donors {
        padding-top: 20px;
    }

    .hs-donor-tag {
        font-size: 0.74rem;
        padding: 5px 12px;
    }

    /* Events & Insights grid */
    .hs-events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hs-col-title {
        font-size: 0.68rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .hs-event-item {
        gap: 14px;
        padding: 16px 0;
    }

    .hs-event-date-block {
        width: 46px;
        padding: 8px 0;
    }

    .hs-event-day {
        font-size: 1.2rem;
    }

    .hs-event-month {
        font-size: 0.62rem;
    }

    .hs-event-details h4 {
        font-size: 15px;
    }

    .hs-event-details p {
        font-size: 0.8rem;
    }

    .hs-event-location {
        font-size: 0.72rem;
    }

    .hs-insight-card {
        gap: 12px;
        padding: 14px 0;
    }

    .hs-insight-img {
        width: 88px;
        height: 66px;
    }

    .hs-insight-body h4 {
        font-size: 15px;
        margin: 2px 0 4px;
    }

    .hs-insight-body p {
        font-size: 0.78rem;
    }

    .hs-read-link {
        font-size: 0.76rem;
        margin-top: 8px;
    }

    /* ── BUTTONS ── */
    .btn-primary {
        padding: 11px 24px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    /* ── CTA ── */
    .cta p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* ── FOOTER ── */
    footer {
        padding: 20px 16px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .hs-sector-news-grid {
        grid-template-columns: 1fr;
    }

    .hs-sector-grid {
        grid-template-columns: 1fr;
    }

    .hs-program-grid {
        grid-template-columns: 1fr;
    }

    .header-logo img {
        height: 50px;
    }

    .logo-title {
        font-size: 18px;
        line-height: 16px;
        margin-top: 8px;
        letter-spacing: 0;
    }

        .logo-title span {
            font-size: 14px;
        }

    .social {
        display: none;
    }

    .nav {
        top: 18px;
    }
}

@media (max-width: 560px) {
    .container {
        width: 100%;
    }

    .slide-content {
        padding: 0 24px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        top: 40px;
    }

        .slider-arrow svg {
            width: 16px;
            height: 16px;
        }

    .news-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-card-img-placeholder {
        min-height: 160px;
    }

    .slide-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1f3e 0%, #172b54 50%, #1e3a6e 100%);
    color: var(--white);
    padding: 90px 0;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.page-hero .breadcrumb {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

    .page-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        transition: color 0.2s;
    }

        .page-hero .breadcrumb a:hover {
            color: var(--gold);
        }

    .page-hero .breadcrumb span {
        margin: 0;
        color: var(--gold);
    }

.page-hero-divider {
    width: 64px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 28px;
}

.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 20px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero .lede {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
}

/* Section jump nav */
.section-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(23, 43, 84, 0.04);
}

.section-nav-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .section-nav-inner::-webkit-scrollbar {
        display: none;
    }

.section-nav a {
    display: inline-flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

    .section-nav a:hover,
    .section-nav a.active {
        color: var(--navy);
        border-bottom-color: var(--gold);
    }

/* Section wrapper */
.about-section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

    .about-section.bg-light {
        background: var(--off-white);
    }

    .about-section.bg-dark {
        background: var(--navy);
        color: var(--white);
    }

.about-section-header {
    margin-bottom: 40px;
}

    .about-section-header .section-label {
        margin-bottom: 10px;
    }

    .about-section-header h2 {
        margin-bottom: 14px;
    }

    .about-section-header .intro {
        font-size: 15.5px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 760px;
    }

.about-section.bg-dark .about-section-header h2 {
    color: var(--white);
}

.about-section.bg-dark .about-section-header .intro {
    color: rgba(255, 255, 255, 0.7);
}

.about-section.bg-dark .section-label {
    color: var(--gold);
}

/* Mission / Vision / Values */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mvv-card {
    background: #fff;
    padding: 30px 32px 34px;
    border-radius: 10px;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #dbe8ff;
    border-top: 3px solid var(--gold);
}

    .mvv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(23, 43, 84, 0.08);
    }

.mvv-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: 18px;
}

    .mvv-icon svg {
        width: 100%;
        height: 100%;
    }

.mvv-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.mvv-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .story-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 55%, rgba(23, 43, 84, 0.75) 100%);
    }

.story-image-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: var(--white);
}

    .story-image-caption .cap-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 4px;
    }

    .story-image-caption .cap-name {
        font-family: 'DM Serif Display', serif;
        font-size: 18px;
        font-weight: 400;
    }

.story-body p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

    .story-body p strong {
        color: var(--navy);
        font-weight: 500;
    }

.story-pullquote {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 24px;
    margin: 24px 0;
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
}

/* Pillars */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.about-pillar {
    padding: 44px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s;
}

    .about-pillar:last-child {
        border-right: none;
    }

    .about-pillar:hover {
        background: rgba(255, 255, 255, 0.03);
    }

.about-pillar-num {
    font-family: 'DM Serif Display', serif;
    font-size: 44px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.9;
}

.about-pillar h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-pillar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

/* People grids — horizontal card with compact avatar + bio */
.people-grid {
    display: grid;
    gap: 24px;
}

    .people-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .people-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

.person-card {
    background: var(--white);
    border: 1px solid #dbe8ff;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 26px 26px 24px;
    align-items: start;
}

    .person-card:hover {
        border-color: var(--gold);
        box-shadow: 0 10px 30px rgba(23, 43, 84, 0.08);
        transform: translateY(-3px);
    }

.person-photo {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #172b54 0%, #0d1f3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 1px #dbe8ff, 0 0 0 4px var(--white), 0 0 0 5px var(--gold);
}

    .person-photo .monogram {
        font-family: 'DM Serif Display', serif;
        font-size: 42px;
        color: var(--gold);
        opacity: 0.9;
        letter-spacing: 0.02em;
    }

    .person-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.person-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.person-name {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.25;
}

.person-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.person-affiliation {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.person-bio,
.person-body > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.person-links {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #dbe8ff;
}

    .person-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f1f6ff;
        color: var(--navy);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

        .person-links a:hover {
            background: var(--gold);
            color: var(--navy);
        }

/* Advisory board (compact horizontal) */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.advisory-card {
    background: var(--white);
    border: 1px solid #dbe8ff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .advisory-card:hover {
        border-color: var(--gold);
        box-shadow: 0 8px 24px rgba(23, 43, 84, 0.06);
    }

.advisory-avatar {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #172b54 0%, #0d1f3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    position: relative;
    overflow: hidden;
}

    .advisory-avatar img {
        width: 100%
    }

.advisory-body h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.25;
}

.advisory-body .role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.advisory-body .affiliation {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* CTA band */
.about-cta {
    background: var(--navy);
    padding: 72px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-image: url(../images/main-bg.png);
    background-position: right bottom;
    background-repeat: no-repeat
}

    .about-cta::before {
        content: '';
        position: absolute;
        inset: 0;
    }

    .about-cta > .container {
        position: relative;
        z-index: 2;
    }

    .about-cta h2 {
        color: var(--white);
        margin-bottom: 16px;
    }

    .about-cta p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.72);
        max-width: 560px;
        margin: 0 auto 32px;
        line-height: 1.7;
    }

.cta-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, gap 0.2s;
}

.cta-btn-primary {
    background: var(--gold);
    color: var(--navy);
}

    .cta-btn-primary:hover {
        background: var(--gold-light);
        gap: 14px;
    }

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

    .cta-btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
        gap: 14px;
    }

    .cta-btn-primary svg,
    .cta-btn-secondary svg {
        width: 13px;
        height: 13px;
    }

/* Responsive */
@media (max-width: 1100px) {
    .person-card {
        padding: 22px;
        gap: 18px;
    }

    .person-photo {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .about-pillar:last-child {
            border-bottom: none;
        }

    .people-grid.cols-3,
    .people-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    .advisory-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 50px;
    }

    .about-section {
        padding: 48px 0;
    }

    .about-pillar {
        padding: 32px 24px;
    }

    .people-grid.cols-3,
    .people-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    .person-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 14px;
        padding: 26px 22px 22px;
    }

    .person-photo {
        width: 100px;
        height: 100px;
    }

    .person-links {
        justify-content: center;
        width: 100%;
    }

    .advisory-card {
        padding: 18px;
        gap: 14px;
    }

    .advisory-avatar {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .section-nav a {
        padding: 14px 14px;
        font-size: 11px;
    }

    .story-pullquote {
        font-size: 17px;
        padding-left: 18px;
    }
}

/* ══════════════════════════════════════════
   IRAQ ENERGY OUTLOOK — ARCHIVE PAGE
══════════════════════════════════════════ */
.page-hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 5px 14px;
    border: 1px solid rgba(201,151,0,0.4);
    border-radius: 4px;
}

.page-hero p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span.sep {
        color: rgba(255,255,255,0.3);
    }

    .breadcrumb .current {
        color: var(--gold);
    }

/* Featured (latest) edition */
.outlook-featured {
    background: var(--off-white);
    padding: 70px 0;
}

    .outlook-featured .section-label {
        text-align: center;
        margin-bottom: 6px;
    }

.outlook-featured-heading {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--navy);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

/* Archive section */
.editions-archive {
    background: var(--white);
    padding: 70px 0;
}

.editions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 24px;
}

    .editions-header h2 {
        margin-bottom: 0;
    }

/* Year filter tabs */
.editions-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.edition-filter-btn {
    background: var(--white);
    border: 1px solid #dbe8ff;
    padding: 8px 18px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}

    .edition-filter-btn:hover {
        border-color: var(--gold);
        color: var(--navy);
    }

    .edition-filter-btn.active {
        background: var(--navy);
        border-color: var(--navy);
        color: var(--white);
    }

/* Editions grid */
.editions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.edition-card {
    background: var(--white);
    border: 1px solid #dbe8ff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .edition-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(23,43,84,0.12);
    }

.edition-card-cover {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--navy);
}

    .edition-card-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.edition-card:hover .edition-card-cover img {
    transform: scale(1.04);
}

.edition-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(23,43,84,0.3) 100%);
    pointer-events: none;
}

.edition-number {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
}

.edition-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.edition-card-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.edition-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.edition-card-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.edition-card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.edition-topic-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 3px 9px;
    border: 1px solid #dbe8ff;
    border-radius: 4px;
    text-transform: uppercase;
}

.edition-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #dbe8ff;
    margin-top: auto;
}

.edition-authors {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4;
    flex: 1;
    padding-right: 12px;
}

    .edition-authors strong {
        display: block;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: var(--navy);
        text-transform: uppercase;
        margin-bottom: 3px;
    }

.edition-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.edition-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.edition-btn-primary {
    background: var(--navy);
    color: var(--white);
}

    .edition-btn-primary:hover {
        background: var(--gold);
        color: var(--navy);
    }

.edition-btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid #dbe8ff;
}

    .edition-btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.edition-btn svg {
    width: 11px;
    height: 11px;
}

/* Subscribe CTA */
.outlook-subscribe {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

    .outlook-subscribe::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(201,151,0,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.subscribe-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.subscribe-text h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.subscribe-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-weight: 300;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.subscribe-row {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

    .subscribe-input:focus {
        border-color: var(--gold);
        background: rgba(255,255,255,0.12);
    }

    .subscribe-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

.subscribe-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s;
}

    .subscribe-submit:hover {
        background: var(--gold-light);
    }

.subscribe-note {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* ── RESPONSIVE — Outlook Archive Page ── */
@media (max-width: 1100px) {
    .editions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .subscribe-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .page-hero {
        padding: 56px 0 50px;
    }

    .editions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .editions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .breadcrumb {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .editions-archive,
    .outlook-featured,
    .outlook-subscribe {
        padding: 40px 0;
    }

    .edition-card-body {
        padding: 18px 18px 20px;
    }

    .edition-card-title {
        font-size: 18px;
    }

    .edition-card-desc {
        font-size: 12.5px;
    }

    .subscribe-row {
        flex-direction: column;
    }

    .subscribe-submit {
        width: 100%;
    }
}


/* ══════════════════════════════════════════
   RESEARCH & PUBLICATIONS PAGE
══════════════════════════════════════════ */

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

    .page-breadcrumb a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color .2s;
    }

        .page-breadcrumb a:hover {
            color: var(--gold);
        }

    .page-breadcrumb .sep {
        color: rgba(255,255,255,0.3);
    }

    .page-breadcrumb .current {
        color: var(--gold);
    }

.page-hero-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    max-width: 680px;
}

/* ══ 4-COLUMN GRID ══ */
.rp-page {
    padding: 48px 0 80px;
    background: var(--off-white);
}

.rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

/* Individual card — vertical, image on top */
.rp-card {
    background: var(--white);
    border: 1px solid #dbe8ff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
}

    .rp-card:hover {
        box-shadow: 0 12px 32px rgba(23,43,84,0.10);
        transform: translateY(-3px);
        border-color: rgba(201,151,0,0.5);
    }

.rp-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0ecdb;
}

    .rp-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

.rp-card:hover .rp-card-img img {
    transform: scale(1.06);
}

/* Top-left type badge on image */
.rp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .rp-card-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

    .rp-card-badge.type-brief::before {
        background: #1d4ed8;
    }

    .rp-card-badge.type-report::before {
        background: #7c3aed;
    }

    .rp-card-badge.type-data::before {
        background: #059669;
    }

    .rp-card-badge.type-comment::before {
        background: #d97706;
    }

/* Bookmark icon top-right */
.rp-card-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color .2s, background .2s;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s, transform .25s, color .2s, background .2s;
}

.rp-card:hover .rp-card-bookmark {
    opacity: 1;
    transform: translateY(0);
}

.rp-card-bookmark:hover {
    color: var(--gold);
    background: var(--white);
}

.rp-card-bookmark svg {
    width: 14px;
    height: 14px;
}

/* Card body */
.rp-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.rp-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

    .rp-card-meta .sep {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--muted);
        opacity: 0.5;
    }

.rp-card-title {
    font-size: 18px;
    color: var(--text);
    line-height: 1.35;
    margin: 2px 0 4px;
    letter-spacing: -0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.rp-card:hover .rp-card-title {
    color: var(--navy);
}

.rp-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.rp-card-authors {
    font-size: 11.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 4px;
}

    .rp-card-authors svg {
        width: 12px;
        height: 12px;
        color: var(--gold);
        flex-shrink: 0;
    }

.rp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid #f0ecdb;
    gap: 10px;
}

.rp-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .2s;
}

    .rp-card-read:hover {
        gap: 9px;
    }

    .rp-card-read svg {
        width: 11px;
        height: 11px;
    }

.rp-card-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #dbe8ff;
    border-radius: 50%;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}

    .rp-card-download:hover {
        color: var(--navy);
        border-color: var(--navy);
        background: #ecf2ff;
    }

    .rp-card-download svg {
        width: 13px;
        height: 13px;
    }

/* Pagination */
.rp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 56px;
}

.rp-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dbe8ff;
    background: var(--white);
    color: var(--navy);
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

    .rp-page-btn:hover:not(:disabled) {
        border-color: var(--navy);
        background: var(--navy);
        color: var(--white);
    }

    .rp-page-btn.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .rp-page-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .rp-page-btn svg {
        width: 12px;
        height: 12px;
    }

.rp-page-ellipsis {
    padding: 0 6px;
    color: var(--muted);
}

/* Empty state */
.rp-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
    grid-column: 1 / -1;
    display: none;
}

    .rp-empty svg {
        width: 48px;
        height: 48px;
        color: #dbe8ff;
        margin-bottom: 16px;
    }

    .rp-empty h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .rp-empty p {
        font-size: 14px;
    }

/* Responsive — 4 → 3 → 2 → 1 */
@media (max-width: 1200px) {
    .rp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .rp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .rp-grid {
        grid-template-columns: 1fr;
    }

    .rp-page {
        padding: 28px 0 48px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero-desc {
        font-size: 14px;
    }

    .rp-card-title {
        font-size: 16px;
    }

    .rp-pagination {
        margin-top: 36px;
        flex-wrap: wrap;
    }
}




/* ══════════════════════════════════════════════════
           ARTICLE DETAIL — page-specific styles
           Everything else comes from mainstyle.css
        ══════════════════════════════════════════════════ */

/* ── ARTICLE HERO IMAGE ── */
.article-hero-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .article-hero-img img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .article-hero-img .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
    }

/* ── ARTICLE LAYOUT ── */
.article-layout {
    padding: 56px 0 72px;
    background: var(--white);
}

.article-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── ARTICLE HEADER ── */
.article-header {
    margin-bottom: 40px;
}

    .article-header .tag-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .article-header .reading-time {
        font-size: 12px;
        color: var(--muted);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .article-header .reading-time i {
            color: var(--gold);
            font-size: 11px;
        }

.article-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.article-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 28px;
}

/* ── AUTHOR ROW ── */
.article-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid #dbe8ff;
    border-bottom: 1px solid #dbe8ff;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.author-info .role {
    font-size: 12px;
    color: var(--muted);
}

.article-date-share {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.article-pub-date {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
    line-height: 1.4;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .share-links a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #dbe8ff;
        color: var(--muted);
        font-size: 13px;
        text-decoration: none;
        transition: all 0.2s;
    }

        .share-links a:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--white);
        }

/* ── ARTICLE BODY ── */
.article-body {
    margin-bottom: 48px;
}

    .article-body h2 {
        font-size: clamp(22px, 2.5vw, 28px);
        color: var(--navy);
        margin: 40px 0 16px;
    }

    .article-body h3 {
        font-family: 'DM Sans', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        margin: 32px 0 12px;
    }

    .article-body p {
        font-size: 16.5px;
        line-height: 1.85;
        color: #333;
        margin: 0 0 20px;
    }

    .article-body blockquote {
        margin: 32px 0;
        padding: 24px 28px;
        border-left: 4px solid var(--gold);
        background: #f9f7f0;
        border-radius: 0 8px 8px 0;
    }

        .article-body blockquote p {
            font-size: 17px;
            font-style: italic;
            color: var(--navy);
            line-height: 1.75;
            margin: 0;
        }

        .article-body blockquote cite {
            display: block;
            margin-top: 12px;
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            color: var(--muted);
        }

    .article-body figure {
        margin: 36px 0;
    }

        .article-body figure img {
            width: 100%;
            border-radius: 8px;
            display: block;
        }

    .article-body figcaption {
        font-size: 12.5px;
        color: var(--muted);
        margin-top: 10px;
        padding-left: 14px;
        border-left: 2px solid var(--gold);
    }

    .article-body ul,
    .article-body ol {
        margin: 16px 0 24px 20px;
    }

    .article-body li {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 8px;
    }

        .article-body li::marker {
            color: var(--gold);
        }

/* ── TAGS ── */
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid #dbe8ff;
    margin-bottom: 40px;
}

    .article-tags .label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--navy);
        margin-right: 8px;
    }

    .article-tags a {
        font-size: 11.5px;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 20px;
        border: 1px solid #dbe8ff;
        color: var(--muted);
        text-decoration: none;
        transition: all 0.2s;
    }

        .article-tags a:hover {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
        }

/* ── AUTHOR BIO BOX ── */
.author-bio-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: #f7f6f2;
    border-radius: 10px;
    border: 1px solid #dbe8ff;
    margin-bottom: 0;
}

.author-bio-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold);
}

    .author-bio-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-bio-text .name {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 4px;
}

.author-bio-text .title {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-bio-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 12px;
}

.author-bio-text .bio-links {
    display: flex;
    gap: 10px;
}

    .author-bio-text .bio-links a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #dbe8ff;
        color: var(--muted);
        font-size: 13px;
        text-decoration: none;
        transition: all 0.2s;
    }

        .author-bio-text .bio-links a:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--white);
        }

/* ── RANKING NUMBER for Most Popular ── */
.rp-card-rank {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    z-index: 2;
    border: 2px solid var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .article-hero-img img {
        height: 300px;
    }

    .article-author-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .article-date-share {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #f0ecdb;
    }

    .author-bio-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .author-bio-text .bio-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-layout {
        padding: 36px 0 52px;
    }
}

.breadcrumb-detail {
    background-color: #172b54;
    padding: 10px 0;
}

    .breadcrumb-detail .breadcrumb {
        margin: 0
    }

.detail-title {
    display: block
}

    .detail-title h1 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(26px, 3.5vw, 42px);
        color: #172b54;
        margin-bottom: 20px;
        line-height: 1.2;
    }

/* ══════════════════════════════════════════════════════════════ */
/* ══  ARTICLE DETAIL — SIMPLIFIED META ROW                   ══ */
/* ══════════════════════════════════════════════════════════════ */
.article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid #dbe8ff;
    border-bottom: 1px solid #dbe8ff;
    flex-wrap: wrap;
}

    .article-meta-row .news-tag {
        flex-shrink: 0;
    }

    .article-meta-row .article-date-share {
        margin-left: auto;
    }

@media (max-width: 560px) {
    .article-meta-row {
        gap: 12px;
    }

        .article-meta-row .article-date-share {
            margin-left: 0;
            width: 100%;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid #f0ecdb;
        }
}

/* ══════════════════════════════════════════════════════════════ */
/* ══  NEWS GRID — 4-COLUMN VARIANT                           ══ */
/* ══════════════════════════════════════════════════════════════ */
.news-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

    /* In 4-col mode, force stacked card (image top, body bottom) */
    .news-grid-4 .news-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: 0;
    }

    .news-grid-4 .news-card-img-placeholder {
        height: 180px;
    }

    .news-grid-4 .news-card-body {
        padding: 20px 22px 22px;
    }

    .news-grid-4 .news-card-title {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .news-grid-4 .news-card-excerpt {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .news-grid-4 .news-meta {
        margin-bottom: 10px;
    }

/* Card styling when inside a dark section (.hs-dark) */
.hs-dark .news-grid-4 .news-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

    .hs-dark .news-grid-4 .news-card:hover {
        box-shadow: inset 0 0 0 2px var(--gold);
        background: rgba(255, 255, 255, 0.07);
    }

.hs-dark .news-grid-4 .news-card-title,
.hs-dark .news-grid-4 .news-card-title a {
    color: #fff;
    text-decoration: none;
}

.hs-dark .news-grid-4 .news-card:hover .news-card-title,
.hs-dark .news-grid-4 .news-card:hover .news-card-title a {
    color: var(--gold);
}

.hs-dark .news-grid-4 .news-card-excerpt {
    color: rgba(255, 255, 255, 0.65);
}

.hs-dark .news-grid-4 .news-date {
    color: rgba(255, 255, 255, 0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .news-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .news-grid-4 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

        .news-grid-4 .news-card-img-placeholder {
            height: 200px;
        }
}


/* ══════════════════════════════════════════════════════════════ */
/* ══  MOST POPULAR SECTION — WHITE BACKGROUND OVERRIDE       ══ */
/* ══════════════════════════════════════════════════════════════ */
#popular {
    background: #ffffff;
}

    #popular .news-grid-4 .news-card {
        background: #ffffff;
        border: 1px solid #dbe8ff;
    }

        #popular .news-grid-4 .news-card:hover {
            box-shadow: inset 0 0 0 2px var(--gold);
            background: #ffffff;
        }

    #popular .news-grid-4 .news-card-title,
    #popular .news-grid-4 .news-card-title a {
        color: #000;
        text-decoration: none;
    }

    #popular .news-grid-4 .news-card:hover .news-card-title,
    #popular .news-grid-4 .news-card:hover .news-card-title a {
        color: var(--gold);
    }

    #popular .news-grid-4 .news-card-excerpt {
        color: var(--muted);
    }

    #popular .news-grid-4 .news-date {
        color: var(--muted);
    }

    #popular h2,
    #popular .section-label {
        color: var(--navy);
    }

    #popular .news-view-all {
        color: var(--navy);
    }


/* ══════════════════════════════════════════════════════════════ */
/* ══  CONTACT PAGE                                           ══ */
/* ══════════════════════════════════════════════════════════════ */

/* ── INFO CARDS ── */
.contact-info-section {
    padding: 72px 0 40px;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #dbe8ff;
    border-radius: 10px;
    padding: 32px 28px;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
}

    .contact-info-card:hover {
        box-shadow: 0 6px 24px rgba(23, 43, 84, 0.08);
        transform: translateY(-3px);
        border-color: var(--gold);
    }

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 18px;
}

.contact-info-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.contact-info-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

    .contact-info-card p a {
        color: var(--navy);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .contact-info-card p a:hover {
            color: var(--gold);
        }

/* ── FORM SECTION ── */
.contact-form-section {
    padding: 40px 0 96px;
    background: var(--white);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form-wrap .section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-form-wrap h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

    .contact-form-wrap h2 em {
        color: var(--gold);
        font-style: italic;
    }

.contact-form-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

/* ── FORM CONTROLS ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 8px;
    }

        .form-group label .req {
            color: var(--gold);
            margin-left: 2px;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        color: var(--navy);
        background: #fff;
        border: 1px solid #dbe8ff;
        border-radius: 6px;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 151, 0, 0.12);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 140px;
        line-height: 1.6;
    }

    .form-group select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'><path d='M2 3.5L5 6.5L8 3.5' stroke='%23172b54' stroke-width='1.5' stroke-linecap='round'/></svg>");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
        padding-right: 36px;
    }

/* ── SUBMIT BUTTON ── */
.contact-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.22s, transform 0.22s;
    margin-top: 8px;
}

    .contact-submit-btn svg {
        width: 14px;
        height: 14px;
    }

    .contact-submit-btn:hover {
        background: var(--gold);
        transform: translateY(-2px);
    }

/* ── SIDE COLUMN (MAP + CONNECT) ── */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 24px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbe8ff;
    box-shadow: 0 4px 18px rgba(23, 43, 84, 0.05);
}

    .contact-map iframe {
        display: block;
    }

.contact-connect {
    background: var(--navy);
    color: var(--white);
    padding: 32px 28px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .contact-connect::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gold);
    }

    .contact-connect h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 22px;
        font-weight: 400;
        color: #fff;
        margin: 0 0 10px;
        letter-spacing: -0.01em;
    }

    .contact-connect p {
        font-size: 13.5px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        margin: 0 0 22px;
    }

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .contact-social a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s, transform 0.2s;
    }

        .contact-social a:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-3px);
        }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 52px 0 28px;
    }

    .contact-form-section {
        padding: 28px 0 72px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        padding: 26px 22px;
    }
}

@media (max-width: 560px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}




        
        .ei-featured {
            background: var(--white);
            border: 1px solid #dbe8ff;
            border-radius: 10px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            margin-bottom: 48px;
            position: relative;
            transition: box-shadow 0.22s;
        }

            .ei-featured:hover {
                box-shadow: inset 0 0 0 2px var(--gold);
            }

        .ei-featured-img {
            position: relative;
            overflow: hidden;
            min-height: 340px;
        }

            .ei-featured-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.5s ease;
            }

        .ei-featured:hover .ei-featured-img img {
            transform: scale(1.04);
        }

        .ei-featured-flag {
            position: absolute;
            top: 18px;
            left: 18px;
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--white);
            background: var(--gold);
            padding: 5px 12px;
            border-radius: 4px;
        }

        .ei-featured-body {
            padding: 44px 44px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ei-featured-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .ei-featured-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(22px, 2.2vw, 30px);
            font-weight: 400;
            color: var(--navy);
            line-height: 1.25;
            letter-spacing: -0.01em;
            margin: 0 0 16px;
        }

        .ei-featured-details {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 18px;
        }

            .ei-featured-details .row {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                font-size: 13px;
                color: var(--muted);
            }

                .ei-featured-details .row i {
                    color: var(--gold);
                    font-size: 12px;
                }

        .ei-featured-excerpt {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin: 0 0 24px;
        }

        .ei-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: var(--navy);
            color: var(--white);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 6px;
            transition: background 0.2s, gap 0.2s;
            align-self: flex-start;
        }

            .ei-cta:hover {
                background: var(--gold);
                gap: 11px;
            }

            .ei-cta svg {
                width: 11px;
                height: 11px;
            }

        /* Event-type coloured variants of the shared news-tag */
        .news-tag.tag-webinar {
            background: #1d4ed8;
        }

        .news-tag.tag-workshop {
            background: #059669;
        }

        .news-tag.tag-conference {
            background: var(--navy);
        }

        .news-tag.tag-lecture {
            background: #7c3aed;
        }

        .news-tag.tag-panel {
            background: #c2410c;
        }

        /* Seat status indicator on event cards */
        .ei-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--muted);
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #f0ecdb;
        }

            .ei-status .dot {
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #9ca3af;
            }

            .ei-status.open .dot {
                background: #10b981;
            }

            .ei-status.open {
                color: #047857;
            }

            .ei-status.low .dot {
                background: #f59e0b;
            }

            .ei-status.low {
                color: #b45309;
            }

        /* Footer strip inside an event card — action + status on same row */
        .ei-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #f0ecdb;
            gap: 12px;
        }

            .ei-card-footer .ei-status {
                margin-top: 0;
                padding-top: 0;
                border-top: none;
            }

        /* Insight format pill (overlays image corner) */
        .ei-format-pill {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: 4px;
            background: rgba(23,43,84,0.92);
            color: var(--white);
            backdrop-filter: blur(4px);
        }

            .ei-format-pill i {
                color: var(--gold);
                font-size: 10px;
            }

        /* Pagination — kept lightweight, reuses navy/gold palette */
        .ei-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 40px;
        }

        .ei-page-btn {
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border: 1px solid #dbe8ff;
            background: var(--white);
            color: var(--navy);
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

            .ei-page-btn:hover:not(:disabled) {
                border-color: var(--navy);
                background: var(--navy);
                color: var(--white);
            }

            .ei-page-btn.active {
                background: var(--gold);
                border-color: var(--gold);
                color: var(--white);
            }

            .ei-page-btn:disabled {
                opacity: 0.4;
                cursor: not-allowed;
            }

            .ei-page-btn svg {
                width: 11px;
                height: 11px;
            }

        /* Dark section adjustments — gold section label + white h2 */
        .hs-section.hs-dark .section-label {
            color: var(--gold);
        }

        .hs-section.hs-dark .hs-section-header h2 {
            color: var(--white);
        }

        .hs-section.hs-dark .news-card {
            background: #ffffff;
        }

        /* Responsive tweaks */
        @media (max-width: 980px) {
            .ei-featured {
                grid-template-columns: 1fr;
            }

            .ei-featured-img {
                min-height: 240px;
            }

            .ei-featured-body {
                padding: 32px 28px;
            }
        }
    