/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .post-style1 .box-text{
        order: 2;
        width: 100%;
        padding: 10px 0;
    }

    .post-style1 .box-image{
        order: 1;
    }

    .post-style4 .cat-label {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
