/* Visual section order: executive leadership immediately follows the hero. */
.about-page {
    display: flex;
    flex-direction: column;
}

.about-page > .hero { order: 1; }
.about-page > .team-section { order: 2; }
.about-page > .experts-section { order: 3; }
.about-page > .intro-section { order: 4; }
.about-page > .vision-section { order: 5; }
.about-page > .founders-message { order: 6; }
.about-page > .experts-intro { order: 7; }

.hero-program-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 58px;
    margin-top: 34px;
    padding: 14px 30px;
    border: 2px solid #ffc13b;
    border-radius: 999px;
    color: #073f42;
    background: #ffc13b;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.hero-program-link:hover {
    color: #fff8ed;
    background: transparent;
    transform: translateY(-3px);
}

.hero-program-link:focus-visible {
    outline: 3px solid #bdebed;
    outline-offset: 4px;
}

/* Continuous palette and geometric texture from the supplied look & feel. */
.about-page {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 86% 7%, rgba(255, 193, 59, .22), transparent 24rem),
        radial-gradient(circle at 8% 48%, rgba(189, 235, 237, .12), transparent 30rem),
        linear-gradient(180deg,
            #06494b 0%,
            #315a55 10%,
            #9b6a5b 20%,
            #d4785c 31%,
            #ef805d 50%,
            #f48855 68%,
            #ff9e41 100%);
}

.about-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .18;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 53px, rgba(255, 193, 59, .72) 54px 55px, transparent 56px 108px),
        repeating-linear-gradient(-45deg, transparent 0 53px, rgba(189, 235, 237, .45) 54px 55px, transparent 56px 108px);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.35) 22%, transparent 40%, transparent 62%, rgba(0,0,0,.45) 78%, #000 100%);
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.35) 22%, transparent 40%, transparent 62%, rgba(0,0,0,.45) 78%, #000 100%);
}

.about-page > .section,
.about-page > .hero,
.about-page > .team-section,
.about-page > .intro-section,
.about-page > .vision-section,
.about-page > .founders-message,
.about-page > .experts-intro,
.about-page > .experts-section {
    background: transparent !important;
}

.about-page > .section:not(:first-child) {
    border-top: 1px solid rgba(255, 248, 237, .1);
}

.mobile-card-controls {
    display: none;
}

@media (max-width: 700px) {
    .mobile-carousel-ready {
        display: block !important;
        position: relative;
    }

    .mobile-carousel-ready > .info-card,
    .mobile-carousel-ready > .value-card,
    .mobile-carousel-ready > .expert-card,
    .mobile-carousel-ready > article,
    .criteria-grid.mobile-carousel-ready > div {
        display: none !important;
        width: 100%;
        min-height: 0;
        margin: 0 !important;
        padding: 22px !important;
        border-radius: 22px !important;
        opacity: 0;
    }

    .mobile-carousel-ready > .is-mobile-active {
        display: block !important;
        opacity: 1;
        animation: mobileCardIn .42s ease both;
    }

    .experts-section .mobile-carousel-ready > .expert-card.is-mobile-active {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 26px;
    }

    .experts-section .expert-photo {
        width: min(82%, 310px);
        margin-inline: auto;
    }

    .mobile-card-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 20px 0 38px;
    }

    .mobile-card-controls[hidden] {
        display: none;
    }

    .mobile-card-prev,
    .mobile-card-next {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255, 248, 237, .65);
        border-radius: 50%;
        color: #073f42;
        background: #ffc13b;
        font: 800 28px/1 sans-serif;
    }

    .mobile-card-dots {
        display: flex;
        gap: 7px;
    }

    .mobile-card-dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 248, 237, .45);
        transition: width .2s ease, background-color .2s ease;
    }

    .mobile-card-dot.is-active {
        width: 24px;
        border-radius: 999px;
        background: #ffc13b;
    }

    .info-card h3,
    .value-card h3 {
        font-size: 20px !important;
    }

    .info-card p,
    .value-card p,
    .method-grid p,
    .expert-copy p,
    .expert-copy li {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }

    @keyframes mobileCardIn {
        from { opacity: 0; transform: translateY(12px) scale(.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-carousel-ready > .is-mobile-active {
        animation: none;
    }
}
