﻿/*
Theme Name: ISA Strategy
Theme URI: https://www.isa-int.org/
Author: Codex
Description: A high-end business WordPress theme for International Strategists Alliance.
Version: 1.0.7
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: isa-strategy
*/

:root {
    --isa-ink: #111827;
    --isa-ink-soft: #4a5568;
    --isa-navy: #173557;
    --isa-blue: #3f638b;
    --isa-sky: #dbe8f1;
    --isa-teal: #1f766f;
    --isa-gold: #b88a3b;
    --isa-gold-soft: #e6d4b5;
    --isa-mist: #f2f6f8;
    --isa-white: #ffffff;
    --isa-line: rgba(17, 24, 39, 0.12);
    --isa-shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
    --isa-radius: 8px;
    --isa-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--isa-ink);
    background: var(--isa-white);
    font-family: "Inter", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--isa-teal);
}

button,
input,
textarea,
select {
    font: inherit;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 10000;
    left: 18px;
    top: 18px;
    padding: 10px 14px;
    color: var(--isa-white);
    background: var(--isa-ink);
    border-radius: var(--isa-radius);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.admin-bar .site-header {
    top: 32px;
}

.header-shell {
    width: min(100% - 40px, var(--isa-width));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    gap: 13px;
}

.brand-logo,
.custom-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--isa-white);
    box-shadow: 0 0 0 1px rgba(63, 99, 139, 0.14);
}

.brand-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0;
    color: var(--isa-navy);
}

.brand-copy span {
    font-size: 12px;
    line-height: 1.2;
    color: var(--isa-ink-soft);
    white-space: nowrap;
}

.primary-navigation {
    flex: 1 1 auto;
    min-width: 0;
}

.primary-navigation .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-navigation a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: var(--isa-radius);
    color: var(--isa-ink);
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a {
    color: var(--isa-navy);
    background: rgba(63, 99, 139, 0.10);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--isa-line);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    cursor: pointer;
    place-items: center;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--isa-navy);
}

.site-main {
    min-height: 60vh;
}

.isa-hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: end;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(8, 18, 32, 0.92) 0%, rgba(13, 32, 52, 0.80) 34%, rgba(13, 32, 52, 0.35) 62%, rgba(13, 32, 52, 0.12) 100%),
        var(--hero-image) center / cover no-repeat;
}

.isa-hero-compact {
    min-height: 600px;
}

.isa-hero-executive {
    min-height: 640px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(8, 18, 32, 0.94) 0%, rgba(8, 18, 32, 0.76) 38%, rgba(8, 18, 32, 0.32) 72%, rgba(8, 18, 32, 0.16) 100%),
        var(--hero-image) center / cover no-repeat;
}

.isa-hero-executive .hero-shell {
    padding: 112px 0;
}

.isa-hero-executive .hero-title {
    max-width: 720px;
}

.isa-hero-executive .hero-subtitle {
    max-width: 650px;
}

.isa-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--isa-white));
}

.hero-shell {
    width: min(100% - 40px, var(--isa-width));
    margin: 0 auto;
    padding: 132px 0 82px;
}

.hero-content {
    width: min(650px, 100%);
    color: var(--isa-white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--isa-gold-soft);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero-title,
.page-hero h1 {
    margin: 0;
    font-size: 62px;
    line-height: 1.06;
    letter-spacing: 0;
}

.hero-subtitle {
    margin: 24px 0 0;
    max-width: 610px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--isa-radius);
    font-weight: 750;
    line-height: 1;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--isa-white);
    background: var(--isa-gold);
    box-shadow: 0 14px 28px rgba(184, 138, 59, 0.22);
}

.button-primary:hover,
.button-primary:focus {
    color: var(--isa-white);
    background: #a97d31;
}

.button-secondary {
    color: var(--isa-white);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus {
    color: var(--isa-white);
    background: rgba(255, 255, 255, 0.15);
}

.button-outline {
    color: var(--isa-navy);
    border-color: rgba(63, 99, 139, 0.26);
    background: var(--isa-white);
}

.button-outline:hover,
.button-outline:focus {
    color: var(--isa-white);
    background: var(--isa-navy);
}

.hero-statbar {
    width: min(100% - 40px, var(--isa-width));
    margin: -44px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: var(--isa-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--isa-shadow);
}

.hero-statbar-compact {
    grid-template-columns: repeat(3, 1fr);
}

.executive-credentials {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--isa-shadow);
    overflow: hidden;
}

