.impressum a{
    color: var(--secondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 3px;
}
.impressum a:hover{
    color: var(--text-color);
}
.impressum a::after{
    content: '';
    height: 2px;
    width: 0%;
    background: var(--main-brand-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}
.impressum a:hover::after{
    width: 100%;
}
.no-wrap {
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
}