
/* === Home / section "À propos" — verrouillage affichage mobile === */
@media (max-width: 820px){
  /* On cible UNIQUEMENT le premier bloc colonnes de la home (section À propos) */
  .home .entry-content .wp-block-columns:first-of-type{
    display:flex !important;
    flex-direction: column !important;
    gap: .8rem !important;
  }
  .home .entry-content .wp-block-columns:first-of-type > .wp-block-column{
    width:100% !important;
    margin:0 !important;
  }
  /* Image au-dessus du texte sur mobile */
  .home .entry-content .wp-block-columns:first-of-type .wp-block-image{
    order:-1;
    margin:0 !important;
  }
  .home .entry-content img{
    max-width:100% !important;
    height:auto !important;
    display:block;
    border-radius:16px;
  }
  /* Un peu d'air sur les côtés */
  .home .entry-content{ padding-left:16px; padding-right:16px; }
}
