/*
    Fichier css contenant les styles relatif à l'éditeur gutemberg
*/

/* Alignements à l'intérieur des blocs en important */
.has-text-align-left {
    text-align: left !important;
}

.has-text-align-right {
    text-align: right !important;
}

.has-text-align-center {
    text-align: center !important;
}

/* Alignements de blocs */
.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Largeurs des blocs */
.wp-block[data-align="wide"] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block[data-align="full"] {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}


/* Gérer les espacements/margin et padding */
[style*="margin"] {
    margin: unset;
}

[style*="padding"] {
    padding: unset;
}

.has-custom-padding {
    padding: var(--wp--custom--spacing);
}

section.wp-block-group {
    width: 100%;
}

:where(.wp-block-columns) {
    margin-bottom: 0;
}

/* Bloque lié à l'utilisation des groupes */
div.wp-block-group__inner-container {
    width: 100%;
}

/* container des boutons */
.wp-block-buttons {
    width: 100%;
}


/* Classe de tailwind */
.mb-0 {
    margin-bottom: 0 !important;
}