/*
 * Global desktop scale override.
 * Matches the user's preferred browser zoom level without changing each module layout individually.
 */
@media only screen and (min-width: 1200px) {
    html {
        zoom: 0.9;
    }
}
