/* FORCE VISIBILITY FOR BLANK PAGES */
@media screen and (max-width: 1024px) {
    
    /* This overrides any 'display: none' or 'opacity: 0' caused by broken JS */
    #main-content, 
    .page-content, 
    .container, 
    #sliderContainer,
    .row, 
    article {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 200px !important;
    }

    /* Fix for Royal Slider appearing cut off */
    #mainSlider, .royalSlider {
        width: 100% !important;
        height: 380px !important;
        left: 0 !important;
        margin: 0 !important;
    }

    /* Force columns to stack vertically */
    .col-sm-8, .col-sm-4, .row > div {
        width: 100% !important;
        float: none !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
}