/* 1. Haupt-Navigationscontainer auf Mobilgeräten einblenden */
@media (max-width: 1920px) {
    html body .navigation.hidden-phone {
        display: block !important;
        visibility: visible !important;
    }

    /* 2. Den Einklapp-Container für den Newsflash unwirksam machen */
    html body .navigation .nav-collapse {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        visibility: visible !important;
        border: none !important;
    }

    /* 3. NUR das eigentliche Menü wieder künstlich einklappen */
    html body .navigation .nav-collapse .mod-menu,
    html body .navigation .nav-collapse .nav-menu,
    html body .navigation .nav-collapse .nav-pills {
        display: none !important;
    }

    /* 4. Das Menü wieder einblenden, wenn der Hamburger-Button aktiv (geöffnet) ist */
    html body .navigation .nav-collapse.in .mod-menu,
    html body .navigation .nav-collapse.in .nav-menu,
    html body .navigation .nav-collapse.in .nav-pills {
        display: block !important;
    }

    /* 5. Sicherstellen, dass die Newsflash-Beiträge immer voll sichtbar oben/unten stehen */
    html body .navigation .mod-newsflash,
    html body .navigation .mod-newsflash-item {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }
}
