/* File: style.css */

/* Verstecke auf Mobil (≤767px) */
@media only screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Verstecke auf Desktop (≥768px) */
@media only screen and (min-width: 768px) {
    .hide-on-desktop {
        display: none !important;
    }
}
