 /* very small devices */
@media only screen and (min-width: 320px) and (max-width:410px) {
    .post-box-column {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .post-box {
        padding-left: 1rem;
    }
    .post-img-box {
        border-radius: 2% 2% 0 0;
    }
}

/* extra small devices */
@media only screen and (min-width: 411px) and (max-width:575px){
    .post-box-column {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .post-box {
        padding-left: 1rem;
    }
}

/* small devices */
@media only screen and (min-width: 576px) and (max-width:767px){
    .post-box-column {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .post-box {
        padding-left: 1rem;
    }
}

/* medium small devices */
@media only screen and (min-width: 768px) and (max-width:991px) {

}

/* medium devices */
@media only screen and (min-width: 992px) and (max-width:1199px) {

}

/* large devices */
@media only screen and (min-width: 1200px) {

}