/*
 * WordPress / Elementor integration fix.
 * The original site's CSS hides the mobile menu button (.nav-toggle) on
 * desktop by default, and only shows it under 760px. On some WordPress
 * installs, other plugin/theme CSS can override that default and make the
 * button appear on desktop too. This rule just re-asserts the original
 * behavior with higher priority. Nothing else is changed.
 */
@media (min-width: 761px) {
    .site-header .nav-toggle {
        display: none !important;
    }
}
