
/* =========================================================
   V76 — CENTRAGE DES 3 CARTES ACCUEIL
   ========================================================= */

@media (min-width: 900px) {

    .mq76-three-cards-grid {
        box-sizing: border-box !important;

        width: min(1050px, calc(100vw - 64px)) !important;
        max-width: 1050px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 28px !important;

        align-items: stretch !important;
        justify-content: center !important;
        justify-items: stretch !important;
    }

    .mq76-three-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        justify-self: stretch !important;
        align-self: stretch !important;
    }

    .mq76-three-card > * {
        width: 100% !important;
        max-width: none !important;
    }
}

@media (min-width: 700px) and (max-width: 899px) {

    .mq76-three-cards-grid {
        width: min(820px, calc(100vw - 40px)) !important;

        margin-left: auto !important;
        margin-right: auto !important;

        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .mq76-three-card,
    .mq76-three-card > * {
        width: 100% !important;
        max-width: none !important;
    }
}

@media (max-width: 699px) {

    .mq76-three-cards-grid {
        width: calc(100% - 32px) !important;
        max-width: 480px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .mq76-three-card,
    .mq76-three-card > * {
        width: 100% !important;
        max-width: none !important;
    }
}