.credentials-grid > div {
    padding: 26px 30px;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.credentials-grid > div:last-child {
    border-right: 0;
}

.credentials-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--isa-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.credentials-grid strong {
    display: block;
    color: var(--isa-navy);
    font-size: 28px;
    line-height: 1;
}

.credentials-grid p {
    margin: 12px 0 0;
    color: var(--isa-ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.hero-stat {
    min-height: 106px;
    padding: 24px;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;
    color: var(--isa-navy);
    font-size: 28px;
    line-height: 1;
}

.hero-stat span {
    display: block;
    margin-top: 9px;
    color: var(--isa-ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

.section {
    padding: 96px 0;
}

.section-muted {
    background: var(--isa-mist);
}

.section-dark {
    color: var(--isa-white);
    background: var(--isa-ink);
}

.section-shell {
    width: min(100% - 40px, var(--isa-width));
    margin: 0 auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 42px;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--isa-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-dark .section-kicker {
    color: var(--isa-gold-soft);
}

.section-title {
    margin: 0;
    color: var(--isa-ink);
    font-size: 38px;
    line-height: 1.18;
    letter-spacing: 0;
}

.section-dark .section-title {
    color: var(--isa-white);
}

.section-lede {
    margin: 0;
    color: var(--isa-ink-soft);
    font-size: 17px;
}

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

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.5fr);
    gap: 54px;
    align-items: start;
}

.prose {
    color: var(--isa-ink-soft);
    font-size: 17px;
}

.prose h2,
.prose h3 {
    color: var(--isa-ink);
    line-height: 1.25;
}

.section-home-intro .prose h2 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--isa-ink);
    font-size: 36px;
    line-height: 1.18;
}

.image-panel,
.wide-image-panel {
    margin: 0;
    overflow: hidden;
    border-radius: var(--isa-radius);
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: var(--isa-white);
    box-shadow: var(--isa-shadow);
}

.image-panel img,
.wide-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panel {
    aspect-ratio: 4 / 3;
}

.executive-image {
    aspect-ratio: 16 / 11;
}

.wide-image-panel {
    margin-top: 28px;
    aspect-ratio: 16 / 6;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: var(--isa-navy);
    font-weight: 800;
}

.text-link::after {
    content: "";
    width: 34px;
    height: 1px;
    margin-left: 12px;
    background: currentColor;
}

.executive-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    overflow: hidden;
    background: rgba(17, 24, 39, 0.10);
}

.executive-service-grid article {
    min-height: 250px;
    padding: 34px;
    background: var(--isa-white);
}

.executive-service-grid span {
    display: block;
    margin-bottom: 48px;
    color: var(--isa-gold);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.executive-service-grid h3 {
    margin: 0 0 12px;
    color: var(--isa-ink);
    font-size: 24px;
    line-height: 1.2;
}

.executive-service-grid p {
    margin: 0;
    color: var(--isa-ink-soft);
}

.editorial-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.editorial-panel {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--isa-radius);
    isolation: isolate;
    color: var(--isa-white);
    background: var(--isa-ink);
}

.editorial-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 18, 32, 0.08), rgba(8, 18, 32, 0.82));
}

.editorial-panel img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.editorial-panel:hover img,
.editorial-panel:focus img {
    transform: scale(1.03);
}

.editorial-panel > div {
    padding: 34px;
}

.editorial-panel h2 {
    margin: 0 0 12px;
    color: var(--isa-white);
    font-size: 30px;
    line-height: 1.18;
}

.editorial-panel p:last-child {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
}

.executive-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
}

.prose h2 {
    margin-top: 42px;
    font-size: 30px;
}

.prose h3 {
    margin-top: 32px;
    font-size: 23px;
}

.prose p {
    margin: 0 0 18px;
}

