/* =========================================
   Video Embed Component
   ========================================= */

.dh-video-embed {
    width: 100%;
    background-color: #fff;
    padding: 40px 0;
}

.dh-video-embed__container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* Poster Image */
.dh-video-embed__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

/* Play Button */
.dh-video-embed__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 68px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.dh-video-embed__container:hover .dh-video-embed__play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Iframe */
.dh-video-embed__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .dh-video-embed__play {
        width: 61.138px;
        height: 43.157px;
    }
}