/* 
 * Widgets Headlines CSS
 * Alle Headline-Definitionen (h1, h2, h3, etc.)
 * Farben müssen via Custom Properties aus der colors.css genutzt werden
 */

/* VERPFLICHTEND: Zentrale Headline-Klassen für alle Screens */
/* Alle Screens MÜSSEN diese Klassen verwenden: headline1, headline2, headline3, headline4 */
/* Screens dürfen KEINE eigenen Headline-Definitionen haben */

.base-headline-h1 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blauer Gradient für professionelles Aussehen */
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary-blue);
    position: relative;
    will-change: auto !important;
    transition: none !important;
    animation: none !important;
    text-align: center;
}

.base-headline-h1:hover,
.base-headline-h1:hover *,
.base-headline-h1:focus,
.base-headline-h1:active,
.base-headline-h1:visited,
.headline1 *:hover,
.headline1 *:focus,
.headline1 *:active {
    /* Statischer CI-Farbverlauf bleibt erhalten */
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%) !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    background-repeat: no-repeat !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--color-primary-blue) !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    will-change: auto !important;
}

.base-headline-h1::after,
.base-headline-h1:hover::after,
.base-headline-h1:focus::after,
.base-headline-h1:active::after,
.base-headline-h1::before,
.base-headline-h1:hover::before,
.base-headline-h1:focus::before,
.base-headline-h1:active::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h2 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.3;
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blauer Gradient, etwas heller als headline1 */
    background: linear-gradient(135deg, var(--color-primary-blue-light) 0%, var(--color-primary-blue) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary-blue-light);
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h2:hover,
.base-headline-h2:hover *,
.base-headline-h2:focus,
.base-headline-h2:active,
.base-headline-h2:visited,
.headline2 *:hover,
.headline2 *:focus,
.headline2 *:active {
    /* Statischer CI-Farbverlauf bleibt erhalten */
    background: linear-gradient(135deg, var(--color-primary-blue-light) 0%, var(--color-primary-blue) 100%) !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--color-primary-blue-light) !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h2::after,
.base-headline-h2:hover::after,
.base-headline-h2:focus::after,
.base-headline-h2:active::after,
.base-headline-h2::before,
.base-headline-h2:hover::before,
.base-headline-h2:focus::before,
.base-headline-h2:active::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blau, subtiler als headline2 */
    color: var(--color-primary-blue) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h3:hover,
.base-headline-h3:hover *,
.base-headline-h3:focus,
.base-headline-h3:active,
.base-headline-h3:visited,
.headline3 *:hover,
.headline3 *:focus,
.headline3 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h3::after,
.base-headline-h3:hover::after,
.base-headline-h3:focus::after,
.base-headline-h3:active::after,
.base-headline-h3::before,
.base-headline-h3:hover::before,
.base-headline-h3:focus::before,
.base-headline-h3:active::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h4 {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Sehr dezent blau, subtiler als headline3 */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h4:hover,
.base-headline-h4:hover *,
.base-headline-h4:focus,
.base-headline-h4:active,
.base-headline-h4:visited,
.headline4 *:hover,
.headline4 *:focus,
.headline4 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h4::after,
.base-headline-h4:hover::after,
.base-headline-h4:focus::after,
.base-headline-h4:active::after,
.base-headline-h4::before,
.base-headline-h4:hover::before,
.base-headline-h4:focus::before,
.base-headline-h4:active::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* Responsive für headline1-4 */
@media (width <= 576px) {
    .base-headline-h1 {
        font-size: var(--font-size-base);
        line-height: 1.2;
        margin: 0 0 var(--spacing-md) 0;
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-sm);
        line-height: 1.3;
        margin: 0 0 var(--spacing-sm) 0;
    }
    
    .base-headline-h3 {
        font-size: var(--font-size-xs);
        line-height: 1.2;
    }
}

@media (width >= 600px) and (width < 1024px) {
    .base-headline-h1 {
        font-size: var(--font-size-lg);
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-base);
    }
}

@media (width >= 1024px) {
    .base-headline-h1 {
        font-size: var(--font-size-xl);
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-lg);
    }
}

/* Apple Design Style - Headlines */
.base-headline-h1 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blauer Gradient für professionelles Aussehen */
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary-blue);
    position: relative;
    will-change: auto !important;
    transition: none !important;
    animation: none !important;
    text-align: center;
}

.base-headline-h1:hover,
.base-headline-h1:hover *,
.base-headline-h1:focus,
.base-headline-h1:active,
.base-headline-h1:visited,
.base-headline-h1 *:hover,
.base-headline-h1 *:focus,
.base-headline-h1 *:active {
    /* Statischer CI-Farbverlauf bleibt erhalten */
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%) !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    background-repeat: no-repeat !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--color-primary-blue) !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    will-change: auto !important;
}

