.lazy-yt-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    overflow: hidden;
}

.lazy-yt-thumb {
    position: relative;
    cursor: pointer;
    width: 100%;
    display: block;
}

.lazy-yt-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.lazy-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.lazy-yt-play:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
}

.lazy-yt-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lazy-yt-active {
    transition: height 0.2s ease-in-out;
}

@media (max-width: 767px) {
    .lazy-yt-wrapper {
        width: 100% !important; 
    }
}