#about-page {
    width: 100%;
    background: #FFFFFF;
    position: relative;
}

/* ============================
   ABOUT HERO
============================ */
.ab-hero {
    background: #002148;
    padding: 60px 5% 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Transparency Report page only — lets you get back to the Sponsorship
   page (the only page that links here) without relying on the browser's
   own back button. Pinned to the hero's top-left corner (.ab-hero is
   already position:relative) so it doesn't crowd the centered eyebrow/
   title/description on the same line. */
.tr-back-link {
    position: absolute;
    top: 24px;
    left: 5%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #B9C3D6;
    text-decoration: none;
    transition: color 0.15s ease;
}

.tr-back-link:hover {
    color: #FFFFFF;
}

.tr-back-link svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .tr-back-link {
        position: static;
        display: flex;
        margin: 0 0 16px;
    }
}

.ab-hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #F47A20;
    margin-bottom: 12px;
}

.ab-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 130%;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 16px;
}

.ab-highlight {
    color: #FDD01E;
}

.ab-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 156%;
    color: #D8DEE8;
    max-width: 560px;
    margin: 0 auto 32px;
}

.ab-hero-photos {
    display: flex;
    gap: 32px;
    max-width: 1400px;
    margin: -190px auto 0;
    transform: translateY(50%);
    position: relative;
    z-index: 3;
}

.ab-hero-photo {
    flex: 1 1 0;
    height: 380px;
    background: #FDE9D7;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .uh-navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 5%;
        gap: 16px;
    }

    .uh-nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ab-hero-photos {
        flex-wrap: wrap;
    }

    .ab-hero-photo {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .uh-nav-right {
        gap: 12px;
    }

    .uh-login-link span {
        display: none;
    }

    .uh-volunteer-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .ab-hero-photo {
        flex: 1 1 100%;
    }
}

/* MISSION & VISION */
.ab-mv {
    background: #FFFAF3;
    width: 100%;
    padding: 280px 0 80px;
}

.ab-mv-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.ab-mv-col {
    flex: 1 1 320px;
    max-width: 520px;
    text-align: center;
}

.ab-mv-heading {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 30px);
    margin-bottom: 16px;
}

.ab-mv-heading--mission {
    color: #F47A20;
}

.ab-mv-heading--vision {
    color: #002148;
}

.ab-mv-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 160%;
    color: #333333;
}

.ab-mv-highlight {
    color: #F47A20;
    font-weight: 600;
}

.ab-mv-divider {
    width: 1px;
    align-self: stretch;
    background: #E8D9C8;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .ab-mv {
        padding-top: 220px;
    }

    .ab-mv-inner {
        flex-direction: column;
        align-items: center;
    }

    .ab-mv-divider {
        width: 60px;
        height: 1px;
    }
}

/* VALUES */
.ab-values {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5% 120px;
    text-align: center;
}

.ab-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.05em;
    color: #F47A20;
    margin-bottom: 16px;
}

.ab-values-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 30px);
    color: #002148;
    margin-bottom: 60px;
}

.ab-values-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.ab-value-card {
    flex: 1 1 260px;
    max-width: 320px;
}

.ab-value-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    margin: 0 auto 24px;
    position: relative;
}

.ab-value-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #002148;
}

.ab-value-name {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #002148;
    margin-bottom: 10px;
}

.ab-value-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #5C616E;
}

/* WHERE IT ALL BEGAN */
.ab-history {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5% 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ab-history-photo {
    flex: 1 1 400px;
    max-width: 560px;
    aspect-ratio: 4/3;
    background: #FDE9D7;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ab-history-content {
    flex: 1 1 400px;
    max-width: 560px;
}

.ab-history-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 30px);
    color: #002148;
    margin-bottom: 20px;
}

.ab-history-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 160%;
    color: #333333;
}

@media (max-width: 900px) {
    .ab-history {
        flex-direction: column;
        text-align: center;
    }
}

/* PROGRAMS PREVIEW */
.ab-programs {
    background: #FFFAF3;
    width: 100%;
    padding: 80px 0;
}

.ab-programs-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.ab-prog-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding-bottom: 28px;
}

.ab-prog-photo {
    width: 100%;
    height: 200px;
    background: #FDE9D7;
}

.ab-prog-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #002148;
    margin: 20px 24px 10px;
}

.ab-prog-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #5C616E;
    margin: 0 24px 16px;
}

.ab-prog-link {
    display: inline-block;
    margin: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #F47A20;
    text-decoration: none;
}

.ab-prog-link:hover {
    text-decoration: underline;
}
/* .ab-history-photo carries aspect-ratio: 4/3 on top of flex: 1 1 400px.
   On a narrow screen the ratio drove the width from the height instead
   of the other way round, producing a 533px box inside a 351px column
   and scrolling the page sideways. Pinning both children to the full
   column width settles which dimension leads. */
@media (max-width: 700px) {
    .ab-history {
        gap: 28px;
        padding: 32px 5% 60px;
    }

    .ab-history-photo,
    .ab-history-content {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}