.youtube-facade {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

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

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

.youtube-facade__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin: -24px 0 0 -34px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
}

.youtube-facade__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.youtube-facade.is-playing iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-content {
    aspect-ratio: 16 / 9;
}

.video-content .youtube-facade,
.video-content .youtube-facade.is-playing iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-depoimento .youtube-facade,
.video-depoimento .youtube-facade.is-playing iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}