
/* --- weitere Tailwind --- */
.header-badge { margin: 8px 30px; }



/* Klasse für strukturierte Daten (Visuell nicht störend, technisch lesbar) */
.meta-data {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    opacity: 0;
}

/* Optional: Hover-Status explizit machen, falls Tailwind-Hover nicht greifen */
.header-badge:hover {
    color: #C5A059;
}

.media-logo { 
    filter: grayscale(100%); 
    opacity: 0.4; 
    transition: all 0.4s ease; 
    max-height: 25px;
    line-height: 1; /* Minimaler Zeilenabstand */
    display: inline-block;
    vertical-align: middle;
    margin: 0.25rem; /* Fallback-Abstand, falls gap nicht greift */
}



/* --- COOKIE BANNER FIXED STYLES (Explizit, falls Tailwind fehlt) --- */
#cookie-overlay {
    position: fixed;
    inset: 0; /* Fallback für Top/Right/Bottom/Left: 0 */
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    #cookie-overlay {
        align-items: center;
    }
}

#cookie-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

#cookie-card {
    background: white;
    width: 100%;
    max-width: 32rem;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transform: translateY(1rem);
    transition: transform 0.3s ease;
}

#cookie-overlay.show #cookie-card {
    transform: translateY(0);
}


