.vvs-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 40px; /* space for pagination */
}
.vvs-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}
.vvs-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
}
.vvs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vvs-poster {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s;
    z-index: 1;
}
.vvs-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    color: #fff;
    transition: opacity 0.3s, transform 0.3s;
}
.vvs-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.vvs-playing .vvs-poster,
.vvs-playing .vvs-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Base style for custom swiper arrows so controls can hook onto them */
.vvs-swiper .swiper-button-next,
.vvs-swiper .swiper-button-prev {
    color: #ffffff; 
}

.vvs-swiper .swiper-button-next:after, 
.vvs-swiper .swiper-button-prev:after {
    font-size: 24px;
}

.vvs-video-title {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
    color: #333;
}
