.xmai-youtube-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}
.xmai-youtube-facade__button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    position: relative;
}
.xmai-youtube-facade__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
    border-radius: 2px;
}
.xmai-youtube-facade .xmai-youtube-facade__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.xmai-youtube-facade__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.xmai-youtube-facade__play::after {
    content: '';
    display: block;
    width: 68px;
    height: 48px;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    position: relative;
}
.xmai-youtube-facade__play::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.xmai-youtube-facade__button:hover .xmai-youtube-facade__play::after,
.xmai-youtube-facade__button:focus-visible .xmai-youtube-facade__play::after {
    background: #f00;
}
.xmai-youtube-facade__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
