*, *::before, *::after {
    box-sizing: border-box !important;
}

/* Conteneur Global */
.page-detail-formule {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 3rem auto !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Titre Principal */
.page-detail-formule__titre-principal {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

/* GRILLE PRINCIPALE ET FOND ANTIQUEWHITE DU BLOC */
div.page-detail-formule__grille-principale {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
    background-color: white !important;
    border-radius: 30px !important;
    padding: 3rem 0 !important;
    box-sizing: border-box !important;
}

/* Colonne Informations */
.page-detail-formule__colonne-informations {
    padding: 0 5% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.page-detail-formule__sous-titre {
    margin-bottom: 0.75rem !important;
    text-align: center !important;
}

.page-detail-formule__bloc-description {
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.page-detail-formule__bloc-description--accentue {
    font-weight: bold !important;
    text-align: center !important;
}

/* Colonne Visuel (Image) */
.page-detail-formule__colonne-visuel {
    width: 100% !important;
    padding: 0 5% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.page-detail-formule__conteneur-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
}

div.page-detail-formule__image-cadre {
    width: 100% !important;
    height: 450px !important;
    background-color: transparent !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
}

/* Zone Bouton Retour */
.page-detail-formule__zone-action {
    display: flex !important;
    justify-content: center !important;
    margin-top: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
    clear: both !important;
}

/* ==========================================================================
   RESPONSIVE (MOBILES ET TABLETTES < 992px)
   ========================================================================== */
@media (max-width: 991.98px) {
    .page-detail-formule {
        width: 95% !important;
        margin: 1.5rem auto !important;
    }

    div.page-detail-formule__grille-principale {
        grid-template-columns: 1fr !important;
        border-radius: 40px !important;
        padding: 2rem 0 !important;
    }

    .page-detail-formule__colonne-visuel {
        order: 1 !important;
        padding: 0 1.5rem !important;
    }

    .page-detail-formule__colonne-informations {
        order: 2 !important;
        padding: 2rem 1.5rem 1rem 1.5rem !important;
    }

    div.page-detail-formule__image-cadre {
        height: 280px !important;
    }
}