/* Untertitel – Standard (mobil) */
.Untertitel {
    font-family: Arial, "Arial Black", "Arial Narrow", "Arial Unicode MS";
    text-align: center;
    font-size: 2.8vh; /* Mobile */

}

/* Links und Dropdown-Header erben Größe und weiß */
.Untertitel a,
.Untertitel div.custom-dropdown > a {
    font-size: inherit;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}

/* Hover nur für Links */
.Untertitel a:hover,
.Untertitel div.custom-dropdown > a:hover {
    color: #D51E21;
    font-style: italic;
}

/* Reiner Text ohne Link = grau */
.Untertitel .plain-text {
    color: #262626; /* grau */
    cursor: default;
}

/* Desktop Schriftgröße */
@media screen and (min-width: 1180px) {
    .Untertitel {
        font-size: 5vh;
    }
}