.prose ul,
.prose ol {
    padding-left: 1.2em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card,
.article-card,
.program-card,
.value-card,
.contact-card {
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.feature-card,
.program-card,
.value-card,
.contact-card {
    padding: 28px;
}

.feature-card span,
.program-card span,
.value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    color: var(--isa-white);
    background: var(--isa-navy);
    border-radius: var(--isa-radius);
    font-weight: 800;
}

.feature-card h3,
.program-card h3,
.value-card h3,
.contact-card h3,
.article-card h2,
.article-card h3 {
    margin: 0 0 12px;
    color: var(--isa-ink);
    font-size: 22px;
    line-height: 1.28;
}

.feature-card p,
.program-card p,
.value-card p,
.contact-card p,
.article-card p {
    margin: 0;
    color: var(--isa-ink-soft);
}

.mission-band {
    display: grid;
    grid-template-columns: 0.68fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    border-radius: var(--isa-radius);
    background: linear-gradient(135deg, var(--isa-navy), #245a73 58%, var(--isa-teal));
    color: var(--isa-white);
}

.mission-band h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.15;
}

.mission-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mission-list li {
    padding: 18px;
    min-height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--isa-radius);
    background: rgba(255, 255, 255, 0.08);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.article-card {
    overflow: hidden;
}

.article-card a {
    display: grid;
    min-height: 100%;
}

.article-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--isa-sky), var(--isa-white));
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 24px;
}

.article-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: var(--isa-teal);
    font-size: 13px;
    font-weight: 750;
}

.news-video-intro {
    padding: 132px 0 72px;
    background: var(--isa-white);
    text-align: center;
}

.news-video-intro .section-shell {
    width: min(100% - 40px, 1080px);
}

.news-video-intro h1 {
    max-width: 660px;
    margin: 0 auto 34px;
    color: var(--isa-blue);
    font-size: 30px;
    line-height: 1.28;
    font-weight: 850;
}

.news-video-intro p {
    max-width: 980px;
    margin: 0 auto;
    color: var(--isa-ink-soft);
    font-size: 21px;
    line-height: 1.62;
}

.news-video-intro p + p {
    margin-top: 2px;
}

.news-video-listing {
    padding: 42px 0 104px;
    background: var(--isa-white);
}

.news-list-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 14px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.14);
}

.news-list-heading h2 {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #0b6fcf;
    font-size: 22px;
    line-height: 1.2;
}

.news-list-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 5px;
    height: 24px;
    background: #0b6fcf;
}

.news-list-heading a {
    color: var(--isa-ink-soft);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.video-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 58px;
}

.video-news-card a {
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 24px;
    align-items: center;
    min-height: 128px;
}

.video-news-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9.6;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--isa-sky), var(--isa-white));
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.video-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.video-news-card a:hover .video-news-media img,
.video-news-card a:focus .video-news-media img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.035);
}

.video-play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.72);
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.24);
}

.video-play-mark::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--isa-white);
}

.video-news-body h3 {
    margin: 0 0 14px;
    color: var(--isa-ink);
    font-size: 20px;
    line-height: 1.34;
    font-weight: 760;
}

.video-news-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--isa-ink-soft);
    font-size: 16px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.single-video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 34px;
    border-radius: var(--isa-radius);
    background: var(--isa-ink);
    box-shadow: var(--isa-shadow);
}

.single-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.single-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--isa-ink);
}

.news-single {
    background: linear-gradient(180deg, var(--isa-mist), var(--isa-white) 360px);
}

.news-single-header {
    padding: 118px 0 42px;
}

.news-single-header .breadcrumbs-lite {
    color: var(--isa-teal);
}

.news-single-deck {
    max-width: 760px;
    margin: 0 0 32px;
    color: var(--isa-ink-soft);
    font-size: 19px;
    line-height: 1.78;
}

.news-single-content {
    padding-bottom: 100px;
}

.newsroom-hero {
    padding: 138px 0 86px;
    color: var(--isa-white);
    background:
        linear-gradient(120deg, rgba(8, 18, 32, 0.96), rgba(23, 53, 87, 0.92) 56%, rgba(31, 118, 111, 0.84)),
        url("assets/images/isa-network.png") center / cover no-repeat;
}

.newsroom-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
    gap: 58px;
    align-items: end;
}

.newsroom-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: 58px;
    line-height: 1.05;
}

.newsroom-hero-copy > p {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.newsroom-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin-top: 42px;
}

.newsroom-metrics span {
    min-height: 86px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--isa-radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
}

.newsroom-metrics strong {
    display: block;
    margin-bottom: 4px;
    color: var(--isa-white);
    font-size: 18px;
}

.newsroom-brief {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 3px solid var(--isa-gold);
    border-radius: var(--isa-radius);
    background: rgba(8, 18, 32, 0.46);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.20);
}

