.video{
    position: relative;
    aspect-ratio: 16/9;
}
.video-iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
    cursor: pointer;
}
.video-overlay.on-hover .video-overlay-controls {
    opacity: 0;
}
.video-overlay.on-hover:hover .video-overlay-controls {
    opacity: 1;
}
.video__item {
    aspect-ratio: 16 / 9;
    width: 100%;
    display: block;
}
.video-overlay__image {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}
.video-overlay-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
    padding: 22px 33px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #333 100%);
    transition: opacity .2s ease;
    gap: 20px;
}
.video-overlay-controls__button {
    border: 2px solid #fff;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    margin-right: 16px;
    transition: background-color .3s ease;
}
.video-overlay-controls__button:hover {
    background-color: rgba(255,255,255,0.2);
}
.video-overlay-controls__button-icon:not(.fa-pause) {
    margin-left: 4px;
}
.video-overlay-controls__title,
.video-overlay-controls__time {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.07em;
    display: none;
}