/* =========================================================================
   About page — simple, single-course layout. Scoped under .lsa-home so it
   inherits the home design tokens (--green, --ink, --line, --r-*, --shadow-*)
   and shared primitives (.wrap / .btn / .section-* / .sec-head / .final-cta /
   .cta-card, all from home.css).
   ========================================================================= */

.lsa-home.lsa-about {
    background: var(--bg);
}

.lsa-home.lsa-about .about-section {
    padding: clamp(56px, 8vw, 104px) 0;
}

.lsa-home.lsa-about .about-section--tint {
    background: var(--green-soft);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.lsa-home.lsa-about .about-section--white {
    background: var(--surface);
}

/* ---------- Hero (centered, no photo) ---------- */
.lsa-home .about-hero {
    padding: clamp(52px, 7vw, 92px) 0 clamp(40px, 6vw, 68px);
    background: linear-gradient(180deg, var(--green-soft) 0%, var(--bg) 100%);
    text-align: center;
}

.lsa-home .about-hero__inner {
    max-width: 720px;
    margin: 0 auto;
}

.lsa-home .about-hero .section-eyebrow {
    justify-content: center;
}

.lsa-home .about-hero h1 {
    font-size: clamp(32px, 4.6vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 16px 0 16px;
    text-wrap: balance;
}

.lsa-home .about-hero h1 .accent {
    color: var(--green);
}

.lsa-home .about-hero__lead {
    color: var(--ink-2);
    font-size: clamp(16px, 1.4vw, 18.5px);
    line-height: 1.72;
    max-width: 600px;
    margin: 0 auto;
}

.lsa-home .about-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* ---------- Why it matters ---------- */
.lsa-home .about-why__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.lsa-home .about-why__body p {
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.75;
    margin: 16px 0 0;
}

.lsa-home .about-callout {
    position: relative;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(28px, 3.2vw, 40px);
    margin-top: 4px;
}

.lsa-home .about-callout__mark {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    line-height: 0.6;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 10px;
}

.lsa-home .about-callout p {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
}

/* ---------- Mission (single centered statement) ---------- */
.lsa-home .about-mission {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.lsa-home .about-mission__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    box-shadow: 0 14px 28px -10px rgba(14, 110, 58, .45);
    margin-bottom: 4px;
}

.lsa-home .about-mission .section-eyebrow {
    justify-content: center;
}

.lsa-home .about-mission h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: var(--ink);
}

/* ---------- Partners attribution (reuses footer partner data) ---------- */
.lsa-home .about-partners {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-top: 22px;
    padding-top: 30px;
    border-top: 1px solid rgba(14, 110, 58, .14);
    width: 100%;
    max-width: 620px;
}

.lsa-home .about-partners__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.lsa-home .about-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lsa-home .about-partners__logo {
    display: inline-flex;
    align-items: center;
    height: 84px;
    padding: 16px 26px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    transition: border-color .15s, transform .15s, box-shadow .15s;
}

.lsa-home a.about-partners__logo:hover {
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.lsa-home .about-partners__logo img {
    height: 52px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
}

/* ---------- Audience / values grid (shared card style) ---------- */
.lsa-home .about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lsa-home .about-values__grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.lsa-home .about-value {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}

.lsa-home .about-section--tint .about-value {
    background: #fff;
}

.lsa-home .about-value:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-tint);
}

.lsa-home .about-value__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--green-tint);
    color: var(--green);
    margin-bottom: 16px;
}

.lsa-home .about-value h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}

.lsa-home .about-value p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .lsa-home .about-why__grid {
        grid-template-columns: 1fr;
    }

    .lsa-home .about-values__grid,
    .lsa-home .about-values__grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .lsa-home .about-values__grid,
    .lsa-home .about-values__grid--four {
        grid-template-columns: 1fr;
    }

    .lsa-home .about-hero__actions .btn {
        width: 100%;
    }
}