.newsroom-brief span {
    color: var(--isa-gold-soft);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.newsroom-brief h2 {
    margin: 14px 0 12px;
    font-size: 26px;
    line-height: 1.2;
}

.newsroom-brief p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.news-featured-section {
    padding: 58px 0 34px;
    background: var(--isa-white);
}

.news-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    box-shadow: 0 22px 54px rgba(17, 24, 39, 0.10);
}

.news-featured-media,
.newsroom-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--isa-sky), var(--isa-white));
}

.news-featured-media {
    min-height: 430px;
}

.news-featured-media img,
.newsroom-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease, filter 300ms ease;
}

.news-featured-card:hover img,
.newsroom-card:hover img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.035);
}

.news-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--isa-teal);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.news-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(31, 118, 111, 0.18);
    border-radius: 999px;
    background: rgba(31, 118, 111, 0.07);
}

.news-featured-body h2 {
    margin: 0 0 18px;
    color: var(--isa-ink);
    font-size: 36px;
    line-height: 1.16;
}

.news-featured-body p {
    margin: 0;
    color: var(--isa-ink-soft);
    font-size: 17px;
    line-height: 1.78;
}

.news-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--isa-line);
    color: var(--isa-ink-soft);
    font-size: 14px;
}

.news-featured-footer a {
    color: var(--isa-navy);
    font-weight: 850;
}

.newsroom-listing {
    padding: 42px 0 108px;
    background: linear-gradient(180deg, var(--isa-white), var(--isa-mist));
}

.newsroom-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 32px;
}

.newsroom-toolbar h2 {
    margin: 0;
    color: var(--isa-ink);
    font-size: 34px;
    line-height: 1.15;
}

.news-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.news-filter-row a,
.news-filter-row span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--isa-ink-soft);
    font-size: 14px;
    font-weight: 760;
}

.news-filter-row .is-active {
    color: var(--isa-white);
    border-color: var(--isa-navy);
    background: var(--isa-navy);
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.newsroom-card {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
}

.newsroom-card-media {
    aspect-ratio: 16 / 10;
}

.newsroom-card-body {
    padding: 24px;
}

.newsroom-card-body h3 {
    margin: 0 0 12px;
    color: var(--isa-ink);
    font-size: 21px;
    line-height: 1.28;
}

.newsroom-card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--isa-ink-soft);
    font-size: 15px;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.52fr);
    gap: 34px;
    align-items: stretch;
}

.founder-panel {
    padding: 42px;
    color: var(--isa-white);
    border-radius: var(--isa-radius);
    background: linear-gradient(135deg, var(--isa-ink), var(--isa-navy));
}

.founder-panel h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.18;
}

.founder-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.founder-mark {
    width: 84px;
    height: 84px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--isa-white);
    padding: 8px;
}

.founder-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.quote-panel {
    padding: 42px;
    border-left: 3px solid var(--isa-gold);
    background: var(--isa-mist);
}

.quote-panel blockquote {
    margin: 0;
    color: var(--isa-ink);
    font-size: 27px;
    line-height: 1.45;
}

.quote-panel cite {
    display: block;
    margin-top: 20px;
    color: var(--isa-ink-soft);
    font-style: normal;
}

.founder-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.46fr);
    gap: 46px;
    align-items: start;
}

.founder-profile-card {
    padding: 34px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    box-shadow: 0 20px 46px rgba(17, 24, 39, 0.10);
}

.founder-profile-card img {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
    padding: 8px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--isa-white);
    box-shadow: 0 0 0 1px rgba(63, 99, 139, 0.14);
}

.founder-profile-card h3 {
    margin: 0 0 8px;
    color: var(--isa-ink);
    font-size: 24px;
    line-height: 1.25;
}

.founder-profile-card p {
    margin: 0;
    color: var(--isa-teal);
    font-weight: 800;
}

.founder-profile-card dl {
    display: grid;
    gap: 15px;
    margin: 26px 0 0;
}

