/* ═══════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════ */
@font-face {
    font-family: 'Neutraface2';
    src: url('../fonts/Neutraface2Text-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
    --navy:       #00174C;
    --bright-blue:#00B3EF;
    --light-blue: #C5D6E3;
    --off-white:  #EDF4F6;
    --mid-gray:   #777F92;
    --dark-slate: #545C6E;
    --white:      #FFFFFF;

    --font: 'Montserrat', sans-serif;

    --nav-height: 68px;
    --container:  1280px;
    --radius:     10px;

    --body:       #3D4560;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}
.section.is-dark  { background: var(--navy); color: var(--white); }
.section.is-light { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
.heading-xl {
    font-family: 'Neutraface2', var(--font);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.heading-lg {
    font-family: 'Neutraface2', var(--font);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}
.text-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bright-blue);
    margin-bottom: 12px;
}
.text-subhead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--mid-gray);
    margin-top: 16px;
}
.section.is-dark .text-subhead { color: rgba(255,255,255,0.65); }
.title-on-dark { font-family: 'Neutraface2', var(--font); color: var(--white); font-size: 28px; font-weight: 700; margin-bottom: 8px; line-height: 1.05; }
.body-on-dark  { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════ */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header .heading-lg { margin-top: 8px; }
.mission-statement { font-size: clamp(1.75rem, 2.8vw, 2.5rem); max-width: 780px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.button.is-primary {
    background: var(--bright-blue);
    color: var(--white);
}
.button.is-primary:hover {
    background: #009fd4;
    box-shadow: 0 0 0 4px rgba(0,179,239,0.25);
    transform: translateY(-1px);
}
.button.is-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
}
.button.is-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.button.is-white {
    background: var(--white);
    color: var(--navy);
}
.button.is-white:hover {
    background: var(--bright-blue);
    color: var(--white);
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 23, 76, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-link svg { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-donate {
    background: #2e8b57;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}
.nav-donate:hover { background: #236b43; transform: translateY(-1px); }
.nav-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--bright-blue);
    padding: 10px 22px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.nav-cta:hover { background: #009fd4; transform: translateY(-1px); }
.nav-links .nav-cta { margin-left: 4px; }

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-wrap {
    position: relative;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 23, 76, 0.52);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 32px;
}
.hero-content .text-eyebrow { color: var(--bright-blue); }
.hero-content .heading-xl { color: var(--white); margin-top: 8px; }
.hero-subhead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-vector {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
}
.hero-vector svg { width: 100%; height: auto; }

/* ═══════════════════════════════════════════════
   HOW WE WORK
═══════════════════════════════════════════════ */
.hww-section { padding-bottom: 112px; }
.hww-vector-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 900px;
    pointer-events: none;
    opacity: 0.18;
    transform: scaleX(-1);
}
.hww-vector-decor svg { width: 100%; height: auto; }

.hww-grid { align-items: stretch; }
.card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 200px 28px 28px;
    background-color: var(--light-blue);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s var(--ease-out-expo);
    z-index: 0;
}
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,23,76,0.93) 100%);
    z-index: 1;
}
.card:hover::before {
    transform: scale(1.09);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,23,76,0.25);
}
.card-body {
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════ */
.events-section { padding: 96px 0; }
.events-vector-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 900px;
    pointer-events: none;
    opacity: 0.14;
}
.events-vector-decor svg { width: 100%; height: auto; }
.events-content .section-header { margin-bottom: 36px; }
.events-content .text-eyebrow { color: var(--bright-blue); }
.events-content .heading-lg { color: var(--white); }
.events-content .text-subhead { margin-bottom: 32px; }

.event-types { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.event-type-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.event-type-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}
.event-type-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.events-visual { border-radius: var(--radius); overflow: hidden; }
.events-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: opacity 0.35s ease;
}
.events-photo.is-fading { opacity: 0; }

.event-type-item {
    cursor: pointer;
    transition: border-color 0.2s;
}
.event-type-item.is-active {
    border-bottom-color: var(--bright-blue);
}
.event-type-item.is-active .event-type-label {
    color: var(--bright-blue);
}
.event-type-item:hover .event-type-label {
    color: var(--bright-blue);
}

/* ═══════════════════════════════════════════════
   SUMMIT CTA
═══════════════════════════════════════════════ */
.summit-cta-section {
    background-image:
        linear-gradient(rgba(0,23,76,0.68), rgba(0,23,76,0.68)),
        url('../images/sunvalleybeauty.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 160px 0;
}
.summit-overlay {
    position: absolute;
    inset: 0;
}
.summit-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.summit-text .heading-lg { color: var(--white); margin-bottom: 16px; }
.summit-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--bright-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}
.summit-text .text-subhead { margin-bottom: 36px; }
.summit-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.summit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.summit-logo-img {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.45));
}

/* ═══════════════════════════════════════════════
   ELEVATION REPORT
═══════════════════════════════════════════════ */
.er-section {
    background-image:
        linear-gradient(rgba(0,23,76,0.65), rgba(0,23,76,0.65)),
        url('../images/biking.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 112px 0;
}
.er-inner { position: relative; z-index: 1; }
.er-header { margin-bottom: 56px; }
.er-header .text-eyebrow { color: var(--bright-blue); }
.er-header .heading-lg { color: var(--white); }
.er-header .text-subhead { color: rgba(255,255,255,0.7); }
.er-btn { margin-top: 28px; }

.er-feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.er-col-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bright-blue);
    margin-bottom: 20px;
}
.er-feed-item {
    background: rgba(0, 8, 28, 0.72);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 200px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.er-feed-item .er-post-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}
