:root {
    --honorary-bg: #f3f5f8;
    --honorary-surface: #ffffff;
    --honorary-surface-alt: #f8fafc;
    --honorary-border: #d9e1ea;
    --honorary-border-strong: #c7d1dc;
    --honorary-text: #17202b;
    --honorary-text-soft: #4c5a6a;
    --honorary-text-muted: #6b7785;
    --honorary-heading: #0f1720;
    --honorary-accent: #0d4f8b;
    --honorary-accent-strong: #083a67;
    --honorary-accent-soft: #eaf2f9;
    --honorary-shadow: 0 8px 24px rgba(15, 23, 32, 0.06);
    --honorary-shell: 1200px;
    --honorary-radius-lg: 8px;
    --honorary-radius-md: 6px;
    --honorary-radius-sm: 4px;
    --honorary-space-section: 28px;
    --honorary-space-card: 22px;
}

.page-about {
    background: linear-gradient(180deg, #f7f9fb 0%, var(--honorary-bg) 100%);
    color: var(--honorary-text);
}

.page-about .site-shell {
    width: min(100% - 36px, var(--honorary-shell));
    margin-inline: auto;
}

.page-about .page-main {
    padding: 18px 0 64px;
}

.about-hero {
    padding: 12px 0 0;
}

.about-hero__wrap {
    display: block;
}

.about-hero__main {
    background: var(--honorary-surface);
    border: 1px solid var(--honorary-border);
    border-radius: var(--honorary-radius-lg);
    box-shadow: var(--honorary-shadow);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.about-hero__main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 4px;
    background: var(--honorary-accent);
}

.about-eyebrow,
.about-section-kicker {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 0.77rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--honorary-accent);
}

.about-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--honorary-heading);
    max-width: 12ch;
}

.about-hero__intro {
    margin: 18px 0 0;
    max-width: 70ch;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--honorary-text-soft);
}

.about-honorary {
    padding: var(--honorary-space-section) 0 0;
}

.about-section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.about-section-title {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--honorary-heading);
}

.about-section-intro {
    margin: 0;
    max-width: 74ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--honorary-text-soft);
}

.about-board-list {
    display: grid;
    gap: 16px;
}

.about-board-list--honorary {
    gap: 16px;
}

.about-board-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 0;
    background: var(--honorary-surface);
    border: 1px solid var(--honorary-border);
    border-radius: var(--honorary-radius-lg);
    box-shadow: var(--honorary-shadow);
    overflow: hidden;
}

.about-board-card--honorary {
    position: relative;
}

.about-board-card--honorary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--honorary-accent);
    z-index: 1;
}

.about-board-card__media {
    position: relative;
    background: var(--honorary-surface-alt);
    border-right: 1px solid var(--honorary-border);
    min-height: 100%;
}

.about-board-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center top;
    background: #e8edf3;
}

.about-board-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    height: 100%;
    padding: 20px;
    background: linear-gradient(180deg, #eef3f8 0%, #dfe7f0 100%);
    color: var(--honorary-accent-strong);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.about-board-card__content {
    padding: 24px;
}

.about-board-card__role {
    margin: 0 0 8px;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--honorary-accent);
}

.about-board-card__name {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--honorary-heading);
}

.about-board-card__summary {
    margin: 14px 0 0;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--honorary-text-soft);
    font-weight: 600;
}

.about-board-card__details {
    margin-top: 18px;
    border-top: 1px solid var(--honorary-border);
    padding-top: 16px;
}

.about-board-card__details[open] {
    padding-bottom: 2px;
}

.about-board-card__toggle {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--honorary-accent-strong);
}

.about-board-card__toggle::-webkit-details-marker {
    display: none;
}

.about-board-card__toggle-text {
    display: inline-block;
}

.about-board-card__toggle-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.about-board-card__toggle-icon::before,
.about-board-card__toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.about-board-card__toggle-icon::before {
    width: 12px;
    height: 2px;
}

.about-board-card__toggle-icon::after {
    width: 2px;
    height: 12px;
}

.about-board-card__details[open] .about-board-card__toggle-icon::after {
    opacity: 0;
}

.about-board-card__bio {
    margin-top: 14px;
    padding: 16px;
    background: var(--honorary-surface-alt);
    border: 1px solid var(--honorary-border);
    border-radius: var(--honorary-radius-sm);
}

.about-board-card__bio p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.78;
    color: var(--honorary-text-soft);
}

.about-board-card:hover {
    border-color: var(--honorary-border-strong);
}

@media (max-width: 980px) {
    .about-board-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .about-board-card__image,
    .about-board-card__placeholder {
        min-height: 220px;
    }
}

@media (max-width: 760px) {
    .page-about .site-shell {
        width: min(100% - 22px, var(--honorary-shell));
    }

    .page-about .page-main {
        padding: 10px 0 48px;
    }

    .about-hero__main,
    .about-board-card__content {
        padding: 18px;
    }

    .about-board-card {
        grid-template-columns: 1fr;
    }

    .about-board-card__media {
        border-right: 0;
        border-bottom: 1px solid var(--honorary-border);
    }

    .about-board-card__image,
    .about-board-card__placeholder {
        min-height: 220px;
        max-height: 320px;
    }

    .about-hero__title,
    .about-section-title {
        max-width: none;
    }
}