.block_image_text {
    display: flex;
    width: 100%;
    min-height: 700px;
    margin-top: 50px;
}

.block_image_text__image {
    width: 48%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.block_image_text__content {
    flex: 1;
    background-color: var(--bs-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    color: var(--bs-surface);
}

.block_image_text__title {
    font: 500 45px/48px "ABC Prophet", serif;
    letter-spacing: -0.02em;
    color: var(--bs-surface);
    margin: 0 0 25px;
}

.block_image_text__text {
    font: 400 15px/20px "Inter", sans-serif;
    color: var(--bs-surface);
    margin: 0 0 30px;
}

.block_image_text__text p {
    margin: 0 0 15px;
}

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

/* Surcharge de la classe générique .magnetic-btn__wrap
   align-self: flex-start empêche l'étirement par le parent flex column */
.block_image_text__btn_wrap {
    display: inline-flex;
    align-self: flex-start;
}

/* Tablet */
@media (max-width: 991px) {
    .block_image_text {
        min-height: 400px;
    }

    .block_image_text__content {
        padding: 40px 50px;
    }

    .block_image_text__title {
        font-size: 36px;
        line-height: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .block_image_text {
        flex-direction: column;
        min-height: auto;
    }

    .block_image_text__image {
        width: 100%;
        height: 350px;
    }

    .block_image_text__content {
        padding: 50px 25px;
    }

    .block_image_text__title {
        font-size: 28px;
        line-height: 32px;
    }

    .block_image_text__title br {
        display: none;
    }

    .block_image_text__text {
        font-size: 13px;
        line-height: 18px;
    }
}