.er-feed-item .er-post-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bright-blue);
    margin-bottom: 14px;
}
.er-feed-item .er-post-summary {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.er-post-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bright-blue);
    border-bottom: 2px solid var(--bright-blue);
    padding-bottom: 2px;
    display: inline-block;
    transition: opacity 0.2s;
}
.er-post-link:hover { opacity: 0.75; }
.er-loading .er-skeleton {
    height: 140px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 75%);
    background-size: 200% 100%;
    animation: er-shimmer 1.4s infinite;
    border-radius: 6px;
}
@keyframes er-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════
   FEATURED PARTNERS
═══════════════════════════════════════════════ */
.fp-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.fp-tier:last-child { margin-bottom: 0; }
.fp-tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,23,76,0.45);
}
.fp-tier-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.fp-logo {
    width: 180px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(0,23,76,0.08);
    border-radius: 10px;
    padding: 16px 22px;
    box-sizing: border-box;
}
.fp-logo--trusted {
    width: 220px;
    height: 144px;
    padding: 20px 28px;
}
.fp-logo--presenting {
    width: 240px;
    height: 152px;
    padding: 22px 32px;
}
.fp-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   NETWORK / ANCHOR COMMUNITIES
═══════════════════════════════════════════════ */
.anchor-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.anchor-card {
    display: block;
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: 107%;
    background-position: center;
    background-color: var(--light-blue);
    transition: background-size 0.6s var(--ease-out-expo), box-shadow 0.3s;
    text-decoration: none;
}
.anchor-card:hover {
    background-size: 118%;
    box-shadow: 0 8px 32px rgba(0,23,76,0.18);
}
.anchor-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,23,76,0.85));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 24px 10px 10px;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.network-more-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-gray);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   GET INVOLVED
═══════════════════════════════════════════════ */
.get-involved-section .text-eyebrow { color: var(--bright-blue); }
.get-involved-section .heading-lg { color: var(--white); }

.gi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s, transform 0.3s var(--ease-out-expo);
}
.gi-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}
.gi-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bright-blue);
    margin-bottom: 10px;
}
.gi-card-title {
    font-family: 'Neutraface2', var(--font);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}
.gi-card-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    flex: 1;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
    background: #000e2e;
    color: var(--white);
    padding: 80px 0 0;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 64px;
}
.footer-logo-link svg { height: 42px; width: auto; margin-bottom: 20px; }
.footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    max-width: 240px;
}
.footer-nav {
    display: flex;
    gap: 64px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bright-blue);
    margin-bottom: 4px;
}
.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 48px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   SOLUTIONS FRAMEWORK
═══════════════════════════════════════════════ */
.sf-section { background: var(--white); }

.sf-main-title {
    color: var(--navy);
    margin-bottom: 24px;
}
.sf-summary {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mid-gray);
    max-width: 760px;
    margin: 0 auto 16px;
}
.sf-intro-btn { margin-top: 32px; }

.sf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.sf-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,23,76,0.08);
    box-shadow: 0 2px 16px rgba(0,23,76,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.sf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,23,76,0.14);
}

.sf-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background-color: var(--light-blue);
}
.sf-card-img-inner {
    position: absolute;
    inset: 0;
    background-image: var(--sf-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s var(--ease-out-expo);
}
.sf-card:hover .sf-card-img-inner { transform: scale(1.08); }

.sf-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 3px solid var(--bright-blue);
}
.sf-card-title {
    font-family: 'Neutraface2', var(--font);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}
.sf-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid-gray);
    flex: 1;
    margin-bottom: 16px;
}
.sf-card-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bright-blue);
}


@media (max-width: 1024px) {
    .sf-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-intro { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .sf-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
    .sf-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   ELEVATION REPORT EMBED
═══════════════════════════════════════════════ */
.er-embed-wrap {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--off-white);
}
.er-embed-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.er-embed-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    color: var(--navy);
    font-size: 15px;
}

/* ═══════════════════════════════════════════════
   PAGE CONTENT (generic pages)
═══════════════════════════════════════════════ */
.main-content { padding-top: var(--nav-height); }
.page-content { padding: 80px 0; }
.page-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
}
.page-body { font-size: 16px; line-height: 1.8; color: var(--dark-slate); max-width: 760px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .nav-inner { padding: 0 32px; }
    .footer-inner { padding: 0 32px 48px; flex-direction: column; gap: 40px; }
    .footer-bottom { padding: 20px 32px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .anchor-grid { grid-template-columns: repeat(4, 1fr); }
    .summit-cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .summit-actions { justify-content: center; }
    .summit-visual { justify-content: center; }
}

/* ── Nav collapses to hamburger at 1300px ── */
@media (max-width: 1300px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }

    /* Vertical dropdown when open */
    .site-nav.is-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(0,14,52,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 8px 24px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .site-nav.is-open .nav-links .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 15px;
        letter-spacing: 0.04em;
        color: rgba(255,255,255,0.85);
    }
    .site-nav.is-open .nav-links .nav-link:hover { color: var(--white); }
    .site-nav.is-open .nav-donate {
        background: none !important;
        border-radius: 0;
        padding: 15px 0 !important;
        color: rgba(255,255,255,0.85) !important;
        transform: none !important;
    }
    .site-nav.is-open .nav-cta {
        display: block;
        margin-top: 16px;
        text-align: center;
        padding: 14px 0;
        border-radius: 4px;
        border-bottom: none;
    }
    /* Hamburger → X animation */
    .site-nav.is-open .nav-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-nav.is-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .site-nav.is-open .nav-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

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

    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }

    .anchor-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

    .er-feeds-grid { grid-template-columns: 1fr; }

    .hww-vector-decor,
    .events-vector-decor { width: 100%; opacity: 0.1; }

    .footer-nav { flex-direction: column; gap: 32px; }
    .footer-inner { padding: 0 20px 40px; }
    .footer-bottom { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .anchor-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════
   SUPPORT / DONATE PAGE
═══════════════════════════════════════════════ */

/* Shared background + overlay pattern */
.support-hero,
.support-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.support-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out-expo);
}
.support-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,23,76,0.72);
}
.support-overlay.is-lighter {
    background: rgba(0,23,76,0.58);
}

