/* YouTube 2-Klick-Lösung (DSGVO-konform) */
.yt-consent {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.yt-consent-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.yt-consent:hover .yt-consent-thumb {
    opacity: 0.8;
}

.yt-consent-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.45);
}

.yt-consent-play {
    width: 68px;
    height: 48px;
    background: rgba(220, 0, 0, 0.9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.yt-consent:hover .yt-consent-play {
    background: rgba(220, 0, 0, 1);
}

.yt-consent-play svg {
    fill: white;
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.yt-consent-text {
    font-size: 0.8rem;
    color: white;
    max-width: 280px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.yt-consent-text a {
    color: white;
    text-decoration: underline;
    background: rgba(0,0,0,0.4);
    padding: 1px 5px;
    border-radius: 3px;
}
