.display-posts p.display-posts__title {
  font-weight: bold;
  font-size: 32px;
}

.display-posts .rowline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.display-posts .rowline .block-post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.display-posts .rowline .block-post .container-img {
    width: 100%;
}

.display-posts .rowline .block-post .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STYLE DISPLAY POSTS 2 */

.display-posts .display-2-posts .block-post {
    flex: 0 0 calc(50% - 20px);
}

.display-posts .display-2-posts .block-post .container-img img {
    max-height: 300px;
}

/* STYLE DISPLAY POSTS 3 */

.display-posts .display-3-posts .block-post {
    flex: 0 0 calc(33.33% - 20px);
}

.display-posts .display-3-posts .block-post .container-img img {
    max-height: 195px;
}

/* STYLE DISPLAY POSTS 4 */

.display-posts .display-4-posts {
    width: 100%;
    flex-wrap: wrap;
}

.display-posts .display-4-posts .block-post {
    flex: 0 0 calc(25% - 20px);
}

.display-posts .display-4-posts .block-post .container-img img {
    max-height: 145px;
}



@media (max-width: 991px) {
    .display-posts .template-games .block-post {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 765px) {
    .display-posts .rowline {
        flex-wrap: wrap;
    }

    .display-posts .display-2-posts .block-post,
    .display-posts .display-3-posts .block-post,
    .display-posts .display-4-posts .block-post {
        flex: 100%;
    }
}

