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

/* Apple Design Style - Headlines */
.base-headline-h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.1;
    margin: 0 0 var(--spacing-xl) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* Apple-Stil: Sehr groß, mehr Weißraum, entspannterer Line-Height */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    -webkit-text-fill-color: var(--color-text-primary) !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-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-3xl);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.15;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    /* Apple-Stil: Groß, mehr Weißraum */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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-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-2xl);
    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;
    /* Apple-Stil: Mittelgroß, mehr Weißraum */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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-lg);
    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;
    /* Keine Background-Gradient, keine Animationen */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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;
    /* Keine Background-Gradient, keine Animationen */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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;
    /* Keine Background-Gradient, keine Animationen */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !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 {
    /* Keine Hover-Effekte - komplett deaktiviert */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: 100% auto !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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;
}

/* Admin-App: Hero-H1 – EINZELKLASSE (nur eine Klasse pro Element) */
.base-headline-h1-hero {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.1;
    margin: 0 0 var(--spacing-xl) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto !important;
    transition: none !important;
    animation: none !important;
    text-align: center;
}

.base-headline-h1-hero:hover,
.base-headline-h1-hero:hover *,
.base-headline-h1-hero:focus,
.base-headline-h1-hero:active,
.base-headline-h1-hero:visited,
.base-headline-h1-hero *:hover,
.base-headline-h1-hero *:focus,
.base-headline-h1-hero *:active {
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

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

/* Base-Headline Admin-Login (H1 für Login-Screen) */
.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-3xl);
        line-height: 1.1;
        margin: 0 0 var(--spacing-lg) 0;
    }
    
    .base-headline-h2 {
        font-size: var(--font-size-2xl);
        line-height: 1.15;
        margin: 0 0 var(--spacing-md) 0;
    }
    
    .base-headline-h3 {
        font-size: var(--font-size-xl);
        line-height: 1.2;
    }
}

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

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

/* Admin-App: EINZELKLASSEN – nur eine Klasse pro Element (base-headline-h1/h2 nicht zusätzlich) */
.base-headline-h1-admin {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.1;
    margin: 0 0 var(--spacing-xl) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto !important;
    transition: none !important;
    animation: none !important;
    text-align: center;
}

.base-headline-h2-admin {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    line-height: 1.15;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
    text-align: center;
}

.base-headline-h3-admin {
    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-md) 0;
    letter-spacing: var(--letter-spacing-normal);
    hyphens: none;
    word-break: normal;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h4-admin {
    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;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h5-admin {
    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;
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

.base-headline-h6-admin {
    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) !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    position: relative;
    will-change: auto;
    transition: none !important;
}

/* Database-Migration-Screen: eine Klasse, keine Hover/After-Effekte */
.base-headline-h1-migration {
    margin: 20px 0;
    color: var(--color-primary-blue);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-base);
    text-shadow: 0 0 10px rgb(0 112 243 / 80%);
    letter-spacing: var(--letter-spacing-wider);
    hyphens: none;
    word-break: normal;
    text-align: center;
    animation: none;
    transition: none;
    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;
}

.base-headline-h1-migration:hover,
.base-headline-h1-migration:focus,
.base-headline-h1-migration:active {
    color: var(--color-primary-blue) !important;
    -webkit-text-fill-color: var(--color-primary-blue) !important;
    background: none !important;
    text-shadow: 0 0 10px rgb(0 112 243 / 80%);
    animation: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
}

.base-headline-h1-migration::after,
.base-headline-h1-migration::before {
    display: none !important;
}

/* 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: var(--color-text-white);
    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 !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-white) !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    font-family: var(--font-family-base);
    line-height: var(--line-height-tight);
    hyphens: none;
    word-break: normal;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
}

.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: var(--color-text-white) !important;
    background: none !important;
    background-size: unset !important;
    background-position: unset !important;
    -webkit-text-fill-color: var(--color-text-white) !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: var(--color-text-white);
}

.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: var(--color-text-white);
    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 !important;
    transition: none !important;
    will-change: auto !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--color-text-white) !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.base-headline-error-h2:hover,
.base-headline-error-h2:hover *,
.base-headline-error-h2:focus,
.base-headline-error-h2:active,
.base-headline-error-h2:visited,
.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:hover *,
h2.base-headline-error-h2 *:hover {
    /* KOMPLETT STATISCH - KEINE HOVER-EFFEKTE */
    color: var(--color-text-white) !important;
    background: none !important;
    background-image: none !important;
    background-size: unset !important;
    background-position: unset !important;
    -webkit-text-fill-color: var(--color-text-white) !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: var(--color-text-white);
    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 {
    /* KOMPLETT KEINE HOVER-EFFEKTE - ÜBERSCHREIBT ALLES */
    color: var(--color-text-primary) !important;
    background: none !important;
    background-image: none !important;
    background-size: inherit !important;
    background-position: 0% 50% !important;
    -webkit-text-fill-color: var(--color-text-primary) !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-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;
}
