.blog .section-post-list {
    margin-top: 0;
}

.blog .banner + .platform {
    margin-top: 50px;
    margin-bottom: 50px;
}

.post-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media screen and (max-width: 991px) {
    .post-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 580px) {
    .post-list {
        grid-template-columns: 1fr;
    }
}