.base-headline-h1::after,
.base-headline-h1:hover::after,
.base-headline-h1:focus::after,
.base-headline-h1:active::after,
.base-headline-h1::before,
.base-headline-h1:hover::before,
.base-headline-h1:focus::before,
.base-headline-h1:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* @keyframes de-gradient-shift - DEAKTIVIERT - Keine Animationen erlaubt */
/*
@keyframes de-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
*/

.base-headline-h2 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.3;
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blauer Gradient, etwas heller als h1 */
    background: linear-gradient(135deg, var(--color-primary-blue-light) 0%, var(--color-primary-blue) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary-blue-light);
    position: relative;
    will-change: auto;
    transition: none !important;
    text-align: center;
}

.base-headline-h2:hover,
.base-headline-h2:hover *,
.base-headline-h2:focus,
.base-headline-h2:active,
.base-headline-h2:visited,
.base-headline-h2 *:hover,
.base-headline-h2 *:focus,
.base-headline-h2 *:active {
    /* Statischer CI-Farbverlauf bleibt erhalten */
    background: linear-gradient(135deg, var(--color-primary-blue-light) 0%, var(--color-primary-blue) 100%) !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--color-primary-blue-light) !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h2::after,
.base-headline-h2:hover::after,
.base-headline-h2:focus::after,
.base-headline-h2:active::after,
.base-headline-h2::before,
.base-headline-h2:hover::before,
.base-headline-h2:focus::before,
.base-headline-h2:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Dezent blau, subtiler als h2 */
    color: var(--color-primary-blue) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h3:hover,
.base-headline-h3:hover *,
.base-headline-h3:focus,
.base-headline-h3:active,
.base-headline-h3:visited,
.base-headline-h3 *:hover,
.base-headline-h3 *:focus,
.base-headline-h3 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h3::after,
.base-headline-h3:hover::after,
.base-headline-h3:focus::after,
.base-headline-h3:active::after,
.base-headline-h3::before,
.base-headline-h3:hover::before,
.base-headline-h3:focus::before,
.base-headline-h3:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h4 {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Sehr dezent blau, subtiler als h3 */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h4:hover,
.base-headline-h4:hover *,
.base-headline-h4:focus,
.base-headline-h4:active,
.base-headline-h4:visited,
.base-headline-h4 *:hover,
.base-headline-h4 *:focus,
.base-headline-h4 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h4::after,
.base-headline-h4:hover::after,
.base-headline-h4:focus::after,
.base-headline-h4:active::after,
.base-headline-h4::before,
.base-headline-h4:hover::before,
.base-headline-h4:focus::before,
.base-headline-h4:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h5 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Sehr dezent blau */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h5:hover,
.base-headline-h5:hover *,
.base-headline-h5:focus,
.base-headline-h5:active,
.base-headline-h5:visited,
.base-headline-h5 *:hover,
.base-headline-h5 *:focus,
.base-headline-h5 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h5::after,
.base-headline-h5:hover::after,
.base-headline-h5:focus::after,
.base-headline-h5:active::after,
.base-headline-h5::before,
.base-headline-h5:hover::before,
.base-headline-h5:focus::before,
.base-headline-h5:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.base-headline-h6 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* CI-Farbe: Sehr dezent blau */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h6:hover,
.base-headline-h6:hover *,
.base-headline-h6:focus,
.base-headline-h6:active,
.base-headline-h6:visited,
.base-headline-h6 *:hover,
.base-headline-h6 *:focus,
.base-headline-h6 *:active {
    /* Statische CI-Farbe bleibt erhalten */
    color: var(--color-primary-blue-dark) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-primary-blue-dark) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

.base-headline-h6::after,
.base-headline-h6:hover::after,
.base-headline-h6:focus::after,
.base-headline-h6:active::after,
.base-headline-h6::before,
.base-headline-h6:hover::before,
.base-headline-h6:focus::before,
.base-headline-h6:active::before {
    /* Keine Unterstreichung oder andere Pseudo-Elemente */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* Screen-spezifische Headline-Varianten */
.base-headline-admin-login-h1 {
    color: var(--color-info-blue);
    font-size: var(--font-size-2rem);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
    /* Professioneller, seriöser Farbverlauf mit dezentem Blau-Akzent */
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-primary-blue-light) 50%, var(--color-text-secondary) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: none;
    filter: none;
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    hyphens: none;
    word-break: normal;
}

.base-headline-admin-login-h1:hover {
    /* Keine Hover-Effekte */
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-primary-blue-light) 50%, var(--color-text-secondary) 100%);
    animation: none;
    filter: none;
}