/* Hero */
.support-hero {
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}
.support-hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 60px);
}
.support-hero-content .heading-xl { color: var(--white); margin-top: 8px; }
.support-hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 16px 0 32px;
}
.support-hero-content .button { margin-right: 12px; margin-bottom: 12px; }

/* Image sections */
.support-section-inner {
    position: relative;
    z-index: 1;
    padding: 96px 0;
}

/* Split layout (used inside full-bg sections) */
.support-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.support-split.is-reversed { direction: rtl; }
.support-split.is-reversed > * { direction: ltr; }

/* Panel layout — image on one side, content on the other, no container */
.support-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
    min-height: 540px;
}
.support-panel.is-flipped { direction: rtl; }
.support-panel.is-flipped > * { direction: ltr; }
.support-panel-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.support-panel-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Summit card */
.support-summit-card {
    position: relative;
    border-radius: var(--radius);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 24px 64px rgba(0,23,76,0.18);
    overflow: hidden;
    background: url('../images/sunvalleybeauty.webp') center / cover no-repeat;
}
.support-summit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,23,76,0.58);
}
.support-summit-card > * {
    position: relative;
    z-index: 1;
}
.summit-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.summit-date-num {
    font-family: 'Neutraface2', var(--font);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.summit-date-month {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--bright-blue);
    text-transform: uppercase;
}
.summit-divider {
    width: 48px;
    height: 2px;
    background: rgba(255,255,255,0.15);
}
.summit-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.summit-city {
    font-family: 'Neutraface2', var(--font);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}
.summit-state {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--bright-blue);
    text-transform: uppercase;
}

/* Anchor community benefits */
.support-benefits-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.support-benefits-list li {
    padding-left: 24px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
}
.support-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bright-blue);
}

/* Donate amounts */
.support-donate-amounts {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 32px;
}
.donate-tier {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.donate-tier:last-child { border-bottom: none; }
.donate-amount {
    font-family: 'Neutraface2', var(--font);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    min-width: 90px;
}
.donate-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.donate-tier.is-featured .donate-amount { color: var(--bright-blue); }
.donate-tier.is-featured .donate-desc   { font-weight: 600; color: var(--white); }

/* Corporate partner card */
.support-partner-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
}
.support-partner-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.support-partner-list li {
    padding-left: 20px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.support-partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bright-blue);
}

/* Final CTA */
.support-final-cta { padding: 112px 0; }

/* Responsive */
@media (max-width: 1024px) {
    .support-split { grid-template-columns: 1fr; gap: 48px; }
    .support-split.is-reversed { direction: ltr; }
    .support-panel { grid-template-columns: 1fr; }
    .support-panel.is-flipped { direction: ltr; }
    .support-panel-img { min-height: 300px; }
    .support-panel-content { padding: 56px 48px; }
}
@media (max-width: 768px) {
    .support-hero { min-height: 480px; padding-bottom: 56px; }
    .summit-date-num { font-size: 48px; }
    .support-summit-card { padding: 28px 24px; }
    .support-panel-content { padding: 48px 24px; }
}

/* ═══════════════════════════════════════════════
   SUMMIT PAGE
═══════════════════════════════════════════════ */

/* ── Hero ── */
.summit-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.summit-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.summit-hero:hover .summit-hero-bg { transform: scale(1); }
.summit-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,23,76,0.72) 0%,
        rgba(0,23,76,0.55) 50%,
        rgba(0,23,76,0.40) 100%
    );
}
.summit-hero-inner {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* Title is first — sized by heading-xl, just override margin */
.summit-hero-title {
    margin-top: 0 !important;
    max-width: 820px;
}
.summit-hero-logo {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}
.work-initiative-logo {
    display: block;
    max-width: 380px;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

/* Location + date — one compact line below the title */
.summit-hero-loc {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.summit-hero-city {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.summit-hero-state {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}
.summit-hero-loc-sep {
    opacity: 0.4;
    font-size: 16px;
}
.summit-hero-num {
    font-size: 17px;
    font-weight: 500;
    opacity: 0.72;
    letter-spacing: 0.02em;
}
.summit-hero-title {
    margin-top: 36px;
    max-width: 780px;
    line-height: 1.15;
}
.summit-hero-sub {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    color: rgba(255,255,255,0.8);
}
.summit-countdown {
    margin-top: 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}
.summit-countdown #summit-days {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-right: 6px;
    line-height: 1;
}
.summit-hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Intro grid ── */
.summit-intro-section {
    overflow: hidden;
}
.summit-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.summit-intro-content {
    padding: 88px 64px 88px 48px;
    max-width: 640px;
    margin-left: auto;
}
.summit-intro-img {
    background-size: cover;
    background-position: center;
}
.summit-body-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body);
}

/* ── Quote carousel ── */
.summit-carousel-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.summit-carousel-outer {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}
.summit-carousel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.summit-carousel-track {
    position: relative;
    min-height: 120px;
    display: grid;
}
.summit-carousel-slide {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    gap: 40px;
}
.summit-carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.summit-quote-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    filter: grayscale(100%);
    border: 3px solid rgba(255,255,255,0.25);
}
.summit-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.summit-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.summit-carousel-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.6);
}
.summit-carousel-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 320px;
}
.summit-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.summit-carousel-dot.is-active {
    background: var(--white);
    transform: scale(1.4);
}

