.about-page .about-hero {
    padding: 44px 0 84px;
}

.about-page .about-banner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    height: 360px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.about-page .about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.about-page h1 {
    margin-top: 14px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.about-page .about-intro p {
    margin-top: 18px;
    color: var(--text-soft);
}

.about-page .about-sections {
    display: grid;
    gap: 18px;
}

.about-page .about-sections section {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 230, 242, 0.9);
    box-shadow: var(--shadow);
}

.about-page .about-sections h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #111827;
}

.about-page .about-sections p {
    color: var(--text-soft);
}

@media (max-width: 920px) {
    .about-page .about-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .about-page .about-hero {
        padding: 36px 0 64px;
    }

    .about-page .about-banner {
        width: min(1180px, calc(100% - 24px));
        height: 220px;
        border-radius: 22px;
    }

    .about-page .about-sections section {
        padding: 22px;
        border-radius: 22px;
    }
}
