

div.post-thumbnail {
    margin: 20px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 300px;

    border-radius: 16px;
    overflow: hidden;
    


    .post-thumbnail-overlay {
        padding: 20px;
        height: 100%;

        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;

        h1 {
            margin: 0;
        }

    }
}


/* titre des pages */
.entry-header {
    margin: 0 !important;
    padding: 0 5vw !important;
    width: 100% !important;
    max-width: unset !important;
    position:relative;
    margin-bottom: 160px !important;

    background-color: var(--systemoun-strong-color, #19744c);
    color: white;
    text-align: center;
    /* overflow-x: hidden; */


    >img {
        position: absolute;
        right: 0;
        /* left: 0; */
        /* bottom: -1px; */
        width: 100%;
        /* min-width: 600px; */
        height: 128px;
        object-fit: fill;
        border-radius: 0;
        box-shadow: none;
        z-index: -10;
    }
}


article:has(.um-directory) {
    margin: 0 40px !important;
    max-width: 1200px !important;
    
}






@media (max-width: 800px) {
    .entry-header {
        padding: 0 4vw !important;
        margin-bottom: 100px !important;
    }

    article:has(.um-directory) {
    margin: 0 20px !important;
    max-width: 1200px !important;
    
}

}