.video-testimonial {
    position: relative;
}

.video-testimonial__media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.video-testimonial__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testimonial__person {
    margin-top: 16px;
}

.video-testimonial__name {
    margin: 0 0 4px;
    font-weight: 600;
}

.video-testimonial__title {
    margin: 0;
    font-size: 14px;
}

.video-testimonial__lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .88);
}

.video-testimonial__lightbox.is-open {
    display: flex;
}

.video-testimonial__lightbox-inner {
    position: relative;
    width: min(1100px, 100%);
    max-height: 90vh;
}

.video-testimonial__lightbox-video {
    display: block;
    width: 100%;
    max-height: 90vh;
    background: #000;
}

.video-testimonial__lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

button.video-testimonial__lightbox-close:hover {
    background: unset;
}

body.video-testimonial-lightbox-open {
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-btn svg {
    display: flex;
    width: 60px;
    height: 60px;
    background-color: var(--color2, #C8A96A);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding-left: 5px;
    color: #fff;
    opacity: 0.8;
}