.founder-profile-card dt {
    color: var(--isa-ink-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-profile-card dd {
    margin: 4px 0 0;
    color: var(--isa-ink);
}

.bio-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bio-list-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    color: var(--isa-ink);
    font-weight: 650;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: rgba(255, 255, 255, 0.88);
}

.founder-timeline .timeline-item {
    grid-template-columns: 150px 1fr;
}

.founder-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.bio-panel {
    padding: 34px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.section-muted .bio-panel {
    background: rgba(255, 255, 255, 0.90);
}

.bio-panel h2 {
    margin: 0 0 16px;
    color: var(--isa-ink);
    font-size: 30px;
    line-height: 1.2;
}

.bio-panel p {
    margin: 0;
    color: var(--isa-ink-soft);
}

.bio-panel ul {
    padding-left: 18px;
    margin: 16px 0 0;
    color: var(--isa-ink-soft);
}

.bio-panel li + li {
    margin-top: 10px;
}

.people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.people-list span {
    padding: 9px 12px;
    color: var(--isa-ink);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(31, 118, 111, 0.18);
    border-radius: 999px;
    background: var(--isa-mist);
}

.founder-gallery-section {
    background: linear-gradient(180deg, var(--isa-white), var(--isa-mist));
}

.founder-gallery-carousel {
    overflow: hidden;
    margin: 0;
    padding: 6px 0 20px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.founder-gallery-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.founder-gallery-track.is-ready {
    animation: founder-gallery-scroll 92s linear infinite;
}

.founder-gallery-carousel:hover .founder-gallery-track,
.founder-gallery-carousel:focus-within .founder-gallery-track {
    animation-play-state: paused;
}

.founder-gallery-group {
    display: flex;
    flex: 0 0 auto;
    gap: 18px;
    padding-right: 18px;
}

.founder-gallery-card {
    position: relative;
    flex: 0 0 clamp(260px, 27vw, 380px);
    width: clamp(260px, 27vw, 380px);
    height: clamp(184px, 19vw, 266px);
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.founder-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.founder-gallery-card:hover img,
.founder-gallery-card:focus-within img {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.03);
}

@keyframes founder-gallery-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .founder-gallery-carousel {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .founder-gallery-track.is-ready {
        animation: none;
    }
}

.committee-chair-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.46fr);
    gap: 46px;
    align-items: stretch;
}

.committee-chair-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-top: 3px solid var(--isa-gold);
    border-radius: var(--isa-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 248, 0.86)),
        var(--isa-white);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.committee-chair-card img {
    width: 92px;
    height: 92px;
    padding: 8px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--isa-white);
    box-shadow: 0 0 0 1px rgba(63, 99, 139, 0.14);
}

.committee-chair-card span,
.committee-member-body span {
    color: var(--isa-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.committee-chair-card h3 {
    margin: 6px 0 6px;
    color: var(--isa-ink);
    font-size: 28px;
    line-height: 1.18;
}

.committee-chair-card p {
    margin: 0;
    color: var(--isa-ink-soft);
}

.committee-grid {
    display: grid;
    gap: 26px;
}

.committee-member-card {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 0;
    align-items: start;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: var(--isa-radius);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.92)),
        var(--isa-white);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.committee-member-media {
    height: 100%;
    min-height: 312px;
    padding: 20px;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
    background:
        linear-gradient(135deg, rgba(219, 232, 241, 0.70), rgba(255, 255, 255, 0.92)),
        var(--isa-mist);
}

.committee-member-media img {
    width: 100%;
    height: 272px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.10);
}

.committee-initial {
    width: 100%;
    height: 272px;
    display: grid;
    place-items: center;
    color: var(--isa-white);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--isa-navy), var(--isa-teal));
}

.committee-member-body {
    padding: 34px 36px;
}

.committee-member-body h3 {
    margin: 6px 0 14px;
    color: var(--isa-ink);
    font-size: 30px;
    line-height: 1.18;
}

.committee-member-body p {
    margin: 0;
    color: var(--isa-ink-soft);
    font-size: 15px;
    line-height: 1.92;
}

.committee-member-body p + p {
    margin-top: 14px;
}

.page-hero {
    position: relative;
    padding: 132px 0 76px;
    color: var(--isa-white);
    background:
        linear-gradient(90deg, rgba(8, 18, 32, 0.92), rgba(21, 53, 87, 0.80)),
        var(--hero-image) center / cover no-repeat;
}

.page-hero-shell {
    width: min(100% - 40px, var(--isa-width));
    margin: 0 auto;
}