/* @keyframes gradient-shift - DEAKTIVIERT - Keine Animationen erlaubt */
/*
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}
*/

/* Responsive - Apple Design Style */
/* Mobile: max-width: 576px */
@media (width <= 576px) {
    .base-headline-h1 {
        font-size: var(--font-size-base);
        line-height: 1.2;
        margin: 0 0 var(--spacing-md) 0;
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-sm);
        line-height: 1.3;
        margin: 0 0 var(--spacing-sm) 0;
    }
    
    .base-headline-h3 {
        font-size: var(--font-size-xs);
        line-height: 1.2;
    }
}

/* Tablet/iPad: 600px-768px */
@media (width >= 600px) and (width < 1024px) {
    .base-headline-h1 {
        font-size: var(--font-size-lg);
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-base);
    }
}

/* Desktop: 1024px-1366px */
@media (width >= 1024px) {
    .base-headline-h1 {
        font-size: var(--font-size-xl);
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-lg);
    }
}

/* Prefers-reduced-motion: Animationen deaktivieren für Nutzer mit Motion-Sensitivity */
@media (prefers-reduced-motion: reduce) {
    .base-headline-h1:hover,
    .base-headline-h2:hover,
    .base-headline-h3:hover,
    .base-headline-h4:hover,
    .base-headline-h5:hover,
    .base-headline-h6:hover {
        animation: none !important;
        filter: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .base-headline-h1::after,
    .base-headline-h2::after,
    .base-headline-h3::after,
    .base-headline-h4::after,
    .base-headline-h5::after,
    .base-headline-h6::after {
        display: none !important;
        transition: none !important;
    }
}

.base-headline-error-404-h1 {
    color: var(--color-info-blue);
    font-size: var(--font-size-22rem);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--color-info-blue) 0%, var(--color-info-blue-dark) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    hyphens: none;
    word-break: normal;
    animation: none;
    transition: none;
    will-change: auto;
}

.base-headline-error-404-h1:hover {
    /* Keine Hover-Effekte */
    background: linear-gradient(135deg, var(--color-info-blue) 0%, var(--color-info-blue-dark) 100%);
    background-size: 100% auto;
    animation: none;
    filter: none;
    transition: none;
    transform: none;
}

.base-headline-error-404-h1::after {
    /* Keine Unterstreichung */
    display: none !important;
}

.base-headline-error-h1 {
    color: #ffffff;
    font-size: var(--font-size-3xl);
    margin-bottom: 0;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: none;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    hyphens: none;
    word-break: normal;
    animation: none;
    transition: none;
    will-change: auto;
}

.base-headline-error-h1:hover,
.base-headline-error-h1:hover *,
.base-headline-error-h1:focus,
.base-headline-error-h1:active,
.base-headline-error-h1:visited,
h1.base-headline-error-h1:hover,
h1.base-headline-error-h1:focus,
h1.base-headline-error-h1:active {
    /* KOMPLETT STATISCH - KEINE HOVER-EFFEKTE */
    color: #ffffff !important;
    background: none !important;
    background-size: unset !important;
    background-position: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    will-change: auto !important;
}

