.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block{
    height: fit-content;
}

/* Style des paragraphes, listes, citations, galeries et médias */
.wp-block-paragraph, 
.wp-block-list, 
.wp-block-blockquote, 
.wp-block-gallery, 
.wp-block-media-text {
    padding: 0px 10vw;
    color: #001545;
    font-size: 12px;
    line-height: 22px;
}

/* Style des blockquotes */
.wp-block-quote {
    font-style: italic;
    border-left: 4px solid #001545;
    padding-left: 15px;
    margin: 20px 10vw;
}
.wp-block-quote .wp-block-paragraph{
    padding:0px;
}
.wp-block-heading{
    margin: 20px 10vw;
}
.wp-block-heading .wp-block-heading{
    margin: 0px;
}
/* Style des galeries */
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

}
.wp-block-gallery .wp-block-gallery {
    margin: 20px 0px;
}
/* Style du bloc Media & Texte */
.wp-block-media-text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp-block-media-text .wp-block-media-text{
    padding: 0px;
}
.wp-block-media-text .wp-block-paragraph{
    padding:0px;
}

/* Styles des titres avec un padding uniforme */
h1.block-editor-rich-text__editable,
h2.block-editor-rich-text__editable,
h3.block-editor-rich-text__editable,
h4.block-editor-rich-text__editable {
    font-family: 'Martell', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px 10vw;
}

/* Tailles de police et interlignes ajustées */
h1.block-editor-rich-text__editable {
    font-size: 80px;
}

h2.block-editor-rich-text__editable {
    font-size: 38px;
    line-height: 38px;
}

h3.block-editor-rich-text__editable {
    font-size: 25px;
    line-height: 25px;
}

h4.block-editor-rich-text__editable {
    font-size: 20px;
    line-height: 20px;
}

/* Bouton dans l'éditeur Gutenberg */
.editor-styles-wrapper .wp-block-button__link, .wp-block-button__link {
    white-space: pre-wrap;
    min-width: 1px;
    background-color: #001545;
    color: #fff;
    border-radius: 2px;
    padding: 16px 25px 13px;
    font-size: 12px !important;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
}