/* ── Quote sections (static, kept for reuse) ── */
.summit-quote-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.summit-quote-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.summit-quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,23,76,0.78);
}
.summit-quote-inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}
.summit-quote {
    text-align: left;
    color: var(--white);
    flex: 1;
}
.summit-quote p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.92);
}
.summit-quote footer {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.summit-quote-body {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    margin: 0;
}
.summit-quote footer strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.summit-quote footer span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Agenda + Register CTA cards ── */
.summit-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.summit-cta-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
}
.summit-cta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,23,76,0.90) 0%,
        rgba(0,23,76,0.45) 55%,
        rgba(0,23,76,0.10) 100%
    );
}
.summit-cta-card-body {
    position: relative;
    z-index: 1;
    padding: 44px 40px;
    color: var(--white);
}
.summit-cta-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 8px;
    color: var(--white);
}
.summit-cta-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    margin-top: 12px;
    max-width: 420px;
}
.summit-cta-note {
    font-size: 13px;
    font-weight: 700;
    color: var(--bright-blue);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Speakers ── */
/* ── Speakers carousel ── */
.summit-speakers-carousel {
    margin-top: 48px;
}
.summit-speakers-viewport {
    overflow: hidden;
}
.summit-speakers-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.summit-speaker-card {
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.summit-speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.summit-speaker-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: top center;
}
.summit-speaker-body {
    padding: 24px;
}
.summit-speaker-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 8px;
    line-height: 1.2;
}
.summit-speaker-org {
    font-size: 13px;
    font-weight: 600;
    color: var(--bright-blue);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
}
.summit-speaker-bio {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body);
    margin-top: 12px;
}
/* ── Speakers nav ── */
.summit-speakers-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.summit-speakers-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,23,76,0.2);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.summit-speakers-btn:hover:not(:disabled) {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.summit-speakers-btn:disabled {
    opacity: 0.3;
    cursor: default;
}
.summit-speakers-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.summit-speakers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,23,76,0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.summit-speakers-dot.is-active {
    background: var(--navy);
    transform: scale(1.3);
}

/* ── Rollie feature ── */
.summit-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
}
.summit-feature-img {
    background-size: cover;
    background-position: center top;
}
.summit-feature-content {
    background: var(--navy);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.summit-feature-role {
    font-size: 15px;
    font-weight: 700;
    color: var(--bright-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}
.summit-feature-body {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin-top: 24px;
}
.summit-feature-content .heading-lg { color: var(--white); }
.summit-feature-content .text-eyebrow { color: rgba(255,255,255,0.55); }

@media (max-width: 1024px) {
    .summit-feature { grid-template-columns: 1fr; }
    .summit-feature-img { min-height: 380px; }
    .summit-feature-content { padding: 56px 48px; }
}
@media (max-width: 768px) {
    .summit-feature-content { padding: 48px 24px; }
    .summit-feature-body { font-size: 16px; }
}

/* ── Partners ── */
.summit-partner-tier {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,23,76,0.08);
}
.summit-partner-tier:last-child { border-bottom: none; }
.summit-partner-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.summit-partner-col {
    flex: 1;
}
@media (max-width: 768px) {
    .summit-partner-row {
        flex-direction: column;
        gap: 32px;
    }
}
.summit-tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,23,76,0.45);
    margin-bottom: 24px;
}
.summit-tier-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.summit-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(0,23,76,0.08);
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    filter: grayscale(15%);
    opacity: 0.9;
    transition: opacity 0.2s, filter 0.2s;
}
.summit-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.summit-logo--presenting {
    width: 220px;
    height: 220px;
    padding: 28px;
}

/* ── Final CTA ── */
.summit-final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.summit-final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    /* speaker carousel handled by JS */
}
@media (max-width: 1024px) {
    .summit-intro-grid { grid-template-columns: 1fr; }
    .summit-intro-content { padding: 64px 48px; max-width: 100%; margin-left: 0; }
    .summit-intro-img { min-height: 400px; }
    .summit-cta-grid { grid-template-columns: 1fr; }
    .summit-cta-card { min-height: 380px; }
}
@media (max-width: 768px) {
    .summit-hero { min-height: 70svh; }
    .summit-hero-inner { padding-left: 24px; padding-right: 24px; }
    .summit-hero-title { font-size: clamp(28px, 7vw, 40px); }
    .summit-hero-title { font-size: clamp(28px, 7vw, 40px); }
    .summit-hero-sub { font-size: 16px; }
    .summit-quote p { font-size: 17px; }
    /* speaker carousel handles single-column via JS */
    .summit-cta-card-body { padding: 32px 24px; }
    .summit-tier-logos { gap: 12px; }
    .summit-carousel-track { min-height: 100px; }
    .summit-carousel-dots { max-width: 240px; }
    .summit-carousel-slide { flex-direction: column; align-items: flex-start; gap: 20px; }
    .summit-quote-avatar { width: 72px; height: 72px; }
    .summit-intro-content { padding: 56px 24px; }
    .summit-logo { width: 120px; height: 120px; padding: 14px; }
}

/* ═══════════════════════════════════════════════
   WORK PAGE
═══════════════════════════════════════════════ */

/* ── Hero ── */
.work-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}
.work-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}
.work-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,23,76,0.88) 0%, rgba(0,23,76,0.45) 55%, rgba(0,23,76,0.15) 100%);
}
.work-hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}
.work-hero-title {
    max-width: 780px;
    color: var(--white);
    margin-top: 12px;
    line-height: 1.15;
}

/* ── Our Focus ── */
.work-focus-section { overflow: hidden; }
.work-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.work-focus-content {
    padding: 88px 72px 88px 0;
    max-width: 640px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.work-focus-img {
    background-size: cover;
    background-position: center;
}
.work-body-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body);
}

