.youtube-facade {
    width: 100%;
    max-width: 100%;
    aspect-ratio: var(--youtube-aspect-ratio, 16 / 9);
    overflow: hidden;
    background: #111;
    border: 1px solid #000;
    box-sizing: border-box;
}

.youtube-facade__button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #111;
}

.youtube-facade__button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: #ff0000;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.youtube-play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    transform: translate(-35%, -50%);
}

.youtube-facade__button:focus-visible {
    outline: 3px solid #2271b1;
    outline-offset: -3px;
}

.youtube-facade__iframe {
    display: block;
    width: 100%;
    aspect-ratio: var(--youtube-aspect-ratio, 16 / 9);
    border: 1px solid #000;
    box-sizing: border-box;
}
