/* Leadership OS — a readable public operating manual. */

.leadership-page {
    background: var(--editorial-paper);
    color: var(--editorial-ink);
}

.leadership-page .leadership-article {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background: var(--editorial-paper);
}

.leadership-page .leadership-article > .container {
    width: min(calc(100% - 3rem), 900px);
    max-width: 900px;
}

.leadership-page .article-header {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--editorial-rule-strong);
}

.leadership-page .article-header h1 {
    margin: 0.4rem 0 1rem;
    color: var(--editorial-ink);
    font-family: var(--editorial-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    letter-spacing: -0.035em;
    line-height: 1.04;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.leadership-page .article-subtitle,
.leadership-page .article-meta {
    color: var(--editorial-muted);
}

.leadership-page .article-subtitle {
    font-family: var(--editorial-serif);
    font-size: 1.25rem;
    line-height: 1.5;
}

.leadership-page .article-content {
    max-width: var(--editorial-measure);
    margin-inline: 0;
}

.leadership-page .article-content p,
.leadership-page .article-content li {
    color: var(--editorial-ink-soft);
    font-family: var(--editorial-serif);
    font-size: 1.08rem;
    line-height: 1.78;
}

.leadership-page .leadership-article .article-content ul li,
.leadership-page .leadership-article .article-content ol li {
    color: var(--editorial-ink-soft);
}

.leadership-page .leadership-article .article-content ul li::before,
.leadership-page .leadership-article .article-content ol li::marker {
    color: var(--editorial-blue-dark);
}

.leadership-page .article-content h2,
.leadership-page .article-content h3 {
    color: var(--editorial-ink);
    font-family: var(--editorial-serif);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.leadership-page .article-content h2 {
    margin-top: 3.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--editorial-rule);
}

.leadership-page .article-content a {
    color: var(--editorial-blue-dark);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.leadership-page .article-content strong {
    color: var(--editorial-ink);
}

.leadership-page .article-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--editorial-rule-strong);
}

.leadership-page .article-nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--editorial-rule);
    color: var(--editorial-ink);
    text-decoration: none;
}

.leadership-page .article-nav-link.next {
    text-align: right;
}

.leadership-page .article-nav-label {
    display: block;
    color: var(--editorial-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leadership-page .article-nav-title {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--editorial-serif);
    font-size: 1.1rem;
}

.leadership-page .article-cta {
    margin-top: 3rem;
    padding: 1.5rem;
    border: 1px solid var(--editorial-rule);
    border-radius: 0;
    background: var(--editorial-paper-bright);
    box-shadow: none;
}

.leadership-page .site-footer {
    border-top: 1px solid var(--editorial-rule);
    background: var(--editorial-paper-bright);
}

.leadership-page .site-footer p {
    color: var(--editorial-muted);
}

@media (max-width: 700px) {
    .leadership-page .leadership-article > .container {
        width: min(calc(100% - 2rem), 900px);
    }

    .leadership-page .article-nav {
        grid-template-columns: 1fr;
    }

    .leadership-page .article-nav-link.next {
        text-align: left;
    }
}