/* ── Quote panel ── */
.work-quote-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
}
.work-quote-panel-img {
    background-size: cover;
    background-position: center;
}
.work-quote-panel-content {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 72px 64px;
}
.work-quote {
    color: var(--white);
}
.work-quote p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.92);
}
.work-quote::before {
    content: '\201C';
    display: block;
    font-size: 72px;
    line-height: 0.6;
    color: var(--bright-blue);
    margin-bottom: 20px;
    font-style: normal;
}
.work-quote footer {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.work-quote footer strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.work-quote footer span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Initiatives heading ── */
#initiatives .section-header,
#initiatives .container > .fade-up:first-child { margin-bottom: 0; }

/* ── Summit featured strip ── */
.work-summit-feature {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
}
.work-summit-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.work-summit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,23,76,0.90) 40%, rgba(0,23,76,0.50) 100%);
}
.work-summit-inner {
    position: relative;
    z-index: 1;
    padding: 64px 0;
}
.work-summit-content { max-width: 680px; }
.work-summit-content .text-eyebrow { color: rgba(255,255,255,0.6); }
.work-initiative-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-top: 8px;
}
.work-initiative-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin-top: 12px;
    max-width: 520px;
}
.work-summit-date-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}
.work-summit-date-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.work-summit-date-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.work-summit-date-month {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.work-summit-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.3);
}
.work-summit-loc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.work-summit-city {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.work-summit-state {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.work-summit-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ── Initiative card grids ── */
.work-initiatives-grid {
    display: grid;
    gap: 20px;
}
.work-initiatives-grid--3 { grid-template-columns: repeat(3, 1fr); }
.work-initiatives-grid--2 { grid-template-columns: repeat(2, 1fr); }

.work-initiative-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}
.work-initiative-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,40,0.97) 0%, rgba(0,10,40,0.75) 50%, rgba(0,10,40,0.25) 100%);
}
.work-initiative-body {
    position: relative;
    z-index: 1;
    padding: 36px 32px;
    color: var(--white);
    width: 100%;
}
.work-initiative-body .text-eyebrow {
    color: var(--bright-blue);
}
.work-initiative-body .work-initiative-title {
    font-size: 22px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.work-initiative-body .work-initiative-desc {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.work-initiative-coming-soon {
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bright-blue);
    background: rgba(0,168,212,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0,168,212,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .work-focus-grid { grid-template-columns: 1fr; }
    .work-focus-content { padding: 64px 48px; max-width: 100%; margin-left: 0; }
    .work-focus-img { min-height: 360px; }
    .work-quote-panel { grid-template-columns: 1fr; }
    .work-quote-panel-img { min-height: 360px; }
    .work-quote-panel-content { padding: 56px 48px; }
    .work-initiatives-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .work-hero { min-height: 50vh; }
    .work-hero-title { font-size: clamp(24px, 6vw, 36px); }
    .work-focus-content { padding: 56px 24px; }
    .work-quote p { font-size: 17px; }
    .work-quote-panel-content { padding: 48px 24px; }
    .work-quote::before { font-size: 52px; }
    .work-initiatives-grid--3,
    .work-initiatives-grid--2 { grid-template-columns: 1fr; }
    .work-initiative-card { min-height: 340px; }
    .work-initiative-body { padding: 28px 24px; }
    .work-summit-date-num { font-size: 30px; }
}

/* ═══════════════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════════════ */

.events-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.events-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,23,76,0.75) 0%, rgba(0,23,76,0.50) 100%);
}
.events-hero-inner {
    position: relative;
    z-index: 1;
    padding: 100px 0 72px;
}
.events-hero .heading-xl { color: var(--white); margin-top: 8px; }
.events-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.7;
    margin-top: 16px;
}

.events-wrap {
    padding: 72px 0 96px;
    background: var(--off-white);
}

.events-group { margin-bottom: 64px; }
.events-group--past { opacity: 0.75; }
.events-group--past .event-card-title { color: var(--body); }

.events-group-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,23,76,0.45);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0,23,76,0.1);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 0;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.event-card.has-thumb {
    grid-template-columns: 88px 200px 1fr auto;
}
.event-card-thumb {
    align-self: stretch;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f2f4f8;
    min-width: 200px;
}
.event-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
    transform: translateY(-2px);
}
.event-card.is-past { box-shadow: none; }
.event-card.is-past:hover { transform: none; box-shadow: none; }

.event-date-badge {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 20px 12px;
    min-width: 88px;
    text-align: center;
}
.event-card.is-past .event-date-badge { background: rgba(0,23,76,0.4); }
.event-badge-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--bright-blue);
    text-transform: uppercase;
}
.event-badge-day {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-top: 2px;
}
.event-badge-year {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}

.event-card-body {
    padding: 24px 28px;
}
.event-card-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.event-type-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bright-blue);
    background: rgba(0,168,212,0.1);
    padding: 3px 10px;
    border-radius: 20px;
}
.event-type-tag.is-virtual {
    color: #2e7d32;
    background: rgba(46,125,50,0.1);
}
.event-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.event-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    font-size: 13px;
    color: rgba(0,23,76,0.55);
    margin-top: 6px;
}
.event-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.event-info-sep { opacity: 0.4; }
.event-location-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0,23,76,0.3);
    text-underline-offset: 2px;
}
.event-location-link:hover {
    text-decoration-color: var(--navy);
}
.event-card-excerpt {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 680px;
}
.event-cal-wrap {
    position: relative;
    display: inline-block;
    margin-top: 8px;
}
.event-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid rgba(0,23,76,0.2);
    border-radius: 6px;
    background: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.event-cal-btn:hover {
    background: rgba(0,23,76,0.05);
    border-color: rgba(0,23,76,0.4);
}
.event-cal-btn .cal-chevron {
    transition: transform 0.2s;
    opacity: 0.6;
}
.event-cal-btn.is-open .cal-chevron {
    transform: rotate(180deg);
}
.event-cal-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid rgba(0,23,76,0.12);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    min-width: 168px;
    overflow: hidden;
}
.event-cal-dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.15s;
}
.event-cal-dropdown a:hover {
    background: rgba(0,23,76,0.05);
}
.event-desc-wrap {
    margin-top: 10px;
    max-width: 680px;
}
.event-desc-content {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    max-height: 72px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.event-desc-content.is-open {
    max-height: 2000px;
}
.event-desc-content p {
    margin: 0 0 8px;
}
.event-desc-content p:last-child {
    margin-bottom: 0;
}
.event-desc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 0;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.55;
    cursor: pointer;
    transition: opacity 0.2s;
}
.event-desc-toggle:hover {
    opacity: 1;
}
.event-desc-toggle svg {
    transition: transform 0.3s;
}
.event-desc-toggle.is-open svg {
    transform: rotate(180deg);
}

