/* Simple mobile video grid fix */
@media only screen and (max-width: 768px) {
    /* Remove container padding */
    .video-directory .container,
    .product-main-wrap .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Force single column */
    #videoGrid.video-grid {
        display: block !important;
    }
    
    #videoGrid .video-box {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
        float: none !important;
    }
    
    /* Full width wrapper */
    #video-grid-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* OVERRIDE video-grid-rebuild.css */
@media only screen and (max-width: 768px) {
    #videoGrid.video-grid,
    .video-grid.columns-3,
    .video-directory .video-grid {
        display: block !important;
        grid-template-columns: none !important;
    }
}
