@charset "UTF-8";
/* Ajouter un padding par défaut à tous les blocs ayant un fond */
.has-background {
  padding: var(--wp--preset--spacing--large); /* Utilisez une variable de theme.json si possible */
  /* Ou une valeur fixe : padding: 1.5rem; */
}

/* Ajuster le padding pour les blocs pleine largeur ayant un fond */
.wp-block-group.alignfull.has-background {
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--wp--preset--spacing--xxxxxx-large);
  padding-bottom: var(--wp--preset--spacing--xxxxxx-large);
}

/* Vous pourriez avoir besoin d'être plus spécifique pour éviter d'affecter
   des blocs où ce padding automatique n'est pas désiré */
/* Par exemple, pour cibler seulement les groupes : */
/*
.wp-block-group.has-background {
    padding: var(--wp--preset--spacing--medium);
}
.wp-block-group.alignfull.has-background {
    padding-left: 0;
    padding-right: 0;
}
*/