.event-card-cta {
    padding: 24px 28px 24px 0;
    flex-shrink: 0;
}

.events-empty {
    color: rgba(0,23,76,0.45);
    font-size: 16px;
    padding: 32px 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .event-card,
    .event-card.has-thumb {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
    }
    .event-card-thumb {
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: unset;
        height: 180px;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #f2f4f8;
    }
    .event-date-badge {
        grid-row: 2;
        min-width: 72px;
    }
    .event-card.has-thumb .event-date-badge { grid-row: 2; }
    .event-badge-day { font-size: 24px; }
    .event-card-body { padding: 20px 20px 16px; grid-row: 2; }
    .event-card.has-thumb .event-card-body { grid-column: 2; grid-row: 2; }
    .event-card-cta {
        grid-column: 1 / -1;
        padding: 0 20px 20px;
    }
}

/* ═══════════════════════════════════════════════
   COMMUNITY PAGE
═══════════════════════════════════════════════ */

/* ── Hero ── */
.community-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1);
}
.hero-slide.is-active {
    opacity: 1;
}
.hero-slide.is-zooming {
    animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}
.community-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.community-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,23,76,0.82) 0%, rgba(0,23,76,0.55) 100%);
}
.community-hero-inner {
    position: relative;
    z-index: 1;
    padding: 110px 48px 80px 96px;
}
.community-hero .heading-xl { color: var(--white); margin-top: 8px; }
.community-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.community-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    line-height: 1.7;
    margin-top: 16px;
}

/* ── Summit — half-screen split ── */
.comm-summit-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.comm-summit-split-content {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}
.comm-summit-split-img {
    background-size: cover;
    background-position: center;
    position: relative;
}
.comm-summit-split-img-inner {
    position: absolute;
    inset: 0;
    background: rgba(0,23,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.comm-summit-split-logo {
    width: 75%;
    max-width: 380px;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

/* ── Events Carousel ── */
.comm-events-section { padding-bottom: 72px; }
.comm-events-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}
.comm-events-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
    flex: 1;
}
.comm-events-track::-webkit-scrollbar { display: none; }

.comm-event-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    min-width: 268px;
    max-width: 268px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.comm-event-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.comm-event-img {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.comm-event-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,40,0.75) 0%, transparent 55%);
}
.comm-event-date {
    position: absolute;
    bottom: 10px;
    left: 14px;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.comm-event-month {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--bright-blue);
    text-transform: uppercase;
}
.comm-event-day {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.comm-event-year {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
}
.comm-event-body {
    padding: 16px 18px;
    flex: 1;
}
.comm-event-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.comm-event-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}
.comm-event-meta {
    font-size: 12px;
    color: rgba(0,23,76,0.5);
    margin-top: 6px;
}
.comm-event-cta {
    margin: 0 20px 20px;
    display: block;
    text-align: center;
}
.comm-events-arrow {
    background: var(--white);
    border: 1.5px solid rgba(0,23,76,0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--navy);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}
.comm-events-arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ── Elevation Report Hub ── */
.comm-er-hub { background: var(--off-white); }

.comm-er-hub-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}
.comm-er-hub-sub {
    font-size: 16px;
    color: var(--body);
    max-width: 520px;
    margin-top: 10px;
    line-height: 1.65;
}
.comm-er-hub-hd-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.comm-er-col-label {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}
.comm-er-roundup-hd {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 52px;
    margin-bottom: 0;
}
.comm-er-roundup-hd .comm-er-col-label { margin-bottom: 0; }
.comm-er-roundup-hd .comm-er-week { margin: 0; }

/* Featured article cards — image left, content right */
.comm-er-articles {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.comm-er-art {
    display: flex;
    align-items: stretch;
    background: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,23,76,0.07);
    min-height: 152px;
    transition: background 0.18s;
    position: relative;
}
.comm-er-art:last-child { border-bottom: none; }
.comm-er-art:hover { background: #f5f8ff; }
.comm-er-art-img {
    width: 220px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}
.comm-er-art-img--placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, #003580 100%);
}
.comm-er-art-body {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}
.comm-er-art-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.comm-er-art-topic {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--bright-blue);
    padding: 4px 10px;
    border-radius: 20px;
}
.comm-er-art-loc {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,23,76,0.55);
    background: rgba(0,23,76,0.07);
    padding: 4px 10px;
    border-radius: 20px;
}
.comm-er-art-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin: 0;
}
.comm-er-art-summary {
    font-size: 13.5px;
    color: var(--body);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.comm-er-art-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}
.comm-er-art-meta {
    font-size: 11.5px;
    color: rgba(0,23,76,0.4);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.comm-er-art-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bright-blue);
    transition: color 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.comm-er-art:hover .comm-er-art-cta { color: var(--navy); }

.comm-er-week {
    font-size: 14px;
    color: rgba(0,23,76,0.5);
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.er-town-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.er-town-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.er-town-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.er-town-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.er-town-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.er-town-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.er-town-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.er-town-bullets li {
    font-size: 13.5px;
    color: var(--body);
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.er-town-card.is-open .er-town-bullets li {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}
.er-town-bullets li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--bright-blue);
    font-weight: 700;
}
.er-town-bullets a {
    color: var(--bright-blue);
    text-decoration: none;
}
.er-town-bullets a:hover { text-decoration: underline; }
.er-town-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--bright-blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.er-town-toggle:hover { color: var(--navy); }
.er-toggle-icon {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block;
}
.er-town-card.is-open .er-toggle-icon { transform: rotate(45deg); }
.er-empty {
    text-align: center;
    padding: 48px 0;
    color: rgba(0,23,76,0.5);
    font-size: 15px;
}
.er-empty a { color: var(--bright-blue); }