.page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.breadcrumbs-lite {
    margin-bottom: 20px;
    color: var(--isa-gold-soft);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.timeline {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--isa-line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 34px;
    padding: 28px 0;
    border-bottom: 1px solid var(--isa-line);
}

.timeline-item strong {
    color: var(--isa-navy);
    font-size: 20px;
}

.timeline-item p {
    margin: 0;
    color: var(--isa-ink-soft);
}

.archive-header {
    padding: 110px 0 52px;
    background: var(--isa-mist);
}

.archive-header .section-shell {
    display: grid;
    gap: 16px;
}

.archive-header h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.12;
}

.archive-header p {
    max-width: 760px;
    margin: 0;
    color: var(--isa-ink-soft);
    font-size: 18px;
}

.post-listing {
    padding: 70px 0 96px;
}

.pagination,
.nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 42px;
}

.page-numbers,
.nav-links a,
.nav-links span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--isa-line);
    border-radius: var(--isa-radius);
    padding: 0 12px;
}

.page-numbers.current {
    color: var(--isa-white);
    background: var(--isa-navy);
}

.single-article {
    padding: 72px 0 96px;
}

.article-shell {
    width: min(100% - 40px, 820px);
    margin: 0 auto;
}

.single-title {
    margin: 0 0 18px;
    color: var(--isa-ink);
    font-size: 48px;
    line-height: 1.12;
}

.single-meta {
    margin-bottom: 34px;
    color: var(--isa-ink-soft);
}

.single-featured {
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: var(--isa-radius);
}

.single-featured img {
    width: 100%;
}

