/* Adjust the Media section grid to be unequal */
/* This targets the FIRST layout section (Media) */

/* # 1fr for Immich, 3fr for Streaming.  */
/* This makes Streaming 3x wider than Immich. */
#layout-groups>div:first-child>div>.grid {
    grid-template-columns: 3fr 1fr !important;
}

/* Optional: Ensure this only happens on desktop */
@media (max-width: 768px) {
    #layout-groups>div:first-child>div>.grid {
        grid-template-columns: inherit !important;
    }
}