/* Marges nulles pour les headings imbriqués dans un bloc (pas les core/heading autonomes) */
/* Les marges des core/heading autonomes sont gérées dans theme.json > styles.blocks.core/heading */
[class*='wp-block-']:not(.wp-block-heading):not(.wp-block-post-content)
  :is(h1, h2, h3, h4, h5, h6):not(.wp-block-heading) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Ciblage spécifique des blocs custom qui resetent les marges des headings */
.accordion .accordion-heading,
.wp-block-create-block-cover-light :is(h1, h2, h3, h4, h5, h6),
.wp-block-create-block-button :is(h1, h2, h3, h4, h5, h6),
.wp-block-create-block-button-call :is(h1, h2, h3, h4, h5, h6),
.wp-block-quote :is(h1, h2, h3, h4, h5, h6),
.wp-block-table :is(h1, h2, h3, h4, h5, h6),
.wp-block-cover :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
