.global-banner {
    text-align: center;
    position: relative;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.global-banner h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.625rem;
}

.entry-content {
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.entry-content a {
    color: var(--wp--preset--color--color-1);
}
.entry-content h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3vh;
    margin-bottom: 1vh;
}
.entry-content h3 {
    margin-top: 2vh;
    margin-bottom: 1vh;
}


/***** Blocks ACF ******/

/* Texte + image */
.block-text-image {
    margin-bottom: 4vh;
}
.block-text-image .image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/3;
}
.block-text-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-text-image .content {
    border: 1px solid var(--wp--preset--color--grey-600);
    background-color: rgba(30,31,32,0.6);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.block-text-image .content h2 {
    margin-top: 2vh;
    margin-bottom: 1vh;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.625rem;
}


@media screen and (min-width: 991px) {
    .block-text-image {
        margin-bottom: 8vh;
    }
    .block-text-image .content {
        margin-right: 30px;
        padding: 50px;
    }
    .block-text-image .flex-row-reverse .content {
        margin-right: 0;
        margin-left: 30px;
    }
}