.about-page {
    padding: 4rem 0 5rem;
}

.about-hero__surface {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-hero__copy {
    display: grid;
    gap: 1rem;
}

.about-hero__copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 2.8rem, 3rem);
}

.about-hero__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.about-hero__text p:last-child {
    margin-bottom: 0;
}

.about-hero__media {
    justify-self: center;
}

.about-hero__media img {
    width: clamp(240px, 32vw, 360px);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: var(--shadow-floating);
}

@media (max-width: 720px) {
    .about-page {
        padding-top: 3rem;
    }
}