.base-headline-error-h1::after,
.base-headline-error-h1:hover::after,
.base-headline-error-h1:focus::after,
.base-headline-error-h1:active::after {
    /* Keine Unterstreichung - auch nicht beim Hover */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.base-headline-error-h1::before {
    content: "";
    font-size: var(--font-size-3xl);
    -webkit-text-fill-color: #ffffff;
}

.base-headline-error-h1:hover::before,
.base-headline-error-h1:focus::before,
.base-headline-error-h1:active::before {
    /* Keine Pseudo-Elemente beim Hover */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.base-headline-error-h2 {
    color: #ffffff;
    font-size: var(--font-size-xl);
    margin: var(--spacing-xl) 0 var(--spacing-md);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    hyphens: none;
    word-break: normal;
    animation: none;
    transition: none;
    will-change: auto;
}

.base-headline-error-h2:hover,
.base-headline-error-h2:focus,
.base-headline-error-h2:active,
.base-headline-error-h2:hover *,
.base-headline-error-h2:focus *,
.base-headline-error-h2:active *,
h2.base-headline-error-h2:hover,
h2.base-headline-error-h2:focus,
h2.base-headline-error-h2:active {
    /* KOMPLETT STATISCH - KEINE HOVER-EFFEKTE */
    color: #ffffff !important;
    background: none !important;
    background-image: none !important;
    background-size: inherit !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    will-change: auto !important;
}

.base-headline-error-h2::after,
.base-headline-error-h2:hover::after,
.base-headline-error-h2:focus::after,
.base-headline-error-h2:active::after {
    /* Keine Unterstreichung - auch nicht beim Hover */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.base-headline-error-h2::before {
    content: '';
    color: #ffffff;
    margin-right: 8px;
}

.base-headline-error-h2:hover::before,
.base-headline-error-h2:focus::before,
.base-headline-error-h2:active::before {
    /* Keine Pseudo-Elemente beim Hover */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ============================================================================
   ABSOLUT VERBOTEN: Alle Hover-Effekte für Widget-Headlines - Überschreibt ALLES
   ============================================================================ */
.base-headline-h1:hover,
.base-headline-h2:hover,
.base-headline-h3:hover,
.base-headline-h4:hover,
.base-headline-h5:hover,
.base-headline-h6:hover,
.base-headline-error-h1:hover,
.base-headline-error-h2:hover,
.base-headline-error-404-h1:hover,
h1.base-headline-h1:hover,
h2.base-headline-h2:hover,
h3.base-headline-h3:hover,
h4.base-headline-h4:hover,
h5.base-headline-h5:hover,
h6.base-headline-h6:hover,
h1.base-headline-error-h1:hover,
h2.base-headline-error-h2:hover,
span.base-headline-h1:hover,
span.base-headline-h2:hover,
span.base-headline-h3:hover,
span.base-headline-h4:hover,
span.base-headline-h5:hover,
span.base-headline-h6:hover {
    /* Statische CI-Farben bleiben erhalten - keine Hover-Effekte */
    /* h1/h2 behalten ihren Gradient, h3-h6 behalten ihre CI-Farbe */
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    will-change: auto !important;
}

.base-headline-h1:hover::after,
.base-headline-h2:hover::after,
.base-headline-h3:hover::after,
.base-headline-h4:hover::after,
.base-headline-h5:hover::after,
.base-headline-h6:hover::after,
.base-headline-error-h1:hover::after,
.base-headline-error-h2:hover::after,
.base-headline-error-404-h1:hover::after,
.base-headline-h1:hover::before,
.base-headline-h2:hover::before,
.base-headline-h3:hover::before,
.base-headline-h4:hover::before,
.base-headline-h5:hover::before,
.base-headline-h6:hover::before,
.base-headline-error-h1:hover::before,
.base-headline-error-h2:hover::before,
.base-headline-error-404-h1:hover::before {
    /* KEINE PSEUDO-ELEMENTE BEIM HOVER */
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Legacy Support: h1, h2, h3, h4, h5, h6 (ohne Klassen) */
h1 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary);
}

h2 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.3;
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary);
}

h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.2;
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary);
}

h4 {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary);
}

/* Responsive - Legacy Support für h1-h4 */
@media (width <= 576px) {
    h1 {
        font-size: var(--font-size-base);
        line-height: 1.2;
        margin: 0 0 var(--spacing-md) 0;
    }
    
    h2 {
        font-size: var(--font-size-sm);
        line-height: 1.3;
        margin: 0 0 var(--spacing-sm) 0;
    }
    
    h3 {
        font-size: var(--font-size-xs);
        line-height: 1.2;
    }
}

@media (width >= 600px) and (width < 1024px) {
    h1 {
        font-size: var(--font-size-lg);
    }
    
    h2 {
        font-size: var(--font-size-base);
    }
}

@media (width >= 1024px) {
    h1 {
        font-size: var(--font-size-xl);
    }
    
    h2 {
        font-size: var(--font-size-lg);
    }
}

/* Page Header - Legacy Support (basierend auf Vorlage) */
.base-page-header {
    margin: 1rem 0 1.25rem;
}

.base-page-header--hero {
    padding-top: 0.75rem;
}

.base-page-header h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--color-heading);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
    font-family: var(--font-family-base);
}

.base-page-header-subline {
    display: block;
    font-size: var(--font-size-base);
    margin-top: 0.25rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-normal);
    font-family: var(--font-family-base);
    line-height: var(--line-height-normal);
}

.base-page-header-subline strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.base-page-header-tagline {
    margin: 0.4rem 0 0;
    font-size: var(--font-size-098rem);
    color: var(--color-text-secondary);
    font-family: var(--font-family-base);
    line-height: var(--line-height-normal);
}

/* Responsive - Page Header (basierend auf Vorlage) */
@media (width >= 1024px) {
    .base-page-header--hero {
        padding-top: 0.75rem;
    }

    .base-page-header h1 {
        font-size: 1.8rem;
    }
}
