/* About page styles. Loaded only for the about template. */

.about-page {
    padding-bottom: 1px;
}

.about-hero {
    display: grid;
    justify-items: center;
    padding-top: clamp(48px, 6vw, 82px);
    padding-bottom: 24px;
    text-align: center;
}

.about-hero .section-heading {
    width: 100%;
    max-width: 760px;
    margin: 0;
}

.about-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.about-hero .lede {
    max-width: 62ch;
    margin: 18px auto 0;
}

.about-hero-support {
    max-width: 62ch;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.about-hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.about-letter {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-strong);
    box-shadow: 0 18px 42px rgba(18, 24, 40, 0.06);
}

.about-letter .legal-copy {
    font-size: clamp(1.08rem, 1.55vw, 1.22rem);
    line-height: 1.72;
}

.about-letter .legal-copy strong {
    color: var(--text);
}

.about-signature {
    display: block;
    width: min(220px, 42vw);
    height: auto;
    margin: 28px 0 0 auto;
}

.about-philosophy {
    display: grid;
    gap: var(--space-grid);
}

.about-philosophy-head .section-heading {
    max-width: 760px;
}

.about-philosophy .feature-grid article {
    display: block;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px;
}

.about-philosophy .feature-grid h3 {
    margin-bottom: 12px;
}

.about-insight-showcase {
    padding-top: var(--space-section-tight);
}

.about-insight-spotlight .insight-description {
    max-width: 42ch;
}

.about-page .closing-cta .hero-actions {
    width: min(100%, 240px);
}

html[data-theme="dark"] .about-letter {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .about-signature {
    filter: invert(1);
}

@media (max-width: 560px) {
    .about-hero {
        padding-top: 42px;
    }

    .about-letter {
        padding: 26px;
        border-radius: 16px;
    }
}
