 .k7zz-yt-privacy-facade {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    cursor: pointer;
    overflow: hidden;
}

/* Innerhalb eines Gutenberg-Embed-Blocks übernimmt der Wrapper die Höhe */
 .wp-block-embed__wrapper .k7zz-yt-privacy-facade,
 .wp-has-aspect-ratio .k7zz-yt-privacy-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

 .k7zz-yt-privacy-facade iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnail */
 .k7zz-yt-privacy-thumb {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

/* Dunkler Overlay */
 .k7zz-yt-privacy-facade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease;
    pointer-events: none;
}

 .k7zz-yt-privacy-facade:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Play-Button */
 .k7zz-yt-privacy-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(80, 80, 80, 0.75);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .k7zz-yt-privacy-facade:hover .k7zz-yt-privacy-play {
    background: rgba(50, 50, 50, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Dreieck im Play-Button */
 .k7zz-yt-privacy-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

/* Datenschutz-Hinweis */
 .k7zz-yt-privacy-notice {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    padding: 6px 12px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

 .k7zz-yt-privacy-notice a {
    color: #aad4f5;
    text-decoration: underline;
}

/* "YouTube immer erlauben"-Button */
 .k7zz-yt-privacy-allow-all {
    display: inline-block;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

 .k7zz-yt-privacy-allow-all:hover {
    background: rgba(255, 255, 255, 0.3);
}