/* Standard: Desktop-Links verstecken */
.only-mobile {
    display: none !important;
}

/* Mobil: wieder sichtbar machen */
@media screen and (max-width: 1024px) {
    .only-mobile {
        display: block !important;
    }
}
