.about-page {
    background: #fff;
    color: #004735;
    font-family: 'Closer Text', sans-serif;
    overflow: hidden;
    padding-top: 160px;
}

.about-container {
    width: var(--eco-page-shell, min(1320px, calc(100vw - 120px)));
    margin: 0 auto;
}

.about-eyebrow {
    color: #004735;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 10px;
}

.about-hero h1 {
    color: #013026;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.04;
    margin: 0 0 26px;
}

.about-hero__lead {
    color: #013026;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    max-width: 748px;
}

.about-who {
    display: grid;
    grid-template-columns: minmax(0, 543px) minmax(0, 645px);
    gap: 82px;
    padding: 88px 0 92px;
}

.about-who__image {
    border-radius: 24px;
    height: 544px;
    margin: 0;
    overflow: hidden;
}

.about-who__image img,
.history-item img,
.about-feature__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-who h2,
.about-history h2,
.about-feature h2 {
    color: #013026;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

.about-who h2 {
    margin-bottom: 67px;
}

.about-who p,
.history-item p,
.about-feature p {
    color: #004735;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px;
}

.about-who p:last-child,
.about-feature p:last-of-type {
    margin-bottom: 0;
}

.about-history {
    padding-bottom: 86px;
}

.about-history h2 {
    margin-bottom: 64px;
}

.history-list {
    display: grid;
    gap: 80px;
}

.history-item {
    display: grid;
    grid-template-columns: 244px minmax(0, 726px);
    gap: 95px;
    align-items: start;
}

.history-item figure {
    border-radius: 24px;
    height: 248px;
    margin: 0;
    overflow: hidden;
}

.history-item p {
    margin: 0;
}

.about-feature {
    background: #f1f5f8;
    border-radius: 32px;
    display: grid;
    gap: 56px;
    margin-bottom: 40px;
    padding: 64px;
}

.about-feature--school {
    grid-template-columns: minmax(0, 528px) minmax(0, 650px);
}

.about-feature--education {
    grid-template-columns: minmax(0, 650px) minmax(0, 528px);
    margin-bottom: 70px;
}

.about-feature__copy h2 {
    margin-bottom: 22px;
}

.about-feature p {
    font-size: 18px;
    margin-bottom: 24px;
}

.about-feature a {
    align-items: center;
    background: #cfe2e0;
    border-radius: 12px;
    color: #013026;
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
    line-height: 1.2;
    margin-top: 30px;
    padding: 14px 26px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.about-feature a:hover {
    background: #004735;
    color: #fff;
}

.about-chart-card {
    background: #cfe2e0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    min-height: 640px;
    padding: 40px;
}

.about-chart-card h3 {
    color: #013026;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    max-width: 360px;
}

.about-chart {
    align-items: end;
    display: grid;
    flex: 1;
    gap: 6px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    min-height: 360px;
    padding-top: 140px;
}

.about-chart__column {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: flex-end;
    min-width: 0;
}

.about-chart__column strong {
    color: #004735;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.about-chart__bar {
    background: linear-gradient(180deg, #f1cb44 0%, #42ae8e 100%);
    border: 1px solid #087d5f;
    border-radius: 6px;
    display: block;
    min-height: 12px;
    width: 100%;
}

.about-chart__column span:last-child {
    color: #004735;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.6;
}

.about-feature__image {
    border-radius: 24px;
    height: 100%;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
}

.about-feature--education .about-feature__image img {
    object-fit: cover;
}

@media (max-width: 1180px) {
    .about-container {
        width: calc(100vw - 40px);
    }

    .about-who,
    .history-item,
    .about-feature,
    .about-feature--school,
    .about-feature--education {
        grid-template-columns: 1fr;
    }

    .about-who {
        gap: 34px;
    }

    .about-who h2 {
        margin-bottom: 26px;
    }

    .history-item {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 104px;
    }

    .about-hero h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .about-hero__lead {
        font-size: 21px;
    }

    .about-who {
        padding: 54px 0 64px;
    }

    .about-who__image {
        height: 390px;
    }

    .about-who h2,
    .about-history h2,
    .about-feature h2 {
        font-size: 32px;
    }

    .about-who p,
    .history-item p {
        font-size: 18px;
    }

    .history-list {
        gap: 48px;
    }

    .history-item figure {
        height: 260px;
    }

    .about-feature {
        border-radius: 24px;
        padding: 28px;
    }

    .about-chart-card {
        min-height: 560px;
        padding: 28px;
    }

    .about-chart-card h3 {
        font-size: 28px;
    }

    .about-chart {
        min-height: 320px;
        padding-top: 80px;
    }

    .about-chart__column strong {
        font-size: 14px;
    }

    .about-chart__column span:last-child {
        font-size: 12px;
    }

    .about-feature__image {
        height: 420px;
        min-height: 420px;
    }
}

@media (max-width: 480px) {
    .about-container {
        width: calc(100vw - 32px);
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero__lead {
        font-size: 18px;
    }

    .about-who__image,
    .history-item figure,
    .about-feature__image {
        height: 330px;
        min-height: 330px;
    }

    .about-chart-card {
        min-height: 480px;
    }

    .about-chart {
        gap: 4px;
    }

    .about-feature {
        padding: 22px;
    }
}