/* ── Solutions Preview ── */
.comm-solutions-section { padding-bottom: 80px; }

.comm-sol-subtitle {
    font-size: 17px;
    color: var(--body);
    max-width: 640px;
    line-height: 1.7;
    margin: 12px auto 0;
}

/* Category buttons */
.comm-sol-cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.comm-sol-cat-btn {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
.comm-sol-cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,40,0.82) 0%, rgba(0,10,40,0.30) 100%);
    transition: opacity 0.25s ease;
}
.comm-sol-cat-btn.is-all {
    background: linear-gradient(135deg, var(--navy) 0%, #003580 100%);
    align-items: center;
    justify-content: center;
}
.comm-sol-cat-btn.is-all::before { display: none; }
.comm-sol-cat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.comm-sol-cat-btn:hover::before { opacity: 0.7; }
.comm-sol-cat-btn span {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    padding: 10px 12px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.comm-sol-cat-btn.is-all span {
    font-size: 13px;
    padding: 0;
    letter-spacing: 0.04em;
    text-shadow: none;
}

/* Recently added sub-header */
.comm-sol-recent-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}
.comm-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.comm-sol-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.comm-sol-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.comm-sol-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.comm-sol-thumb--placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--bright-blue) 100%);
}
.comm-sol-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.comm-sol-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bright-blue);
}
.comm-sol-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-top: 6px;
}
.comm-sol-excerpt {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    margin-top: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.comm-sol-read {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bright-blue);
    text-decoration: none;
}
.comm-sol-read:hover { text-decoration: underline; }

/* ── Join the Community ── */
.comm-join-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
}
.comm-join-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}
.comm-join-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,23,76,0.93) 0%, rgba(0,23,76,0.80) 100%);
}
.comm-join-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.comm-join-content {
    max-width: 680px;
    text-align: center;
}
.comm-join-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-top: 10px;
}
.comm-join-body {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.comm-join-btn {
    margin-top: 36px;
    font-size: 15px;
    padding: 16px 36px;
}

/* ── Community Responsive ── */
@media (max-width: 1024px) {
    .er-town-grid { grid-template-columns: repeat(2, 1fr); }
    .comm-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .comm-sol-cats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .community-hero { min-height: 45vh; }
    .community-hero-inner { padding: 90px 24px 64px 24px; }
    .community-hero .about-hero-inner { padding-top: 90px; padding-bottom: 64px; }
    .comm-summit-split { grid-template-columns: 1fr; }
    .comm-summit-split-img { min-height: 340px; }
    .comm-summit-split-content { padding: 64px 40px; }
    .er-town-grid,
    .comm-solutions-grid { grid-template-columns: 1fr; }
    .comm-sol-cats { grid-template-columns: repeat(2, 1fr); }
    .comm-sol-cat-btn { height: 88px; }
    .comm-events-arrow { display: none; }
    .comm-er-art-img { width: 140px; }
    .comm-er-art-title { font-size: 15px; }
    .comm-er-art-summary { display: none; }
    .comm-er-hub-hd { flex-direction: column; align-items: flex-start; }
    .comm-er-hub-hd-actions { align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */

/* Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 30%;
    padding-top: var(--nav-height);
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,10,40,0.92) 0%,
        rgba(0,10,40,0.55) 55%,
        rgba(0,10,40,0.25) 100%
    );
}
.about-hero-inner {
    position: relative;
    z-index: 1;
    padding-bottom: 96px;
    max-width: 760px;
}
.about-hero-inner .text-eyebrow { color: var(--bright-blue); }
.about-hero-h1 {
    color: var(--white);
    margin-top: 6px;
    margin-bottom: 20px;
}
.about-hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    max-width: 620px;
}

/* Prose text */
.about-prose {
    font-size: 17px;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 20px;
}
.about-prose:last-child { margin-bottom: 0; }

/* ── Fire split (Why We Exist) ── */
.about-fire-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.about-fire-img {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.about-fire-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.0) 100%);
}
.about-fire-content {
    background: var(--white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Tooele split (Superpower + Capacity Gap) ── */
.about-tooele-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about-tooele-content {
    background: var(--navy);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-tooele-img {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.about-tooele-stat {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 24px 28px;
}
.about-stat-number {
    font-family: 'Neutraface2', var(--font);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--bright-blue);
    line-height: 1;
    flex-shrink: 0;
}
.about-stat-label {
    font-size: 14px;
    line-height: 1.6;
}

/* ── Summit split (Quote) ── */
.about-summit-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.about-summit-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.about-summit-content {
    background: var(--navy);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-quote-mark {
    width: 48px;
    height: auto;
    margin-bottom: 24px;
    display: block;
    flex-shrink: 0;
}
.about-quote-text {
    font-family: 'Neutraface2', var(--font);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    font-style: normal;
}
.about-quote-text em {
    color: var(--bright-blue);
    font-style: normal;
}
.about-quote-source {
    display: flex;
    align-items: center;
    gap: 14px;
}
.about-quote-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0,179,239,0.2);
    border: 2px solid rgba(0,179,239,0.4);
    color: var(--bright-blue);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-quote-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.about-quote-role {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* People grid */
.about-people-section {}
.about-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.about-people-grid--wide {
    grid-template-columns: repeat(4, 1fr);
}

/* Person card */
.about-person-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,23,76,0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-person-card:hover {
    box-shadow: 0 8px 28px rgba(0,23,76,0.12);
    transform: translateY(-3px);
}
.about-person-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center top;
    background-color: var(--navy);
}
.about-person-photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}
.about-person-photo--initials span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.03em;
}
.about-person-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.about-person-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 3px;
}
.about-person-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}
.about-person-linkedin {
    color: #0A66C2;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.about-person-linkedin:hover { opacity: 0.7; }
.about-li-icon { width: 16px; height: 16px; display: block; }
.about-person-title {
    font-size: 12.5px;
    color: var(--mid-gray);
    font-weight: 500;
    line-height: 1.4;
}

/* Bio expand */
.about-person-bio {
    font-size: 13px;
    color: var(--body);
    line-height: 1.65;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,23,76,0.08);
    display: none;
    flex: 1;
}
.about-person-bio p { margin-bottom: 10px; }
.about-person-bio p:last-child { margin-bottom: 0; }
.about-person-card.is-open .about-person-bio { display: block; }
.about-person-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--bright-blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.about-person-toggle:hover { color: var(--navy); }
.about-toggle-icon {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block;
}
.about-person-card.is-open .about-toggle-icon { transform: rotate(45deg); }

