@font-face {
    font-family: "Noto Sans";
    src: url("../assets/fonts/noto-sans-variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Noto Serif";
    src: url("../assets/fonts/noto-serif-variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

/*
 * White House application shell
 * The structure follows the Astorian Electoral Office portal while keeping
 * White House content, components, and application behavior independent.
 */

:root {
    --wh-navy: #141934;
    --wh-navy-deep: #0b0e20;
    --wh-ink-blue: #141934;
    --wh-blue: #315a78;
    --wh-link: #245275;
    --wh-control: #141934;
    --wh-brand-muted: #4f6678;
    --wh-cyan: #4e7d96;
    --wh-accent: #b4232d;
    --wh-complement: #b08a4c;
    --wh-red: #92252b;
    --wh-red-deep: #741a20;
    --wh-text: #343b42;
    --wh-text-muted: #65717c;
    --wh-bg: #ffffff;
    --wh-page-bg: #fbfaf7;
    --wh-surface: #ffffff;
    --wh-surface-soft: #f3f1ec;
    --wh-border: #d5d5d0;
    --wh-focus: #b08a4c;
    --wh-nav-row-hover: rgba(20, 25, 52, 0.06);
    --wh-nav-row-current: rgba(180, 35, 45, 0.1);
    --wh-nav-row-pressed: rgba(20, 25, 52, 0.11);
    --wh-hero-filter-bg: #10142d;
    --wh-hero-filter-active: #ffffff;
    --font-serif: "Noto Serif", Georgia, "Times New Roman", serif;
    --font-sans: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --content-max: 1240px;
    --content-narrow: 1240px;
    --content-gutter: clamp(1rem, 4vw, 2rem);
    --seal-size: 112px;
    --brand-offset: 128px;
    --radius: 6px;
    --shadow-sm: 0 1px 2px rgba(20, 25, 52, 0.08);
    --shadow-md: 0 8px 24px rgba(20, 25, 52, 0.14);
}

[data-theme="dark"] {
    --wh-navy: #141934;
    --wh-navy-deep: #090c1b;
    --wh-ink-blue: #e3e6f2;
    --wh-blue: #9ebed6;
    --wh-link: #b8d5e8;
    --wh-control: #e3e6f2;
    --wh-brand-muted: #b8c0d8;
    --wh-cyan: #8db8cb;
    --wh-accent: #ef858b;
    --wh-complement: #ddbd79;
    --wh-red: #ef858b;
    --wh-red-deep: #f4a0a5;
    --wh-text: #eef0f7;
    --wh-text-muted: #adb4c9;
    --wh-bg: #121626;
    --wh-page-bg: #0b0e1c;
    --wh-surface: #121625;
    --wh-surface-soft: #1a1f30;
    --wh-border: #394052;
    --wh-nav-row-hover: rgba(174, 188, 240, 0.09);
    --wh-nav-row-current: rgba(239, 133, 139, 0.12);
    --wh-nav-row-pressed: rgba(174, 188, 240, 0.15);
    --wh-hero-filter-bg: #0d1126;
    --wh-hero-filter-active: #ffffff;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: var(--wh-page-bg);
    color: var(--wh-text);
    font: 400 0.9375rem/1.55 var(--font-sans);
    transition: background-color 0.2s ease, color 0.2s ease;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--wh-focus);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.container {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--content-gutter);
}

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

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.65rem 0.9rem;
    background: #fff;
    color: var(--wh-navy);
    border: 2px solid var(--wh-navy);
    font-weight: 700;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Government banner and brand */
.site-header {
    position: relative;
    top: auto;
    z-index: 1000;
    flex: 0 0 auto;
    background: var(--wh-surface);
    border: 0;
}

.gov-banner {
    background: #e9ecef;
    color: #30383e;
    font-size: 0.75rem;
    line-height: 1.3;
}

[data-theme="dark"] .gov-banner {
    background: #171b2a;
    color: #d9ddea;
}

.gov-banner-inner {
    min-height: 1.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-block: 0.28rem;
}

.gov-flag {
    width: 1.4rem;
    height: 0.7rem;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.gov-banner-link {
    margin-left: auto;
    color: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.brand-bar {
    background: var(--wh-surface);
    border-bottom: 1px solid var(--wh-border);
}

.brand-row {
    position: relative;
    min-height: 4.75rem;
    display: flex;
    align-items: center;
}

.site-seal {
    position: absolute;
    top: 0.75rem;
    left: var(--content-gutter);
    z-index: 3;
    width: var(--seal-size);
    height: var(--seal-size);
    border-radius: 50%;
    background: var(--wh-surface);
    box-shadow: 0 0 0 0.35rem var(--wh-surface);
}

.site-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-logo {
    margin-left: var(--brand-offset);
    padding: 0.65rem 0;
    color: var(--wh-ink-blue);
    text-align: left;
}

.site-logo:hover {
    opacity: 1;
}

.site-logo-main {
    display: block;
    font: 700 clamp(1.25rem, 2vw, 1.55rem)/1.15 var(--font-serif);
    letter-spacing: 0;
}

.site-logo-sub {
    display: block;
    margin-top: 0.35rem;
    color: var(--wh-brand-muted);
    font: 750 0.67rem/1.2 var(--font-sans);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    padding: 0.5rem 0.7rem;
    border: 0;
    background: transparent;
    color: var(--wh-control);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.header-action:hover {
    background: var(--wh-surface-soft);
}

.menu-icon {
    position: relative;
    width: 1.25rem;
    height: 0.85rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.menu-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid currentColor;
    transform: translateY(-50%);
}

.search-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-icon::after {
    content: "";
    position: absolute;
    width: 0.45rem;
    border-top: 2px solid currentColor;
    right: -0.35rem;
    bottom: -0.18rem;
    transform: rotate(45deg);
    transform-origin: right center;
}

/* Navigation */
.desktop-nav-bar {
    position: relative;
    z-index: 2;
    background: var(--wh-surface);
    box-shadow: var(--shadow-sm);
}

.site-nav {
    border: 0;
    padding-left: calc(var(--content-gutter) + var(--brand-offset));
}

.site-nav-list {
    max-width: none;
    min-height: 2.65rem;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
}

.site-nav-list li {
    display: flex;
}

.site-nav-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.05rem 0.7rem;
    border: 0;
    color: var(--wh-text);
    font: 400 0.95rem/1 var(--font-serif);
    letter-spacing: 0;
    text-transform: none;
}

.site-nav-list a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.27rem;
    height: 0.2rem;
    background: transparent;
}

.site-nav-list a:hover::after {
    background: var(--wh-cyan);
}

.site-nav-list a.is-active {
    background: var(--wh-navy);
    color: #fff;
}

.site-nav-list a.is-active::after {
    background: var(--wh-cyan);
}

.mobile-nav-header,
.nav-toggle {
    display: none;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(2, 15, 25, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
}

/* Search */
.header-search-panel {
    position: relative;
    z-index: 4;
    border: 0;
    border-bottom: 1px solid var(--wh-border);
    padding: 0;
    background: var(--wh-surface-soft);
    box-shadow: 0 8px 20px rgba(6, 55, 85, 0.08);
}

.header-search-form {
    max-width: 56rem;
    padding-block: 1rem 1.1rem;
}

.header-search-form > label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--wh-ink-blue);
    font: 700 0.78rem/1.3 var(--font-sans);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-search-inner {
    display: flex;
    max-width: none;
    margin: 0;
}

.header-search-inner .search-input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0.75rem 0.9rem;
    border: 1px solid #aebbc4;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    background: var(--wh-surface);
    color: var(--wh-text);
}

.header-search-inner .search-input:focus {
    position: relative;
    z-index: 1;
    border-color: var(--wh-link);
    outline: 3px solid var(--wh-focus);
    outline-offset: 1px;
}

.search-submit {
    flex: 0 0 auto;
    padding: 0.7rem 1.15rem;
    border: 1px solid var(--wh-navy);
    border-radius: 0 2px 2px 0;
    background: var(--wh-navy);
    color: #fff;
    font-weight: 750;
    cursor: pointer;
}

.search-submit:hover {
    background: var(--wh-navy-deep);
}

.header-search-hint {
    max-width: none;
    margin: 0.45rem 0 0;
    color: var(--wh-text-muted);
    text-align: left;
}

/* Section banner */
.page-hero {
    background: var(--wh-navy);
    color: #fff;
    text-align: left;
}

.page-hero-inner,
.page-hero:has(.hero-filters) .page-hero-inner {
    padding-top: clamp(1.7rem, 4vw, 2.7rem);
    padding-bottom: clamp(1.55rem, 3vw, 2.2rem);
}

.page-hero-eyebrow,
.section-kicker {
    margin: 0 0 0.4rem;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero-eyebrow {
    color: #cfe4ee;
}

.page-hero-title {
    margin: 0;
    max-width: 52rem;
    color: #fff;
    font: 700 clamp(2rem, 5vw, 3.6rem)/1.08 var(--font-serif);
    letter-spacing: -0.025em;
}

.hero-filters-wrap {
    background: var(--wh-hero-filter-bg);
}

.hero-filters {
    justify-content: flex-start;
    gap: 0;
    background: transparent;
}

.hero-filter-btn {
    flex: 0 0 auto;
    padding: 0.9rem 1.1rem;
    border-top: 3px solid transparent;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.06em;
}

.hero-filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.hero-filter-btn.active {
    border-top-color: var(--wh-red);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Main content */
.site-main {
    flex: 1 0 auto;
    background: var(--wh-page-bg);
}

.news-feed,
.administration-content,
.pres-gallery,
.site-search-results,
.gallery-entry {
    padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
}

.section-intro {
    max-width: 44rem;
    margin-bottom: 1.25rem;
}

.section-kicker {
    color: var(--wh-red);
}

.section-intro h2 {
    margin: 0 0 0.45rem;
    color: var(--wh-ink-blue);
    font: 700 clamp(1.55rem, 3vw, 2rem)/1.2 var(--font-serif);
}

.section-intro p:last-child {
    margin: 0;
    color: var(--wh-text-muted);
}

.news-panel,
.administration-content .container,
.pres-gallery > .container,
.site-search-results > .container,
.gallery-entry > .container {
    background: var(--wh-surface);
    border: 1px solid var(--wh-border);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.news-panel {
    padding: clamp(1.25rem, 4vw, 2.25rem);
}

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

.news-item {
    position: relative;
    padding: 1.35rem 0 1.45rem;
    border-bottom: 1px solid var(--wh-border);
}

.news-item:first-child {
    grid-column: 1 / -1;
    padding: 0 0 1.75rem 1rem;
    border-left: 0.25rem solid var(--wh-red);
}

.news-item:first-child .news-item-title {
    max-width: 52rem;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.news-item-title {
    margin-bottom: 0.55rem;
    color: var(--wh-ink-blue);
    font: 700 clamp(1.15rem, 2.2vw, 1.45rem)/1.35 var(--font-serif);
}

.news-item-title a {
    color: inherit;
}

.news-item-title a:hover {
    color: var(--wh-red);
    opacity: 1;
    text-decoration: underline;
}

.news-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    margin-bottom: 0.7rem;
    color: var(--wh-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.news-item-meta time::before {
    content: "·";
    margin-right: 0.6rem;
}

.news-item-category {
    color: var(--wh-red);
    font-weight: 800;
}

.news-item-excerpt {
    color: var(--wh-text);
}

.news-empty {
    display: grid;
    gap: 0.3rem;
    padding: 2rem;
    border: 1px dashed var(--wh-border);
    background: var(--wh-surface-soft);
    color: var(--wh-text-muted);
    text-align: left;
}

.news-empty strong {
    color: var(--wh-text);
    font-family: var(--font-serif);
}

/* Existing application views inside the new shell */
.administration-content .container,
.pres-gallery > .container,
.site-search-results > .container,
.gallery-entry > .container {
    padding-top: clamp(1.25rem, 4vw, 2rem);
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
}

.leadership-notice {
    border-left: 0.25rem solid var(--wh-cyan);
    background: var(--wh-surface-soft);
}

.executive-portrait-caption {
    background: var(--wh-surface);
}

.executive-portrait-placeholder,
.pres-gallery-card-placeholder,
.registry-admin-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(90, 155, 176, 0.2), transparent 55%),
        var(--wh-navy);
    color: #fff;
    font: 700 clamp(2rem, 7vw, 4.5rem)/1 var(--font-serif);
    letter-spacing: 0.08em;
}

.pres-gallery-card-placeholder {
    min-height: 12.5rem;
    font-size: 2.5rem;
}

.registry-admin-thumb-placeholder {
    min-height: 3rem;
    font-size: 0.95rem;
}

.executive-portrait-name,
.executive-portrait-office,
.executive-portrait-since,
.gallery-entry-name,
.gallery-entry-section-title {
    color: var(--wh-ink-blue);
}

.gallery-tabs {
    border-bottom-color: var(--wh-border);
}

.gallery-tab.is-active,
.gallery-tab[aria-current="page"] {
    border-color: var(--wh-navy);
    background: var(--wh-navy);
    color: #fff;
}

.site-search-section-title {
    color: var(--wh-ink-blue);
    border-bottom-color: var(--wh-border);
}

.site-search-results .news-list {
    display: block;
}

.site-search-results .news-item:first-child {
    padding: 1.35rem 0 1.45rem;
    border-left: 0;
}

/* Footer */
.site-footer {
    flex: 0 0 auto;
    margin-top: auto;
    background: var(--wh-navy);
    color: #e8f0f4;
}

.site-footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem 4rem;
    padding-top: 2.3rem;
    padding-bottom: 2rem;
}

.footer-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 28rem;
}

.footer-identity img {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.footer-brand {
    margin: 0 0 0.25rem;
    color: #fff;
    font: 700 1.05rem/1.2 var(--font-serif);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.45;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(8rem, 1fr));
    gap: 1rem 3rem;
}

.footer-heading {
    margin-bottom: 0.55rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.footer-nav a {
    display: block;
    padding: 0.22rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer-bottom {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-bottom-inner {
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.7rem;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
}

.footer-utilities {
    display: flex;
    align-items: center;
    gap: 0.6rem 1.1rem;
}

.theme-toggle {
    padding: 0.35rem 0.6rem;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.footer-back-top {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.scroll-top {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 2px;
    background: var(--wh-surface);
    color: var(--wh-link);
}

.scroll-top:hover {
    background: var(--wh-navy);
    color: #fff;
}

@media (max-width: 900px) {
    :root {
        --seal-size: 3.6rem;
        --brand-offset: 0;
    }

    .brand-row {
        min-height: 4.8rem;
        gap: 0.8rem;
        padding-block: 0.55rem;
    }

    .site-seal {
        position: static;
        flex: 0 0 auto;
        width: var(--seal-size);
        height: var(--seal-size);
        box-shadow: none;
    }

    .site-logo {
        min-width: 0;
        margin-left: 0;
        flex: 1 1 auto;
    }

    .site-logo-main {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .site-logo-sub {
        font-size: 0.56rem;
    }

    .header-actions {
        margin-left: 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .desktop-nav-bar {
        height: 0;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1100;
        width: min(20rem, 86vw);
        max-height: none;
        padding: 0;
        background: var(--wh-surface);
        box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform 0.22s ease;
    }

    .site-nav.is-open {
        max-height: none;
        transform: translateX(0);
    }

    .mobile-nav-header {
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--wh-border);
        color: var(--wh-ink-blue);
        font-family: var(--font-serif);
    }

    .mobile-nav-close {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--wh-ink-blue);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }

    .site-nav-list {
        display: block;
        min-height: 0;
        padding: 0.7rem;
    }

    .site-nav-list li {
        display: block;
        border: 0;
    }

    .site-nav-list a {
        display: block;
        padding: 0.85rem 0.9rem;
        border-radius: 2px;
        font: 700 0.95rem/1.3 var(--font-sans);
    }

    .site-nav-list a::after {
        display: none;
    }

    .site-nav-list a:hover {
        background: var(--wh-surface-soft);
    }

    .site-nav-list a.is-active {
        background: var(--wh-navy);
    }

    body.nav-open {
        overflow: hidden;
    }

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

    .hero-filter-btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

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

    .footer-nav {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .gov-banner-link,
    .header-action-label {
        display: none;
    }

    .header-action {
        width: 2.6rem;
        justify-content: center;
        padding-inline: 0.5rem;
    }

    .page-hero-title {
        font-size: clamp(1.8rem, 10vw, 2.65rem);
    }

    .news-list {
        display: block;
    }

    .news-item:first-child {
        padding-left: 0.8rem;
    }

    .executive-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .executive-portrait-name {
        font-size: 1rem;
    }

    .executive-portrait-office {
        font-size: 0.62rem;
    }

    .executive-portrait-since {
        font-size: 0.85rem;
    }

    .footer-identity img {
        width: 4rem;
        height: 4rem;
    }

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

@media (max-width: 430px) {
    .site-logo-sub {
        max-width: 9rem;
    }

    .hero-filters {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Refined WoltLab-inspired content system */
.brand-row {
    min-height: 4.4rem;
}

.site-logo-main {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.site-logo-sub {
    margin-top: 0.25rem;
    font-size: 0.625rem;
}

.site-nav-list a {
    padding: 0.7rem 1rem 0.65rem;
    font: 600 0.875rem/1.2 var(--font-sans);
}

.site-nav-list a::after {
    height: 0.17rem;
    background: transparent;
}

.site-nav-list a:hover::after,
.site-nav-list a.is-active::after {
    background: var(--wh-accent);
}

.site-nav-list a.is-active {
    background: var(--wh-navy);
}

.gov-banner-inner {
    justify-content: flex-start;
}

.page-hero-inner,
.page-hero:has(.hero-filters) .page-hero-inner {
    padding-top: clamp(1.35rem, 3vw, 2rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.8rem);
}

.page-hero-eyebrow {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
}

.page-hero-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.hero-filter-btn {
    padding: 0.72rem 1rem;
    border-top-width: 2px;
    font-size: 0.66rem;
}

.hero-filter-btn.active {
    border-top-color: var(--wh-accent);
}

.news-feed,
.administration-content,
.pres-gallery,
.site-search-results,
.gallery-entry {
    padding-block: clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 5vw, 3.75rem);
}

.news-panel,
.administration-content .container,
.pres-gallery > .container,
.site-search-results > .container,
.gallery-entry > .container {
    border-radius: var(--radius);
}

.news-panel {
    padding: 0;
    overflow: hidden;
}

.news-list {
    display: block;
}

.news-item,
.news-item:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 11rem;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    padding: 1.2rem 1.35rem;
    border: 0;
    border-bottom: 1px solid var(--wh-border);
}

.news-item:last-child {
    border-bottom: 0;
}

.news-item:first-child {
    background: linear-gradient(90deg, rgba(194, 161, 94, 0.1), transparent 65%);
    border-left: 0.22rem solid var(--wh-accent);
}

.news-item-title,
.news-item:first-child .news-item-title {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: none;
    color: var(--wh-ink-blue);
    font: 700 clamp(1.05rem, 2vw, 1.25rem)/1.3 var(--font-serif);
}

.news-item:first-child .news-item-title {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.news-item-meta {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding-left: 1rem;
    border-left: 1px solid var(--wh-border);
    font-size: 0.68rem;
}

.news-item-meta time::before {
    display: none;
}

.news-item-excerpt {
    grid-column: 1;
    grid-row: 2;
    margin: 0.55rem 0 0;
    max-width: 48rem;
    color: var(--wh-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
}

.view-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin: 0 0 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--wh-border);
}

.view-toolbar-copy {
    max-width: 42rem;
}

.view-kicker {
    margin: 0 0 0.25rem;
    color: var(--wh-red);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.view-toolbar h2 {
    margin: 0 0 0.3rem;
    color: var(--wh-ink-blue);
    font: 700 clamp(1.4rem, 2.5vw, 1.75rem)/1.2 var(--font-serif);
}

.view-toolbar-copy > p:last-child {
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.875rem;
}

.ui-button {
    display: inline-flex;
    min-height: 2.4rem;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.ui-button--secondary {
    border-color: var(--wh-border);
    background: var(--wh-surface-soft);
    color: var(--wh-ink-blue);
}

.ui-button--secondary:hover {
    border-color: var(--wh-link);
    background: var(--wh-surface);
}

.leadership-notice {
    display: grid;
    gap: 0.15rem;
    margin: 0 0 1.25rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--wh-border);
    border-left: 0.22rem solid var(--wh-accent);
    border-radius: var(--radius);
    background: var(--wh-surface-soft);
    color: var(--wh-text-muted);
}

.leadership-notice strong {
    color: var(--wh-ink-blue);
}

[data-theme="dark"] .leadership-notice {
    border-color: var(--wh-border);
    border-left-color: var(--wh-accent);
    background: var(--wh-surface-soft);
    color: var(--wh-text-muted);
}

.executive-grid {
    max-width: none;
    gap: 1rem;
}

.administration-content .executive-portrait-card {
    display: grid;
    grid-template-columns: minmax(10rem, 42%) minmax(0, 1fr);
    min-height: 17rem;
    overflow: hidden;
    border: 1px solid var(--wh-border);
    border-radius: var(--radius);
    background: var(--wh-surface);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.administration-content .executive-portrait-card:hover {
    border-color: #aebcc6;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.administration-content .executive-portrait-photo {
    height: 100%;
    aspect-ratio: auto;
}

.administration-content .executive-portrait-caption {
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem 1.25rem;
    border: 0;
}

.administration-content .executive-portrait-seal {
    top: 1.1rem;
    right: 1.1rem;
    left: auto;
    width: 2.75rem;
    height: 2.75rem;
    transform: none;
    box-shadow: none;
}

.administration-content .executive-portrait-name {
    max-width: calc(100% - 3rem);
    font: 700 clamp(1.15rem, 2.3vw, 1.45rem)/1.2 var(--font-serif);
    letter-spacing: 0;
}

.administration-content .executive-portrait-office {
    margin-top: 0.25rem;
    color: var(--wh-text-muted);
    font: 600 0.7rem/1.4 var(--font-sans);
    letter-spacing: 0.06em;
}

.administration-content .executive-portrait-since {
    margin-top: 1rem;
    color: var(--wh-text);
    font: 400 0.85rem/1.4 var(--font-sans);
}

.administration-content a.executive-portrait-card .executive-portrait-caption::after,
.administration-content button.executive-portrait-card .executive-portrait-caption::after {
    content: "View profile  →";
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--wh-link);
    font-size: 0.75rem;
    font-weight: 700;
}

.gallery-toolbar {
    align-items: flex-end;
}

.gallery-toolbar-controls {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.gallery-search,
.gallery-sort {
    display: grid;
    gap: 0.3rem;
}

.gallery-search > span,
.gallery-sort > span {
    color: var(--wh-text-muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-search input,
.gallery-sort select {
    min-height: 2.5rem;
    border: 1px solid #b9c5cd;
    border-radius: var(--radius);
    background: var(--wh-surface);
    color: var(--wh-text);
    font: 400 0.82rem/1.2 var(--font-sans);
}

.gallery-search input {
    width: min(17rem, 36vw);
    padding: 0.55rem 0.75rem;
}

.gallery-sort select {
    padding: 0.55rem 2rem 0.55rem 0.7rem;
}

.gallery-search input:focus,
.gallery-sort select:focus {
    border-color: var(--wh-link);
    outline: 3px solid color-mix(in srgb, var(--wh-focus) 55%, transparent);
    outline-offset: 1px;
}

.gallery-subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--wh-border);
}

.gallery-tabs {
    margin: 0;
    border: 0;
}

.gallery-tab {
    padding: 0.7rem 0;
    margin-right: 1.4rem;
    border-bottom-width: 2px;
    color: var(--wh-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
}

.gallery-tab.is-active,
.gallery-tab[aria-current="page"] {
    border-color: var(--wh-link);
    background: transparent;
    color: var(--wh-link);
}

.pres-gallery-meta {
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.75rem;
}

.pres-gallery-meta a {
    color: var(--wh-link);
    font-weight: 600;
}

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

.pres-gallery-card {
    border: 1px solid var(--wh-border);
    border-radius: var(--radius);
    background: var(--wh-surface);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pres-gallery-card:hover {
    border-color: #a9b8c2;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pres-gallery-card-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
}

.pres-gallery-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--wh-surface-soft);
}

.pres-gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform 0.22s ease;
}

.pres-gallery-card:hover .pres-gallery-card-media img {
    transform: scale(1.025);
}

.pres-gallery-card-number {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.25rem 0.45rem;
    border-radius: 3px;
    background: rgba(20, 25, 52, 0.9);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
}

.pres-gallery-card-info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0.9rem 0.95rem;
    border: 0;
    text-align: left;
}

.pres-gallery-card-office {
    margin-bottom: 0.2rem;
    color: var(--wh-red);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pres-gallery-card-info strong {
    color: var(--wh-ink-blue);
    font: 700 1rem/1.28 var(--font-serif);
}

.pres-gallery-card-term {
    margin-top: 0.35rem;
    color: var(--wh-text);
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.pres-gallery-card-secondary {
    display: -webkit-box;
    margin-top: 0.5rem;
    overflow: hidden;
    color: var(--wh-text-muted);
    font-size: 0.7rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pres-gallery-card-placeholder {
    min-height: 0;
    font-size: 2.6rem;
}

.gallery-skeleton {
    overflow: hidden;
    border: 1px solid var(--wh-border);
    border-radius: var(--radius);
    background: var(--wh-surface);
}

.gallery-skeleton span {
    display: block;
    margin: 0.75rem;
    height: 0.65rem;
    border-radius: 3px;
    background: linear-gradient(90deg, #e5e9ec 20%, #f3f5f7 45%, #e5e9ec 70%);
    background-size: 220% 100%;
    animation: gallery-skeleton 1.4s ease infinite;
}

.gallery-skeleton span:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 0;
}

.gallery-skeleton span:last-child {
    width: 62%;
}

@keyframes gallery-skeleton {
    to { background-position: -220% 0; }
}

.pres-gallery-pagination {
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.pres-gallery-pagination button {
    min-width: 2.2rem;
    border-radius: var(--radius);
    background: var(--wh-surface-soft);
}

.pres-gallery-pagination button.is-active {
    background: var(--wh-navy);
}

.gallery-entry > .container {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-entry-back {
    margin-bottom: 0.75rem;
}

.gallery-entry-back a {
    color: var(--wh-link);
    font-size: 0.78rem;
    font-weight: 600;
}

.gallery-entry-nav {
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.gallery-entry-nav-link {
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    background: var(--wh-surface);
    box-shadow: var(--shadow-sm);
}

.gallery-entry-profile,
.gallery-entry-terms,
.gallery-entry-timeline {
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid var(--wh-border);
    border-radius: var(--radius);
    background: var(--wh-surface);
    box-shadow: var(--shadow-sm);
}

.gallery-entry-profile {
    grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.gallery-entry-portrait .executive-portrait-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-entry-name {
    margin-bottom: 0.2rem;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.gallery-entry-role-badge {
    border-radius: 3px;
    background: var(--wh-navy);
    font-size: 0.62rem;
}

.gallery-entry-role-badge--vp {
    background: #596c78;
}

.gallery-entry-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.gallery-entry-meta div {
    display: block;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--wh-border);
    border-radius: var(--radius);
    background: var(--wh-surface-soft);
}

.gallery-entry-meta dt {
    color: var(--wh-text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-entry-meta dd {
    margin: 0.15rem 0 0;
}

.gallery-entry-bio {
    margin-top: 1.25rem;
}

.gallery-entry-section-title {
    margin-bottom: 0.65rem;
    font: 700 1.05rem/1.3 var(--font-sans);
}

.gallery-entry-terms,
.gallery-entry-timeline {
    margin-top: 1rem;
}

.gallery-entry-term-list li {
    margin: 0;
    padding: 0.75rem 0;
}

.gallery-timeline-track {
    border-radius: var(--radius);
    background: var(--wh-surface-soft);
}

.footer-nav {
    display: block;
    min-width: 12rem;
}

@media (max-width: 980px) {
    .pres-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-toolbar-controls {
        width: 100%;
    }

    .gallery-search {
        flex: 1 1 auto;
    }

    .gallery-search input {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .news-item,
    .news-item:first-child {
        display: block;
        padding: 1rem;
    }

    .news-item-meta {
        display: flex;
        flex-direction: row;
        margin-top: 0.55rem;
        padding: 0;
        border: 0;
    }

    .news-item-meta time::before {
        display: inline;
    }

    .view-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .view-toolbar .ui-button {
        align-self: flex-start;
    }

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

    .gallery-toolbar-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-subnav {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .pres-gallery-meta {
        padding: 0.65rem 0;
    }

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

    .gallery-entry-profile {
        grid-template-columns: 1fr;
    }

    .gallery-entry-portrait {
        max-width: 16rem;
    }
}

@media (max-width: 480px) {
    .administration-content .executive-portrait-card {
        grid-template-columns: 7.5rem minmax(0, 1fr);
        min-height: 13rem;
    }

    .administration-content .executive-portrait-caption {
        padding: 1.25rem 0.9rem 0.85rem;
    }

    .administration-content .executive-portrait-seal {
        display: none;
    }

    .administration-content .executive-portrait-name {
        max-width: none;
    }

    .pres-gallery-grid {
        grid-template-columns: 1fr;
    }

    .pres-gallery-card-link {
        display: grid;
        grid-template-columns: 7.5rem minmax(0, 1fr);
    }

    .pres-gallery-card-media {
        height: 100%;
        aspect-ratio: auto;
    }

    .pres-gallery-card-number {
        right: 0.35rem;
        bottom: 0.35rem;
        left: 0.35rem;
        text-align: center;
    }
}

/* FEC-inspired information architecture and full-width content rhythm */
body {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.site-main {
    background: var(--wh-surface);
}

.page-hero {
    background: var(--wh-navy);
}

.page-hero-title {
    max-width: 56rem;
    font-weight: 750;
}

.hero-filter-btn.active {
    border-top-color: var(--wh-complement);
}

.fec-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 3rem;
    padding-bottom: 0.85rem;
    border-bottom: 3px solid #59616a;
}

.fec-section-heading > div {
    min-width: 0;
}

.fec-section-heading h2 {
    margin: 0;
    color: var(--wh-ink-blue);
    font: 750 clamp(1.45rem, 2.7vw, 2rem)/1.2 var(--font-serif);
}

.fec-section-heading > p {
    max-width: 31rem;
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.82rem;
}

.fec-section-heading--compact {
    margin-bottom: 0;
}

.ui-button--primary {
    border-color: var(--wh-navy);
    border-radius: 2px;
    background: var(--wh-navy);
    color: #fff;
}

.ui-button--primary:hover {
    border-color: var(--wh-blue);
    background: var(--wh-blue);
}

/* Existing navigation placement, extended with functional disclosure panels */
.nav-cluster {
    position: static;
}

.nav-primary {
    display: flex;
    align-items: stretch;
}

.nav-primary > a {
    padding-right: 0.55rem;
}

.nav-submenu-toggle {
    position: relative;
    width: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--wh-text-muted);
    cursor: pointer;
}

.nav-submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.16s ease;
}

.nav-submenu-toggle[aria-expanded="true"] span {
    transform: translate(-50%, -35%) rotate(225deg);
}

.nav-cluster.is-current .nav-primary {
    background: var(--wh-navy);
}

.nav-cluster.is-current .nav-submenu-toggle,
.nav-cluster.submenu-open:not(.is-current) .nav-submenu-toggle {
    color: #fff;
}

.nav-cluster.submenu-open:not(.is-current) .nav-primary {
    background: var(--wh-navy);
}

.nav-cluster.submenu-open:not(.is-current) .nav-primary > a {
    color: #fff;
}

.nav-cluster.submenu-open .nav-primary > a::after {
    background: var(--wh-accent);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--wh-navy);
    color: #fff;
    box-shadow: 0 14px 28px rgba(4, 27, 45, 0.24);
}

.nav-submenu-inner {
    display: grid;
    grid-template-columns: minmax(12rem, 0.8fr) minmax(22rem, 1.6fr) minmax(17rem, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 2.2rem;
    padding-left: calc(var(--content-gutter) + var(--brand-offset));
}

.nav-submenu-heading p,
.nav-submenu-feature span {
    margin: 0 0 0.25rem;
    color: var(--wh-accent);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-submenu-heading strong {
    font: 700 1.15rem/1.35 var(--font-serif);
}

.nav-submenu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.site-nav-list .nav-submenu-links a,
.site-nav-list .nav-submenu-feature {
    color: #fff;
    font: 600 0.82rem/1.35 var(--font-sans);
}

.site-nav-list .nav-submenu-links a {
    padding: 0.6rem 1rem 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav-list .nav-submenu-links a::after,
.site-nav-list .nav-submenu-feature::after {
    display: none;
}

.site-nav-list .nav-submenu-links a:hover {
    color: var(--wh-accent);
    text-decoration: underline;
}

.site-nav-list .nav-submenu-feature {
    display: block;
    min-height: 5.6rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--wh-complement);
    background: rgba(255, 255, 255, 0.1);
}

.nav-submenu-feature strong {
    display: block;
    font: 700 0.95rem/1.4 var(--font-serif);
}

.site-nav-list .nav-submenu-feature:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* FEC-like topic access without decorative card clutter */
.home-access {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.home-access-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.35rem;
}

.home-access-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem clamp(1rem, 2.6vw, 2rem);
    border-right: 1px solid var(--wh-border);
}

.home-access-item:first-child {
    padding-left: 0;
}

.home-access-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.home-access-number {
    width: 3.35rem;
    height: 3.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wh-surface-soft);
    color: var(--wh-blue);
    font-size: 0.72rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.home-access-item h3 {
    margin: 0 0 0.45rem;
    color: var(--wh-ink-blue);
    font: 750 clamp(1.05rem, 2vw, 1.3rem)/1.3 var(--font-serif);
}

.home-access-item h3 a {
    color: inherit;
    text-decoration-style: dotted;
}

.home-access-item h3 a:hover {
    color: var(--wh-blue);
}

.home-access-item p {
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.news-feed {
    padding-block: 0 clamp(2.8rem, 6vw, 4.5rem);
}

.news-panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.news-list {
    border-bottom: 1px solid var(--wh-border);
}

.news-item:first-child {
    border-left-color: var(--wh-complement);
    background: linear-gradient(90deg, rgba(239, 139, 88, 0.1), transparent 66%);
}

.public-record-band {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--wh-surface-soft);
}

.public-record-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(31rem, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.public-record-copy h2 {
    margin: 0 0 0.75rem;
    color: var(--wh-ink-blue);
    font: 750 clamp(1.55rem, 3vw, 2.15rem)/1.2 var(--font-serif);
}

.public-record-copy > p:not(.view-kicker) {
    max-width: 42rem;
    margin: 0;
    color: var(--wh-text-muted);
}

.public-record-link {
    display: inline-flex;
    gap: 0.5rem;
    margin-top: 1.15rem;
    color: var(--wh-link);
    font-size: 0.82rem;
    font-weight: 750;
}

.public-record-link .material-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.12rem;
}

.public-record-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 3px solid #59616a;
    border-bottom: 1px solid var(--wh-border);
}

.public-record-stats div {
    display: flex;
    min-width: 0;
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--wh-border);
}

.public-record-stats div:last-child {
    border-right: 0;
}

.public-record-stats dt {
    margin-top: 0.35rem;
    color: var(--wh-text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.public-record-stats dd {
    margin: 0;
    color: var(--wh-ink-blue);
    font: 750 clamp(1.25rem, 2.6vw, 1.75rem)/1.2 var(--font-serif);
}

/* Full container width by default; surfaces are applied to components */
.administration-content .container,
.pres-gallery > .container,
.site-search-results > .container,
.gallery-entry > .container {
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.view-toolbar {
    border-bottom: 3px solid #59616a;
}

.executive-roles {
    margin-top: clamp(2.5rem, 6vw, 4rem);
}

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

.executive-role-grid article {
    padding: 1.35rem clamp(1rem, 3vw, 2rem);
    border-right: 1px solid var(--wh-border);
}

.executive-role-grid article:first-child {
    padding-left: 0;
}

.executive-role-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.executive-role-label {
    margin: 0 0 0.35rem;
    color: var(--wh-red);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.executive-role-grid h3 {
    margin: 0 0 0.55rem;
    color: var(--wh-ink-blue);
    font: 750 1.15rem/1.3 var(--font-serif);
}

.executive-role-grid article > p:last-child {
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.82rem;
}

.pres-gallery-card-media,
.gallery-skeleton span:first-child {
    aspect-ratio: 4 / 5;
}

.pres-gallery-card {
    border-radius: 2px;
}

.site-search-results .news-list {
    border-top: 3px solid #59616a;
}

[data-theme="dark"] .public-record-band {
    background: var(--wh-surface-soft);
}

@media (max-width: 900px) {
    .nav-primary {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 2.75rem;
    }

    .nav-cluster.is-current .nav-primary,
    .nav-cluster.submenu-open:not(.is-current) .nav-primary {
        background: transparent;
    }

    .nav-cluster.is-current .nav-primary > a {
        border-radius: 2px 0 0 2px;
    }

    .nav-submenu-toggle {
        width: auto;
        border-left: 1px solid var(--wh-border);
        color: var(--wh-text-muted);
    }

    .nav-cluster.is-current .nav-submenu-toggle {
        border-left-color: rgba(255, 255, 255, 0.25);
        border-radius: 0 2px 2px 0;
        background: var(--wh-navy);
    }

    .nav-cluster.submenu-open:not(.is-current) .nav-submenu-toggle {
        background: var(--wh-surface-soft);
        color: var(--wh-text);
    }

    .nav-submenu {
        position: static;
        margin: 0 0.45rem 0.65rem;
        border: 0;
        background: var(--wh-surface-soft);
        color: var(--wh-text);
        box-shadow: none;
    }

    .nav-submenu-inner {
        display: block;
        padding: 0.75rem;
    }

    .nav-submenu-heading {
        display: none;
    }

    .nav-submenu-links {
        display: block;
    }

    .site-nav-list .nav-submenu-links a {
        padding: 0.65rem 0.5rem;
        border-bottom-color: var(--wh-border);
        border-radius: 0;
        color: var(--wh-text);
        font-size: 0.78rem;
    }

    .site-nav-list .nav-submenu-feature {
        min-height: 0;
        margin-top: 0.65rem;
        padding: 0.75rem;
        background: var(--wh-surface);
        color: var(--wh-text);
    }

    .nav-submenu-heading p,
    .nav-submenu-feature span {
        color: var(--wh-red);
    }

    .public-record-layout {
        grid-template-columns: 1fr;
    }

    .home-access-grid {
        grid-template-columns: 1fr;
    }

    .home-access-item,
    .home-access-item:first-child,
    .home-access-item:last-child {
        padding: 1.15rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .home-access-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .fec-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .public-record-stats {
        grid-template-columns: 1fr;
    }

    .public-record-stats div {
        padding-inline: 0;
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .public-record-stats div:last-child {
        border-bottom: 0;
    }

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

    .executive-role-grid article,
    .executive-role-grid article:first-child,
    .executive-role-grid article:last-child {
        padding: 1.1rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .executive-role-grid article:last-child {
        border-bottom: 0;
    }
}

/* Navigation, search, and theme controls — consolidated interaction model */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.material-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--material-icon) center / contain no-repeat;
    mask: var(--material-icon) center / contain no-repeat;
}

.material-icon--search {
    --material-icon: url("../images/icons/search.svg");
}

.material-icon--close {
    --material-icon: url("../images/icons/close.svg");
}

.material-icon--light-mode {
    --material-icon: url("../images/icons/light-mode.svg");
}

.material-icon--dark-mode {
    --material-icon: url("../images/icons/dark-mode.svg");
}

.material-icon--expand-more {
    --material-icon: url("../images/icons/expand-more.svg");
}

.material-icon--arrow-forward {
    --material-icon: url("../images/icons/arrow-forward.svg");
}

.material-icon--arrow-upward {
    --material-icon: url("../images/icons/arrow-upward.svg");
}

.mobile-nav-close .material-icon {
    width: 1.45rem;
    height: 1.45rem;
}

.mobile-nav-search button,
.search-hub-control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.header-utility-search {
    width: min(18rem, 28vw);
    height: 2.35rem;
    display: flex;
    margin-left: auto;
}

.header-utility-search input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0.45rem 0.7rem;
    border: 2px solid #aeb6bd;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    background: var(--wh-surface);
    color: var(--wh-text);
    font: 500 0.78rem/1.2 var(--font-sans);
}

.header-utility-search input:focus {
    position: relative;
    z-index: 1;
    border-color: var(--wh-blue);
}

.header-utility-search button {
    width: 2.65rem;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 0 2px 2px 0;
    background: #aeb6bd;
    color: #17232c;
    cursor: pointer;
}

.header-utility-search button:hover {
    background: var(--wh-accent);
}

.header-utility-search .search-icon {
    width: 0.85rem;
    height: 0.85rem;
}

.header-actions {
    margin-left: 0.35rem;
}

.theme-toggle--header {
    width: 2.5rem;
    min-height: 2.5rem;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--wh-control);
}

.theme-toggle--header:hover {
    border-color: transparent;
    background: var(--wh-surface-soft);
    color: var(--wh-blue);
}

.theme-icon {
    width: 1.15rem;
    height: 1.15rem;
}

.theme-icon--dark {
    display: none;
}

[data-theme="dark"] .theme-icon--light {
    display: none;
}

[data-theme="dark"] .theme-icon--dark {
    display: inline-block;
}

.mobile-nav-search {
    display: none;
}

.desktop-nav-bar {
    --submenu-height: 0px;
    padding-bottom: 0;
    transition: padding-bottom 0.2s ease;
}

.desktop-nav-bar.submenu-visible {
    padding-bottom: var(--submenu-height);
}

.nav-menu-button {
    position: relative;
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border: 0;
    background: transparent;
    color: var(--wh-text);
    font: 650 0.86rem/1.2 var(--font-serif);
    cursor: pointer;
}

.nav-menu-button::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 0.18rem;
    left: 1rem;
    height: 0.18rem;
    background: transparent;
}

.nav-menu-button i {
    width: 1rem;
    height: 1rem;
    margin: 0;
    border: 0;
    transform: none;
    transition: transform 0.16s ease;
}

.nav-menu-button:hover::after,
.nav-menu-button[aria-expanded="true"]::after,
.nav-cluster.is-current .nav-menu-button::after {
    background: var(--wh-accent);
}

.nav-menu-button[aria-expanded="true"] i {
    margin: 0;
    transform: rotate(180deg);
}

.nav-menu-button[aria-expanded="true"],
.nav-cluster.is-current .nav-menu-button {
    background: var(--wh-navy);
    color: #fff;
}

.nav-submenu {
    top: 2.65rem;
}

.nav-submenu-inner {
    min-height: 10rem;
}

.site-nav-list .nav-submenu-links a[aria-current="page"] {
    color: var(--wh-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Rebuilt search destination */
.search-hub {
    padding-block: clamp(1.75rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.search-hub-form {
    display: grid;
    grid-template-columns: minmax(16rem, 0.75fr) minmax(25rem, 1.25fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 3px solid #59616a;
}

.search-hub-form-copy h2 {
    margin: 0 0 0.45rem;
    color: var(--wh-ink-blue);
    font: 750 clamp(1.45rem, 3vw, 2rem)/1.2 var(--font-serif);
}

.search-hub-form-copy > p:last-child {
    margin: 0;
    color: var(--wh-text-muted);
    font-size: 0.82rem;
}

.search-hub-control label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--wh-text);
    font-size: 0.7rem;
    font-weight: 750;
    text-transform: uppercase;
}

.search-hub-control > div {
    display: flex;
    min-height: 3.25rem;
}

.search-hub-control input[type="search"] {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0.7rem 0.9rem;
    border: 2px solid #9da7af;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    background: var(--wh-surface);
    color: var(--wh-text);
    font: 500 0.9rem/1.2 var(--font-sans);
}

.search-hub-control input[type="search"]:focus {
    position: relative;
    z-index: 1;
    border-color: var(--wh-blue);
}

.search-hub-control button {
    min-width: 6rem;
    padding: 0.7rem 1rem;
    border: 2px solid var(--wh-navy);
    border-radius: 0 2px 2px 0;
    background: var(--wh-navy);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 750;
    cursor: pointer;
}

.search-hub-control button:hover {
    border-color: var(--wh-blue);
    background: var(--wh-blue);
}

.search-start {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
    gap: clamp(2rem, 6vw, 5rem);
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.search-start h2 {
    margin: 0 0 1rem;
    color: var(--wh-ink-blue);
    font: 750 1.2rem/1.3 var(--font-serif);
}

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

.search-source-grid article {
    padding: 0.3rem clamp(1rem, 3vw, 2rem) 0.5rem;
    border-right: 1px solid var(--wh-border);
}

.search-source-grid article:first-child {
    padding-left: 0;
}

.search-source-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.search-source-grid article > span,
.search-person-card > p {
    color: var(--wh-red);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-source-grid h3 {
    margin: 0.25rem 0 0.45rem;
    color: var(--wh-ink-blue);
    font: 750 1.05rem/1.3 var(--font-serif);
}

.search-source-grid p {
    margin: 0 0 0.8rem;
    color: var(--wh-text-muted);
    font-size: 0.8rem;
}

.search-source-grid a,
.search-result-section header > a {
    color: var(--wh-blue);
    font-size: 0.76rem;
    font-weight: 700;
}

.search-tips {
    padding: 1.15rem 1.25rem;
    border-left: 4px solid var(--wh-complement);
    background: var(--wh-surface-soft);
}

.search-tips a {
    display: block;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--wh-border);
    color: var(--wh-blue);
    font-size: 0.8rem;
    font-weight: 650;
}

.search-tips p {
    margin: 1rem 0 0;
    color: var(--wh-text-muted);
    font-size: 0.75rem;
}

.search-result-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding-top: 1.25rem;
    border-bottom: 1px solid var(--wh-border);
}

.search-result-header > p {
    margin: 0 0 0.75rem;
    color: var(--wh-text-muted);
}

.search-result-header > p strong {
    color: var(--wh-ink-blue);
    font: 750 1.35rem/1 var(--font-serif);
}

.search-result-header > p span {
    color: var(--wh-text);
    font-weight: 650;
}

.search-scope-nav {
    display: flex;
    gap: 1.25rem;
}

.search-scope-nav a {
    display: inline-flex;
    gap: 0.4rem;
    padding: 0.75rem 0;
    border-bottom: 3px solid transparent;
    color: var(--wh-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.search-scope-nav a span {
    min-width: 1.3rem;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    background: var(--wh-surface-soft);
    text-align: center;
    font-size: 0.64rem;
}

.search-scope-nav a[aria-current="page"] {
    border-color: var(--wh-accent);
    color: var(--wh-link);
}

.search-result-section {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

.search-person-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--wh-border);
}

.search-person-card {
    padding: 1.1rem 1.2rem 1.25rem;
    border-right: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
}

.search-person-card:nth-child(2n) {
    border-right: 0;
}

.search-person-card > p {
    margin: 0 0 0.3rem;
}

.search-person-card h3 {
    margin: 0;
    color: var(--wh-ink-blue);
    font: 750 1.08rem/1.3 var(--font-serif);
}

.search-person-card h3 a {
    color: inherit;
}

.search-person-card ul {
    margin: 0.65rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--wh-text-muted);
    font-size: 0.75rem;
}

.search-person-card li + li {
    margin-top: 0.25rem;
}

.search-news-list {
    border-top: 0 !important;
}

.search-no-results {
    margin-top: 2rem;
    padding: 2rem;
    border-left: 4px solid var(--wh-complement);
    background: var(--wh-surface-soft);
}

.search-no-results h2 {
    margin: 0 0 0.35rem;
    color: var(--wh-ink-blue);
    font: 750 1.2rem/1.3 var(--font-serif);
}

.search-no-results p {
    margin: 0 0 0.8rem;
    color: var(--wh-text-muted);
}

.search-no-results a {
    color: var(--wh-blue);
    font-weight: 700;
}

/* Dark theme: shared surfaces, controls, and the mobile navigation drawer */
[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] .brand-bar,
[data-theme="dark"] .desktop-nav-bar,
[data-theme="dark"] .site-header,
[data-theme="dark"] .site-main {
    background: var(--wh-surface);
}

[data-theme="dark"] .header-utility-search input,
[data-theme="dark"] .search-hub-control input,
[data-theme="dark"] .mobile-nav-search input {
    border-color: #4b526f;
    background: #0b0e1c;
}

[data-theme="dark"] .header-utility-search button {
    background: #4b526f;
    color: #fff;
}

[data-theme="dark"] .header-utility-search button:hover {
    background: var(--wh-accent);
    color: #141934;
}

[data-theme="dark"] .ui-button--primary:hover,
[data-theme="dark"] .search-hub-control button:hover {
    border-color: #303a70;
    background: #303a70;
    color: #fff;
}

[data-theme="dark"] .home-access-number,
[data-theme="dark"] .search-tips,
[data-theme="dark"] .search-no-results,
[data-theme="dark"] .search-scope-nav a span {
    background: var(--wh-surface-soft);
}

[data-theme="dark"] .gallery-search input,
[data-theme="dark"] .gallery-sort select {
    border-color: var(--wh-border);
    background: #0b0e1c;
}

[data-theme="dark"] .gallery-skeleton span {
    background: linear-gradient(90deg, #20263b 20%, #2b334d 45%, #20263b 70%);
    background-size: 220% 100%;
}

[data-theme="dark"] .pres-gallery-card:hover,
[data-theme="dark"] .administration-content .executive-portrait-card:hover {
    border-color: #596aa4;
}

[data-theme="dark"] .news-item:first-child {
    background: linear-gradient(90deg, rgba(239, 139, 88, 0.12), transparent 66%);
}

@media (max-width: 900px) {
    .header-utility-search {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .desktop-nav-bar,
    .desktop-nav-bar.submenu-visible {
        height: 0;
        padding-bottom: 0;
        z-index: 1200;
    }

    .mobile-nav-search {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--wh-border);
    }

    .mobile-nav-search label {
        display: block;
        margin-bottom: 0.4rem;
        color: var(--wh-text-muted);
        font-size: 0.65rem;
        font-weight: 750;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .mobile-nav-search > div {
        display: flex;
        min-height: 2.65rem;
    }

    .mobile-nav-search input {
        min-width: 0;
        flex: 1 1 auto;
        padding: 0.55rem 0.7rem;
        border: 1px solid var(--wh-border);
        border-right: 0;
        border-radius: 2px 0 0 2px;
        background: var(--wh-surface);
        color: var(--wh-text);
    }

    .mobile-nav-search button {
        padding: 0.55rem 0.75rem;
        border: 0;
        border-radius: 0 2px 2px 0;
        background: var(--wh-navy);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
    }

    .site-nav-list {
        padding: 0;
    }

    .site-nav {
        z-index: 1200;
    }

    .nav-backdrop {
        z-index: 1150;
    }

    .site-nav-list > .nav-cluster {
        border-bottom: 1px solid var(--wh-border);
    }

    .nav-menu-button {
        display: none;
    }

    .site-nav .nav-submenu,
    .site-nav .nav-submenu[hidden] {
        position: static;
        display: block !important;
        margin: 0;
        background: transparent;
        color: var(--wh-text);
        box-shadow: none;
    }

    .site-nav .nav-submenu-inner {
        min-height: 0;
        display: block;
        padding: 1rem;
    }

    .site-nav .nav-submenu-heading {
        display: block;
        margin-bottom: 0.4rem;
    }

    .site-nav .nav-submenu-heading p {
        color: var(--wh-red);
    }

    .site-nav .nav-submenu-heading strong {
        color: var(--wh-ink-blue);
        font-size: 1.05rem;
    }

    .site-nav .nav-submenu-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-nav-list .nav-submenu-links a {
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-inline: -0.7rem;
        padding: 0.6rem 0.7rem;
        border-bottom: 1px solid var(--wh-border);
        border-radius: 2px;
        color: var(--wh-text);
        box-shadow: inset 3px 0 0 transparent;
        text-decoration: none;
        transition:
            background-color 0.16s ease,
            color 0.16s ease,
            box-shadow 0.16s ease;
    }

    .site-nav-list .nav-submenu-links a::after {
        content: "";
        position: static;
        inset: auto;
        width: 1rem;
        height: 1rem;
        display: inline-block;
        flex: 0 0 auto;
        margin-left: auto;
        background: currentColor;
        opacity: 0;
        transform: translateX(-0.2rem);
        transition:
            opacity 0.16s ease,
            transform 0.16s ease;
        -webkit-mask: url("../images/icons/arrow-forward.svg") center / contain no-repeat;
        mask: url("../images/icons/arrow-forward.svg") center / contain no-repeat;
    }

    .site-nav-list .nav-submenu-links a[aria-current="page"] {
        background: var(--wh-nav-row-current);
        color: var(--wh-ink-blue);
        box-shadow: inset 3px 0 0 var(--wh-accent);
        font-weight: 750;
        text-decoration: none;
    }

    .site-nav-list .nav-submenu-links a[aria-current="page"]::after,
    .site-nav-list .nav-submenu-links a:focus-visible::after {
        opacity: 0.72;
        transform: translateX(0);
    }

    .site-nav-list .nav-submenu-links a:focus-visible {
        background: var(--wh-nav-row-hover);
        color: var(--wh-link);
    }

    .site-nav-list .nav-submenu-links a[aria-current="page"]:focus-visible {
        background: var(--wh-nav-row-current);
        color: var(--wh-ink-blue);
    }

    .site-nav-list .nav-submenu-links a:active {
        background: var(--wh-nav-row-pressed);
    }

    .site-nav-list .nav-submenu-feature {
        display: none;
    }

    [data-theme="dark"] .site-nav {
        background: #0e1221;
        color: var(--wh-text);
        box-shadow: -12px 0 36px rgba(0, 0, 0, 0.55);
    }

    [data-theme="dark"] .mobile-nav-header,
    [data-theme="dark"] .mobile-nav-search,
    [data-theme="dark"] .site-nav-list > .nav-cluster {
        border-color: var(--wh-border);
    }

    [data-theme="dark"] .mobile-nav-close {
        color: var(--wh-ink-blue);
    }

    [data-theme="dark"] .nav-backdrop {
        background: rgba(0, 0, 0, 0.72);
    }

    .search-hub-form,
    .search-start {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (hover: hover) and (max-width: 900px) {
    .site-nav-list .nav-submenu-links a:hover {
        background: var(--wh-nav-row-hover);
        color: var(--wh-link);
        box-shadow: inset 3px 0 0 var(--wh-complement);
        text-decoration: none;
    }

    .site-nav-list .nav-submenu-links a:hover::after {
        opacity: 0.72;
        transform: translateX(0);
    }

    .site-nav-list .nav-submenu-links a[aria-current="page"]:hover {
        background: var(--wh-nav-row-current);
        color: var(--wh-ink-blue);
        box-shadow: inset 3px 0 0 var(--wh-accent);
    }
}

@media (max-width: 640px) {
    .search-hub-control > div {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .search-start {
        display: block;
    }

    .search-tips {
        margin-top: 2rem;
    }

    .search-source-grid,
    .search-person-grid {
        grid-template-columns: 1fr;
    }

    .search-source-grid article,
    .search-source-grid article:first-child,
    .search-source-grid article:last-child,
    .search-person-card,
    .search-person-card:nth-child(2n) {
        padding: 1rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .search-result-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-scope-nav {
        width: 100%;
        gap: 1rem;
        overflow-x: auto;
    }

    .search-scope-nav a {
        white-space: nowrap;
    }
}

/* State-room editorial design system */
body {
    font-size: 1rem;
    line-height: 1.62;
}

.gov-banner {
    background: var(--wh-navy);
    color: rgba(255, 255, 255, 0.86);
}

[data-theme="dark"] .gov-banner {
    background: var(--wh-navy-deep);
    color: rgba(255, 255, 255, 0.84);
}

.gov-banner-inner {
    min-height: 2.15rem;
}

.gov-flag {
    border-color: rgba(255, 255, 255, 0.28);
}

.brand-bar {
    border-bottom-color: rgba(20, 25, 52, 0.14);
}

.brand-row {
    min-height: 5.4rem;
}

.site-seal {
    top: 0.7rem;
    width: 6.35rem;
    height: 6.35rem;
}

.site-logo-main {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 680;
}

.site-logo-sub {
    margin-top: 0.28rem;
    color: var(--wh-brand-muted);
    font-size: 0.62rem;
}

.desktop-nav-bar {
    border-bottom: 1px solid var(--wh-border);
    box-shadow: none;
}

.site-nav-list {
    justify-content: flex-end;
}

.nav-menu-button {
    min-height: 3.25rem;
    padding: 0.8rem 1.05rem;
    color: var(--wh-ink-blue);
    font: 750 0.74rem/1.2 var(--font-sans);
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.nav-menu-button::after {
    right: 1.05rem;
    bottom: 0;
    left: 1.05rem;
    height: 0.22rem;
}

.nav-menu-button:hover::after,
.nav-menu-button[aria-expanded="true"]::after,
.nav-cluster.is-current .nav-menu-button::after {
    background: var(--wh-accent);
}

.nav-menu-button[aria-expanded="true"],
.nav-cluster.is-current .nav-menu-button {
    background: transparent;
    color: var(--wh-ink-blue);
}

.nav-menu-button[aria-expanded="true"] {
    background: var(--wh-surface-soft);
}

.nav-submenu {
    top: 3.25rem;
    background: var(--wh-navy);
}

.nav-submenu-heading p,
.nav-submenu-feature span {
    color: #efb6b9;
}

.header-utility-search {
    width: min(17rem, 25vw);
    height: 2.55rem;
}

.header-utility-search input {
    border-width: 1px;
    border-color: var(--wh-border);
    background: var(--wh-page-bg);
}

.header-utility-search button {
    background: var(--wh-navy);
    color: #fff;
}

.header-utility-search button:hover {
    background: var(--wh-accent);
    color: #fff;
}

.theme-toggle--header:hover {
    color: var(--wh-accent);
}

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--wh-navy);
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 12, 29, 0.88) 0%, rgba(8, 12, 29, 0.62) 45%, rgba(8, 12, 29, 0.18) 78%),
        linear-gradient(0deg, rgba(8, 12, 29, 0.58), transparent 62%);
    pointer-events: none;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.page-hero--home .page-hero-media img {
    object-position: 52% center;
}

.page-hero--news .page-hero-media img {
    object-position: 68% center;
}

.page-hero--administration .page-hero-media img {
    object-position: 60% center;
}

.page-hero--gallery .page-hero-media img {
    object-position: 46% center;
}

.page-hero--search .page-hero-media img {
    object-position: 24% center;
}

.page-hero-inner,
.page-hero:has(.hero-filters) .page-hero-inner {
    position: relative;
    z-index: 2;
    min-height: clamp(22rem, 34vw, 30rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero-eyebrow {
    margin-bottom: 0.7rem;
    color: #f1d9a6;
    font-size: 0.7rem;
    letter-spacing: 0.17em;
}

.page-hero-title {
    max-width: 58rem;
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 560;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    max-width: 46rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
    line-height: 1.6;
}

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

.page-hero-link {
    min-height: 2.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 2px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
}

.page-hero-link--primary {
    border-color: #fff;
    background: #fff;
    color: var(--wh-navy);
}

.page-hero-link:hover {
    border-color: var(--wh-accent);
    background: var(--wh-accent);
    color: #fff;
}

.page-hero-link .material-icon {
    width: 1rem;
    height: 1rem;
}

.hero-filters-wrap {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--wh-border);
    background: var(--wh-surface);
}

.hero-filter-btn {
    padding: 1rem 1.15rem 0.9rem;
    border-top: 0;
    border-bottom: 4px solid transparent;
    color: var(--wh-text);
}

.hero-filter-btn:hover {
    background: var(--wh-surface-soft);
    color: var(--wh-ink-blue);
}

.hero-filter-btn.active {
    border-top: 0;
    border-bottom-color: var(--wh-accent);
    background: transparent;
    color: var(--wh-ink-blue);
}

.site-main {
    background: var(--wh-page-bg);
}

.view-kicker {
    color: var(--wh-red);
    letter-spacing: 0.13em;
}

.fec-section-heading h2,
.view-toolbar h2,
.home-mission h2 {
    color: var(--wh-ink-blue);
    font-weight: 620;
    letter-spacing: -0.025em;
}

.fec-section-heading {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--wh-border);
}

.home-mission {
    padding-block: clamp(3.5rem, 7vw, 6rem);
    background: var(--wh-surface);
}

.home-mission-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(22rem, 1.2fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: start;
}

.home-mission h2 {
    max-width: 28rem;
    margin: 0;
    font: 620 clamp(2rem, 4.4vw, 3.45rem)/1.12 var(--font-serif);
}

.home-mission-copy {
    padding-left: clamp(1.5rem, 4vw, 3.5rem);
    border-left: 1px solid var(--wh-border);
}

.home-mission-copy p {
    max-width: 44rem;
    margin: 0 0 1.4rem;
    color: var(--wh-text);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
}

.home-mission-copy a,
.public-record-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wh-link);
    font-weight: 750;
}

.home-mission-copy .material-icon {
    width: 1rem;
    height: 1rem;
}

.home-access {
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    background: var(--wh-surface-soft);
}

.home-access-grid {
    gap: 0;
    margin-top: 1.75rem;
    border-top: 3px solid var(--wh-navy);
    border-bottom: 1px solid var(--wh-border);
    background: var(--wh-surface);
}

.home-access-item {
    min-height: 12rem;
    align-content: start;
    padding: 1.7rem;
}

.home-access-number {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0;
    background: transparent;
    color: var(--wh-complement);
    font-family: var(--font-serif);
    font-size: 1rem;
}

.home-access-item h3 {
    font-size: 1.35rem;
}

.home-latest,
.news-page-feed,
.administration-content,
.pres-gallery,
.gallery-entry,
.search-hub {
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.news-panel {
    border-top-color: var(--wh-navy);
    background: var(--wh-surface);
}

.news-item:first-child {
    border-left-color: var(--wh-accent);
}

.news-item-title,
.news-item-title a {
    color: var(--wh-ink-blue);
}

.news-item-category,
.executive-role-label {
    color: var(--wh-red);
}

.public-record-band {
    padding-block: clamp(4rem, 8vw, 6.5rem);
    background: var(--wh-navy);
    color: #fff;
}

.public-record-copy h2,
.public-record-copy > p:not(.view-kicker),
.public-record-link,
.public-record-stats dt,
.public-record-stats dd {
    color: inherit;
}

.public-record-band .view-kicker {
    color: #f1d9a6;
}

.public-record-stats {
    border-top-color: rgba(255, 255, 255, 0.45);
}

.public-record-stats div {
    border-color: rgba(255, 255, 255, 0.2);
}

.view-toolbar {
    border-bottom-color: var(--wh-navy);
}

.executive-portrait-card,
.pres-gallery-card,
.search-source-grid,
.search-person-card {
    background: var(--wh-surface);
}

.pres-gallery-card {
    border-color: var(--wh-border);
    box-shadow: 0 2px 0 rgba(20, 25, 52, 0.05);
}

.pres-gallery-card:hover,
.administration-content .executive-portrait-card:hover {
    border-color: var(--wh-blue);
    box-shadow: 0 10px 28px rgba(20, 25, 52, 0.12);
}

.gallery-tabs {
    border-bottom-color: var(--wh-border);
}

.gallery-tab.is-active,
.gallery-tab[aria-current="page"] {
    border-color: var(--wh-accent);
    background: transparent;
    color: var(--wh-ink-blue);
}

.search-hub-form {
    border-bottom-color: var(--wh-navy);
}

.search-hub-control > div {
    background: var(--wh-navy);
}

.site-footer {
    background: #0b1630;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 1.2fr) minmax(24rem, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.footer-identity {
    align-items: flex-start;
}

.footer-identity img {
    width: 6.75rem;
    height: 6.75rem;
}

.footer-brand {
    font-size: 1.3rem;
    text-transform: none;
}

.footer-address {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    line-height: 1.55;
}

.footer-nav {
    grid-template-columns: repeat(2, minmax(10rem, 1fr));
}

.footer-heading {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-nav a {
    padding-block: 0.34rem;
}

.footer-utilities {
    display: flex;
    gap: 1.25rem;
}

.footer-utilities a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
}

.footer-utilities a:hover {
    color: #fff;
}

[data-theme="dark"] .brand-bar,
[data-theme="dark"] .desktop-nav-bar,
[data-theme="dark"] .hero-filters-wrap {
    background: var(--wh-surface);
}

[data-theme="dark"] .page-hero::before {
    background:
        linear-gradient(90deg, rgba(4, 7, 18, 0.92) 0%, rgba(4, 7, 18, 0.7) 48%, rgba(4, 7, 18, 0.28) 82%),
        linear-gradient(0deg, rgba(4, 7, 18, 0.68), transparent 62%);
}

[data-theme="dark"] .home-mission,
[data-theme="dark"] .home-access-grid,
[data-theme="dark"] .news-panel {
    background: var(--wh-surface);
}

[data-theme="dark"] .home-access {
    background: var(--wh-surface-soft);
}

[data-theme="dark"] .public-record-band {
    background: #0b1630;
}

[data-theme="dark"] .pres-gallery-card:hover,
[data-theme="dark"] .administration-content .executive-portrait-card:hover {
    border-color: var(--wh-blue);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .brand-row {
        min-height: 4.75rem;
    }

    .site-seal {
        width: 3.75rem;
        height: 3.75rem;
    }

    .page-hero-inner,
    .page-hero:has(.hero-filters) .page-hero-inner {
        min-height: clamp(20rem, 76vw, 27rem);
        padding-top: 6rem;
        padding-bottom: 2.25rem;
    }

    .page-hero::before {
        background:
            linear-gradient(0deg, rgba(8, 12, 29, 0.9) 0%, rgba(8, 12, 29, 0.54) 58%, rgba(8, 12, 29, 0.16) 100%);
    }

    .page-hero-media img,
    .page-hero--home .page-hero-media img,
    .page-hero--news .page-hero-media img,
    .page-hero--administration .page-hero-media img,
    .page-hero--gallery .page-hero-media img,
    .page-hero--search .page-hero-media img {
        object-position: 58% center;
    }

    .page-hero-title {
        max-width: 42rem;
        font-size: clamp(2.35rem, 10vw, 4rem);
    }

    .page-hero-description {
        max-width: 38rem;
        font-size: 0.95rem;
    }

    .hero-filters {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .hero-filter-btn {
        white-space: nowrap;
    }

    .home-mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-mission-copy {
        padding-top: 1.5rem;
        padding-left: 0;
        border-top: 1px solid var(--wh-border);
        border-left: 0;
    }

    .home-access-item {
        min-height: 0;
        padding: 1.35rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-nav {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .gov-banner {
        font-size: 0.66rem;
    }

    .site-logo-main {
        font-size: 1.1rem;
    }

    .site-logo-sub {
        font-size: 0.52rem;
        letter-spacing: 0.12em;
    }

    .page-hero-inner,
    .page-hero:has(.hero-filters) .page-hero-inner {
        min-height: 22rem;
        padding-top: 5.5rem;
        padding-bottom: 1.8rem;
    }

    .page-hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-hero-link {
        justify-content: space-between;
    }

    .home-mission,
    .home-access,
    .home-latest,
    .news-page-feed,
    .administration-content,
    .pres-gallery,
    .gallery-entry,
    .search-hub {
        padding-block: 3rem;
    }

    .footer-identity {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .site-footer-bottom-inner,
    .footer-utilities {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

/* Executive record: editorial profile and gallery */
.page-hero--profile {
    background: var(--wh-surface-soft);
    color: var(--wh-ink-blue);
}

.page-hero--profile::before {
    background:
        linear-gradient(
            90deg,
            rgba(251, 250, 247, 1) 0%,
            rgba(251, 250, 247, 0.98) 42%,
            rgba(251, 250, 247, 0.84) 58%,
            rgba(251, 250, 247, 0.2) 100%
        );
}

.page-hero--profile .page-hero-media {
    left: 38%;
}

.page-hero--profile .page-hero-media img {
    object-position: 57% center;
}

.page-hero--profile .page-hero-inner {
    min-height: clamp(19rem, 27vw, 24rem);
    justify-content: center;
    padding-top: clamp(3rem, 7vw, 5rem);
    padding-bottom: clamp(3rem, 7vw, 5rem);
}

.page-hero--profile .page-hero-inner::before {
    content: "";
    position: absolute;
    top: clamp(3rem, 7vw, 5rem);
    bottom: clamp(3rem, 7vw, 5rem);
    left: var(--content-gutter);
    width: 1px;
    background: var(--wh-complement);
}

.page-hero--profile .page-hero-eyebrow,
.page-hero--profile .page-hero-title,
.page-hero--profile .page-hero-description {
    margin-left: 1.6rem;
}

.page-hero--profile .page-hero-eyebrow {
    color: var(--wh-blue);
}

.page-hero--profile .page-hero-title {
    max-width: 44rem;
    color: var(--wh-ink-blue);
    font-size: clamp(2.7rem, 5.5vw, 4.8rem);
    text-shadow: none;
}

.page-hero--profile .page-hero-description {
    color: var(--wh-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pres-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.25rem);
}

.pres-gallery-card {
    overflow: hidden;
    border: 0;
    border-bottom: 3px solid var(--wh-border);
    border-radius: 0;
    background: var(--wh-surface);
    box-shadow: none;
}

.pres-gallery-card:hover {
    border-bottom-color: var(--wh-accent);
    box-shadow: 0 12px 32px rgba(20, 25, 52, 0.12);
    transform: translateY(-3px);
}

.pres-gallery-card-media,
.gallery-skeleton span:first-child {
    aspect-ratio: 4 / 5;
}

.pres-gallery-card-media img {
    object-position: center 18%;
}

.pres-gallery-card-number {
    top: 0.85rem;
    right: auto;
    bottom: auto;
    left: 0;
    padding: 0.42rem 0.7rem;
    border-radius: 0;
    background: rgba(20, 25, 52, 0.92);
    font-size: 0.64rem;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.pres-gallery-card-info {
    padding: 1.3rem 1.25rem 1.4rem;
}

.pres-gallery-card-office {
    margin-bottom: 0.38rem;
    color: var(--wh-blue);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.pres-gallery-card-info strong {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-weight: 620;
    line-height: 1.25;
}

.pres-gallery-card-term {
    margin-top: 0.45rem;
    color: var(--wh-text);
    font-size: 0.78rem;
}

.pres-gallery-card-secondary {
    margin-top: 0.45rem;
    font-size: 0.72rem;
}

.pres-gallery-card-summary {
    display: -webkit-box;
    margin-top: 1rem;
    overflow: hidden;
    color: var(--wh-text-muted);
    font-size: 0.78rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pres-gallery-card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.2rem;
    color: var(--wh-link);
    font-size: 0.75rem;
    font-weight: 750;
}

.pres-gallery-card-action .material-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.16s ease;
}

.pres-gallery-card:hover .pres-gallery-card-action .material-icon {
    transform: translateX(0.2rem);
}

.gallery-skeleton {
    border: 0;
    border-bottom: 3px solid var(--wh-border);
    border-radius: 0;
}

.gallery-entry {
    background: var(--wh-surface);
}

.gallery-entry-back {
    margin-bottom: 1.35rem;
}

.gallery-entry-back a {
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.025em;
}

.gallery-entry-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    border-top: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
}

.gallery-entry-nav-link {
    min-height: 5rem;
    padding: 1rem 1.1rem;
    border: 0;
    border-right: 1px solid var(--wh-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-entry-nav-link--next {
    border-right: 0;
}

.gallery-entry-nav-link:not(.is-disabled):hover {
    background: var(--wh-surface-soft);
}

.gallery-entry-profile {
    grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: start;
    margin-bottom: 0;
    padding: 0 0 clamp(3.5rem, 7vw, 6rem);
    border: 0;
    border-bottom: 1px solid var(--wh-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-entry-portrait .executive-portrait-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.gallery-entry-portrait .executive-portrait-photo {
    aspect-ratio: 4 / 5;
}

.gallery-entry-portrait .executive-portrait-image {
    object-position: center 18%;
}

.gallery-entry-biography-header {
    margin-bottom: 1.4rem;
}

.gallery-entry-biography-header h2 {
    margin: 0;
    color: var(--wh-ink-blue);
    font: 620 clamp(2rem, 4vw, 3rem)/1.15 var(--font-serif);
    letter-spacing: -0.025em;
}

.gallery-entry-bio {
    max-width: 52rem;
    margin-top: 0;
    color: var(--wh-text);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.82;
}

.gallery-entry-bio p:first-child {
    margin-top: 0;
}

.gallery-entry-bio--empty {
    color: var(--wh-text-muted);
    font-style: italic;
}

.gallery-entry-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
}

.gallery-entry-meta div {
    display: block;
    padding: 1rem 1.2rem 1rem 0;
    border: 0;
    border-right: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
    border-radius: 0;
    background: transparent;
}

.gallery-entry-meta div:nth-child(2n) {
    padding-left: 1.2rem;
    border-right: 0;
}

.gallery-entry-meta div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.gallery-entry-meta dt {
    color: var(--wh-blue);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.gallery-entry-meta dd {
    margin-top: 0.3rem;
    font-size: 0.84rem;
}

.gallery-entry-origin {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.gallery-entry-profile-link {
    margin: 1.5rem 0 0;
}

.gallery-entry-profile-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wh-link);
    font-size: 0.78rem;
    font-weight: 750;
}

.gallery-entry-profile-link .material-icon {
    width: 1rem;
    height: 1rem;
}

.gallery-entry-terms,
.gallery-entry-timeline {
    margin-top: 0;
    padding: clamp(3rem, 7vw, 5rem) 0;
    border: 0;
    border-bottom: 1px solid var(--wh-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-entry-section-title {
    margin-bottom: 1.2rem;
    color: var(--wh-ink-blue);
    font: 620 clamp(1.7rem, 3vw, 2.35rem)/1.2 var(--font-serif);
}

.gallery-entry-terms-subtitle {
    margin-top: 2rem;
    color: var(--wh-blue);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-entry-term-list {
    border-top: 1px solid var(--wh-border);
}

.gallery-entry-term-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--wh-border);
}

[data-theme="dark"] .page-hero--profile {
    background: var(--wh-surface-soft);
}

[data-theme="dark"] .page-hero--profile::before {
    background:
        linear-gradient(
            90deg,
            rgba(26, 31, 48, 1) 0%,
            rgba(26, 31, 48, 0.98) 42%,
            rgba(26, 31, 48, 0.88) 60%,
            rgba(26, 31, 48, 0.35) 100%
        );
}

[data-theme="dark"] .page-hero--profile .page-hero-eyebrow {
    color: var(--wh-complement);
}

[data-theme="dark"] .page-hero--profile .page-hero-title {
    color: var(--wh-ink-blue);
}

[data-theme="dark"] .page-hero--profile .page-hero-description {
    color: var(--wh-text);
}

[data-theme="dark"] .gallery-entry {
    background: var(--wh-surface);
}

[data-theme="dark"] .pres-gallery-card:hover {
    border-bottom-color: var(--wh-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
    .pres-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-entry-profile {
        grid-template-columns: minmax(13rem, 17rem) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .page-hero--profile .page-hero-media {
        left: 18%;
    }

    .page-hero--profile::before {
        background:
            linear-gradient(
                0deg,
                rgba(251, 250, 247, 1) 0%,
                rgba(251, 250, 247, 0.96) 46%,
                rgba(251, 250, 247, 0.48) 100%
            );
    }

    [data-theme="dark"] .page-hero--profile::before {
        background:
            linear-gradient(
                0deg,
                rgba(26, 31, 48, 1) 0%,
                rgba(26, 31, 48, 0.96) 48%,
                rgba(26, 31, 48, 0.56) 100%
            );
    }

    .page-hero--profile .page-hero-inner {
        min-height: 23rem;
        justify-content: flex-end;
        padding-top: 8rem;
        padding-bottom: 2.2rem;
    }

    .page-hero--profile .page-hero-inner::before {
        top: auto;
        bottom: 2.2rem;
        height: 8.5rem;
    }

    .page-hero--profile .page-hero-title {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
    }

    .gallery-entry-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-entry-portrait {
        width: min(20rem, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .pres-gallery-grid {
        grid-template-columns: 1fr;
    }

    .pres-gallery-card {
        max-width: 28rem;
        margin-inline: auto;
    }

    .gallery-entry-nav {
        grid-template-columns: 1fr;
    }

    .gallery-entry-nav-link {
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .gallery-entry-nav-link:last-child {
        border-bottom: 0;
    }

    .gallery-entry-meta {
        grid-template-columns: 1fr;
    }

    .gallery-entry-meta div,
    .gallery-entry-meta div:nth-child(2n),
    .gallery-entry-meta div:nth-last-child(-n + 2) {
        padding: 0.9rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--wh-border);
    }

    .gallery-entry-meta div:last-child {
        border-bottom: 0;
    }
}
