/* ============================================================================
   RESPONSIVE DESIGN - Media Queries
   ============================================================================ */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: 250px 1fr;
    }
    
    .verse-block {
        width: 320px;
    }
    
    .verse-block:not(.collapsed) {
        height: 320px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .app-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .left-sidebar {
        border-right: none;
        border-bottom: 1px solid #30363d;
        max-height: 50vh;
    }
    
    .operations-grid,
    .shortcuts-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}