.wp-block-image img {
    border-radius: var(--isa-radius);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.join-card {
    padding: 30px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: var(--isa-radius);
    background: var(--isa-white);
}

.join-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.join-card ul {
    padding-left: 18px;
    color: var(--isa-ink-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: 24px;
}

.contact-card a {
    color: var(--isa-navy);
    font-weight: 750;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #0e1826;
}

.footer-shell {
    width: min(100% - 40px, var(--isa-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
    gap: 58px;
    padding: 58px 0;
}

.footer-brand {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.footer-logo {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 50%;
    background: var(--isa-white);
}

.footer-brand strong {
    display: block;
    margin-bottom: 12px;
    color: var(--isa-white);
    font-size: 20px;
}

.footer-brand p {
    max-width: 540px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.footer-links h2 {
    margin: 0 0 14px;
    color: var(--isa-white);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-menu {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--isa-gold-soft);
}

.footer-bottom {
    width: min(100% - 40px, var(--isa-width));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

@media (max-width: 1220px) and (min-width: 1081px) {
    .header-shell {
        width: min(100% - 32px, var(--isa-width));
        gap: 16px;
    }

    .site-brand {
        gap: 10px;
    }

    .brand-logo,
    .custom-logo {
        width: 48px;
        height: 48px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy span {
        display: none;
    }

    .primary-navigation a {
        min-height: 40px;
        padding: 0 8px;
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    .primary-navigation {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        padding: 12px;
        background: var(--isa-white);
        border: 1px solid var(--isa-line);
        border-radius: var(--isa-radius);
        box-shadow: var(--isa-shadow);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation .menu {
        display: grid;
        gap: 4px;
    }

    .primary-navigation a {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-toggle {
        display: grid;
    }

    .hero-title,
    .page-hero h1 {
        font-size: 48px;
    }

    .section-heading,
    .two-column,
    .split-panel,
    .founder-profile-grid,
    .founder-detail-grid,
    .newsroom-hero-grid,
    .news-featured-card,
    .newsroom-toolbar,
    .committee-chair-grid,
    .contact-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .article-grid,
    .article-grid-two,
    .executive-service-grid,
    .editorial-split,
    .credentials-grid,
    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .executive-cta {
        grid-template-columns: 1fr;
    }

    .hero-statbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-band {
        grid-template-columns: 1fr;
    }

    .video-news-grid {
        gap: 34px 30px;
    }

    .newsroom-hero-copy h1 {
        font-size: 48px;
    }

    .newsroom-metrics,
    .news-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-featured-media {
        min-height: 360px;
    }

    .news-filter-row {
        justify-content: flex-start;
    }

    .video-news-card a {
        grid-template-columns: minmax(150px, 190px) 1fr;
        gap: 18px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 15px;
    }

    .admin-bar .site-header {
        top: 46px;
    }

    .header-shell,
    .section-shell,
    .hero-shell,
    .page-hero-shell,
    .footer-shell,
    .footer-bottom,
    .hero-statbar {
        width: min(100% - 28px, var(--isa-width));
    }

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

    .brand-logo,
    .custom-logo {
        width: 46px;
        height: 46px;
    }

    .brand-copy span {
        display: none;
    }

    .isa-hero {
        min-height: 620px;
        background:
            linear-gradient(180deg, rgba(8, 18, 32, 0.92), rgba(8, 18, 32, 0.74)),
            var(--hero-image) 62% center / cover no-repeat;
    }

    .hero-shell {
        padding: 92px 0 72px;
    }

    .hero-title,
    .page-hero h1,
    .archive-header h1,
    .single-title {
        font-size: 38px;
    }

    .hero-subtitle,
    .page-hero p,
    .archive-header p {
        font-size: 16px;
    }

    .hero-statbar,
    .hero-statbar-compact,
    .credentials-grid,
    .feature-grid,
    .bio-list-grid,
    .article-grid,
    .article-grid-two,
    .executive-service-grid,
    .editorial-split,
    .video-news-grid,
    .newsroom-metrics,
    .news-card-grid,
    .join-grid,
    .mission-list,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .founder-gallery-group {
        gap: 12px;
        padding-right: 12px;
    }

    .founder-gallery-card {
        flex-basis: 236px;
        width: 236px;
        height: 168px;
    }

    .hero-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .hero-stat:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 70px 0;
    }

    .news-video-intro {
        padding: 106px 0 54px;
    }

    .news-video-intro h1 {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .news-video-intro p {
        font-size: 17px;
        line-height: 1.72;
    }

    .news-video-listing {
        padding: 30px 0 78px;
    }

    .newsroom-hero {
        padding: 110px 0 66px;
    }

    .newsroom-hero-copy h1 {
        font-size: 38px;
    }

    .newsroom-hero-copy > p {
        font-size: 16px;
    }

    .newsroom-brief,
    .news-featured-body,
    .newsroom-card-body {
        padding: 28px;
    }

    .news-featured-media {
        min-height: 260px;
    }

    .news-featured-body h2 {
        font-size: 28px;
    }

    .newsroom-listing {
        padding: 34px 0 82px;
    }

    .newsroom-toolbar {
        gap: 18px;
    }

    .newsroom-toolbar h2 {
        font-size: 30px;
    }

    .news-list-heading {
        margin-bottom: 28px;
    }

    .video-news-grid {
        gap: 30px;
    }

    .video-news-card a {
        grid-template-columns: 132px 1fr;
        gap: 16px;
        align-items: start;
    }

    .video-news-body h3 {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .video-news-body p {
        font-size: 14px;
        line-height: 1.65;
    }

    .section-title,
    .mission-band h2,
    .founder-panel h2 {
        font-size: 30px;
    }

    .mission-band,
    .founder-panel,
    .quote-panel,
    .founder-profile-card,
    .bio-panel,
    .committee-chair-card {
        padding: 28px;
    }

    .committee-member-card {
        grid-template-columns: 180px 1fr;
    }

    .isa-hero-compact {
        min-height: 560px;
    }

    .wide-image-panel {
        aspect-ratio: 16 / 10;
    }

    .isa-hero-executive {
        min-height: 590px;
        background:
            linear-gradient(180deg, rgba(8, 18, 32, 0.92), rgba(8, 18, 32, 0.66)),
            var(--hero-image) center / cover no-repeat;
    }

    .credentials-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .credentials-grid > div:last-child {
        border-bottom: 0;
    }

    .executive-service-grid article {
        min-height: auto;
        padding: 28px;
    }

    .executive-service-grid span {
        margin-bottom: 28px;
    }

    .editorial-panel {
        min-height: 340px;
    }

    .quote-panel blockquote {
        font-size: 22px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .founder-timeline .timeline-item {
        grid-template-columns: 1fr;
    }

    .committee-chair-card,
    .committee-member-card {
        grid-template-columns: 1fr;
    }

    .committee-member-media {
        min-height: auto;
        height: auto;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .committee-member-media img,
    .committee-initial {
        height: 240px;
    }

    .committee-member-body {
        padding: 28px;
    }

    .footer-brand {
        display: grid;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 480px) {
    .video-news-card a {
        grid-template-columns: 1fr;
    }

    .video-news-media {
        aspect-ratio: 16 / 9;
    }
}
