/* FORCE LE DESIGN 1 COLONNE SUR LA PAGE À PROPOS (PC, TABLETTE, MOBILE) */
@media screen and (min-width: 0px) {

    /* 1. On force la grille globale à s'aligner sur une seule colonne au centre */
    .about__body, 
    .about__section,
    .boxes {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }

    /* 2. On force chaque bloc (Description, Tendances, Formulaire) à prendre toute la largeur */
    .box,
    .about__meta,
    .about__trends,
    .about__accounts,
    .panel {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 20px !important;
        float: none !important;
    }

    /* 3. Optionnel : On stylise un peu les blocs pour qu'ils soient nets */
    .box {
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 12px !important;
        padding: 25px !important;
        color: #000000 !important;
    }

    /* 4. On force les boutons en bleu */
    .button, .button.button-primary {
        background-color: #2b7fff !important;
        border-color: #2b7fff !important;
        color: #ffffff !important;
    }
}