/* Summit participating communities */
.about-summit-communities { background: var(--white); }
.about-summit-block-hd {
    margin-bottom: 28px;
}
.about-summit-block-hd .text-subhead {
    font-size: 16px;
    color: var(--mid-gray);
    max-width: 560px;
}
.about-comm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.about-comm-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: var(--off-white);
    border: 1px solid rgba(0,23,76,0.1);
    border-radius: 20px;
    padding: 5px 14px;
    line-height: 1.4;
    transition: background 0.15s, border-color 0.15s;
}
.about-comm-pill:hover {
    background: rgba(0,179,239,0.08);
    border-color: rgba(0,179,239,0.3);
}

/* About responsive */
@media (max-width: 1024px) {
    .about-fire-content { padding: 56px 40px; }
    .about-tooele-content { padding: 56px 40px; }
    .about-summit-content { padding: 56px 40px; }
    .about-people-grid--wide { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .about-hero { min-height: 55vh; }
    .about-hero-inner { padding-bottom: 64px; }
    .about-hero-sub { font-size: 17px; }
    .about-fire-split { grid-template-columns: 1fr; }
    .about-fire-img { min-height: 300px; }
    .about-fire-content { padding: 48px 28px; }
    .about-tooele-split { grid-template-columns: 1fr; }
    .about-tooele-img { min-height: 300px; order: -1; }
    .about-tooele-content { padding: 48px 28px; }
    .about-summit-split { grid-template-columns: 1fr; }
    .about-summit-img { min-height: 300px; }
    .about-summit-content { padding: 48px 28px; }
    .about-tooele-stat { flex-direction: column; align-items: flex-start; gap: 10px; }
    .about-people-grid { grid-template-columns: 1fr 1fr; }
    .about-people-grid--wide { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════
   BLOG / ELEVATION REPORT
════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.blog-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: var(--navy);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.blog-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,24,47,0.82) 40%, rgba(10,24,47,0.6) 100%);
}
.blog-hero-inner { position: relative; z-index: 1; padding: 100px 0 64px; }
.blog-hero-inner .heading-xl { color: #fff; }
.blog-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-top: 16px;
    line-height: 1.7;
}

/* ── Filter bar ── */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.blog-filter-btn {
    padding: 6px 16px;
    border-radius: 99px;
    border: 1.5px solid #d1d5db;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-filter-btn:hover,
.blog-filter-btn.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* ── Grid ── */
.blog-archive-section { padding-top: 56px; padding-bottom: 80px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ── Card ── */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.11); }
.blog-card-link { display: block; }
.blog-card-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}
.blog-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bright-blue);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}
.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
    margin: 0 0 10px;
}
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card-title a:hover { color: var(--bright-blue); }
.blog-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}
.blog-card-date { font-size: 13px; color: #9ca3af; }
.blog-card-read { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
.blog-card-read:hover { color: var(--bright-blue); }

/* ── Pagination ── */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}
.blog-pagination a,
.blog-pagination span {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #d1d5db;
    color: var(--navy);
    text-decoration: none;
}
.blog-pagination .current {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.blog-pagination a:hover { border-color: var(--navy); }

/* ── Single post ── */
.blog-single-hero {
    position: relative;
    background: var(--navy);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.blog-single-hero.has-image .blog-single-hero-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.blog-single-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,24,47,0.92) 30%, rgba(10,24,47,0.4) 100%);
}
.blog-single-hero-inner {
    position: relative; z-index: 1;
    padding-top: 120px;
    padding-bottom: 56px;
}
.blog-single-cat {
    color: var(--bright-blue) !important;
    margin-bottom: 14px;
    display: block;
    text-decoration: none;
}
.blog-single-title {
    color: #fff;
    max-width: 780px;
    line-height: 1.2;
}
.blog-single-meta {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.blog-single-body {
    padding-top: 56px;
    padding-bottom: 80px;
    max-width: 760px;
}
.blog-single-content {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
}
.blog-single-content h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; color: var(--navy); }
.blog-single-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--navy); }
.blog-single-content p { margin-bottom: 24px; }
.blog-single-content a { color: var(--bright-blue); }
.blog-single-content img { max-width: 100%; border-radius: 8px; margin: 8px 0; }
.blog-single-content ul, .blog-single-content ol { padding-left: 24px; margin-bottom: 24px; }
.blog-single-content li { margin-bottom: 8px; }
.blog-single-content blockquote {
    border-left: 4px solid var(--bright-blue);
    padding: 4px 0 4px 24px;
    margin: 32px 0;
    font-style: italic;
    color: #4b5563;
}
.blog-single-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.blog-single-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag {
    padding: 4px 14px;
    border-radius: 99px;
    background: #f3f4f6;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
}
.blog-tag:hover { background: var(--navy); color: #fff; }
.blog-back-link { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
.blog-back-link:hover { color: var(--bright-blue); }

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-filter-bar { gap: 6px; }
    .blog-single-body { padding-top: 36px; }
    .blog-single-content { font-size: 16px; }
    .blog-single-footer { flex-direction: column; align-items: flex-start; }
}
