.featured-posts .title-post{
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    color: var(--headings-color);
    margin: 0;
}

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

/* STYLE LAYOUT 1/4 */

.featured-posts .one-four .block-post {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 20px);
}

.featured-posts .one-four .block-post .container-img img {
    width: 100%;
}

.featured-posts .one-four .other-posts {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 calc(50% - 20px);
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.featured-posts .one-four .other-posts .block-post {
    flex: 0 0 35%;
    margin: 20px;
}

/* 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) {
    /* STYLE LAYOUT 1/4 */
    .featured-posts .one-four {
        flex-direction: column;
    }

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