.featured-posts .block-post {
    position: relative;
}

.featured-posts .display-featured-posts {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* STYLE LAYOUT 1/2 */

.featured-posts .display-featured-posts.one-two .block-post {
    position: relative;
}

.featured-posts .one-two .block-post .container-img img {
    width: 100%;
    transition: .2s;
}


/* STYLE LAYOUT 1/4 */


/* STYLE LAYOUT 2/3 */
.featured-posts .two-three {
    justify-content: space-between;
}

.featured-posts .two-three .block-post {
    flex: 0 0 30%;
}

.featured-posts .two-three .block-post .container-img img {
    width: 100%;
}

.featured-posts .two-three .block-post:nth-child(1),
.featured-posts .two-three .block-post:nth-child(2) {
    flex: 0 0 45%;
}

@media screen and (max-width: 765px) {
    .featured-posts .display-featured-posts .block-post {
        width: 100%;
    }

    /* STYLE LAYOUT 1/4 */
    .featured-posts .one-four {
        flex-direction: column;
    }

    .featured-posts .one-four .other-posts {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .featured-posts .other-posts .block-post {
        flex: 0 0 100%;
    }

}