body.blog #primary {
    background: var(--carrousel_grey);
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2em;
    margin-bottom: 4em;
}

/* ===================================== Responsive  ===================================== */

/*  Tablet Portrait  */
@media screen and (min-width: 768px) {

    .post-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/*  Desktop  */
@media screen and (min-width: 1024px) {

    .post-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

}