/* Hero éditorial de la page Notre approche. */

.approach-page .approach-hero {
    padding-block: clamp(64px, 8vw, 116px);
}

.approach-page .approach-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    align-items: center;
    gap: clamp(56px, 9vw, 136px);
}

.approach-page .approach-hero__content {
    max-width: 700px;
}

.approach-page .approach-hero__content h1 {
    max-width: 680px;
    margin-bottom: 28px;
}

.approach-page .approach-hero__content .lead {
    max-width: 580px;
    margin-bottom: 0;
}

.approach-page .approach-hero__image {
    min-width: 0;
}

.approach-page .approach-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1040px) {
    .approach-page .approach-hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(260px, .82fr);
        gap: clamp(40px, 6vw, 72px);
    }

    .approach-page .approach-hero__image img {
        aspect-ratio: 4 / 3;
        height: auto;
    }
}

@media (max-width: 820px) {
    .approach-page .approach-hero {
        padding-block: 56px 72px;
    }

    .approach-page .approach-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-page .approach-hero__content {
        max-width: 680px;
    }

    .approach-page .approach-hero__image img {
        aspect-ratio: 4 / 3;
        height: auto;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .approach-page .approach-hero {
        padding-block: 44px 56px;
    }

    .approach-page .approach-hero__grid {
        gap: 32px;
    }

    .approach-page .approach-hero__image img {
        aspect-ratio: 4 / 3;
        height: auto;
        max-height: none;
    }
}
