@charset "utf-8";
.post-content .img-lg {
    height: calc(24.25rem - 24px);
}

/* MD Devices */
@media (min-width: 390px) {
    .post-content .img-lg {
        height: calc(26.25rem - 24px);
    }
}

/* MD Devices */
@media (min-width: 768px) {
    .post-content .img-lg {
        height: calc(31.25rem - 24px);
    }

    .row-articles {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .row-articles .col-md-6 {
        width: 48.5%;
    }
}

/* LG Devices */
@media (min-width: 992px) {
    .post-content .img-lg {
        height: 38.25rem;
    }

    .row-articles {
        flex-wrap: wrap;
        overflow-x: hidden;
    }

    .row-articles .col-lg-4 {
        width: 33.33333333%;
    }
}