lite-youtube {
    display: block;
    position: relative;
    width: 100%;
    background-color: #000;
    cursor: pointer;
    contain: content;
    overflow: hidden;
}

lite-youtube .lite-yt-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

lite-youtube .lite-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background-color: rgba(11, 34, 65, 0.85);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

lite-youtube .lite-yt-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

lite-youtube:hover .lite-yt-play,
lite-youtube .lite-yt-play:focus-visible {
    background-color: #cc0000;
}

lite-youtube iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

lite-youtube.lite-yt-activated .lite-yt-thumb,
lite-youtube.lite-yt-activated .lite-yt-play {
    display: none;
}
