/* ── LAYOUT ── */
.page-apropos main {
    display: flex;
    align-items: stretch;
}

.apropos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* ── LEFT ── */
.apropos-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 36px;
}

.apropos-photo {
    width: 200px;
    display: block;
}

/* ── RIGHT ── */
.apropos-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 60px 80px 60px 60px;
}

.apropos-greeting {
    font-size: clamp(22px, 3vw, 46px);
    font-weight: 200;
    font-stretch: 125%;
    letter-spacing: 0.02em;
    line-height: 1;
}

.apropos-text {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    max-width: 480px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .apropos-layout {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        gap: 48px;
    }

    .apropos-left {
        padding: 0;
        justify-content: flex-start;
    }

    .apropos-photo {
        width: 140px;
    }

    .apropos-right {
        padding: 0;
        gap: 28px;
    }

    .apropos-greeting {
        font-size: 48px;
    }

    .apropos-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .apropos-greeting {
        font-size: 36px;
    }

    .apropos-text {
        font-size: 14px;
    }
}
