.newest-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 36px;
    grid-row-gap: 20px;
     border-radius: 12px;
}
@media screen and (min-width: 576px) {
    .newest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 30px;
    }
}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {
    .newest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width: 1200px) {
    .newest-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}