.vdo-carousel-wrapper {
    margin: 20px 0;
    position: relative;
    font-family: Arial, sans-serif;
}
.vdo-item {
    padding: 0 10px;
    box-sizing: border-box;
}
.vdo-thumbnail-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}
.vdo-thumbnail-wrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    opacity: 0.8;
}
.vdo-item:hover .vdo-thumbnail-wrap img {
    transform: scale(1.05);
    opacity: 1;
}

/* Play button overlay */
.vdo-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
    pointer-events: none;
}
.vdo-play-icon {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}
.vdo-thumbnail-wrap a:hover .vdo-play-overlay {
    background: #e62117;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Slick Arrows customization */
.vdo-carousel-wrapper .slick-prev, 
.vdo-carousel-wrapper .slick-next {
    width: 40px;
    height: 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 50%;
    z-index: 10;
}
.vdo-carousel-wrapper .slick-prev:before, 
.vdo-carousel-wrapper .slick-next:before {
    color: #333;
    font-size: 20px;
    line-height: 40px;
    opacity: 1;
}
.vdo-carousel-wrapper .slick-prev { left: -15px; }
.vdo-carousel-wrapper .slick-next { right: -15px; }
.vdo-carousel-wrapper .slick-prev:hover, 
.vdo-carousel-wrapper .slick-next:hover {
    background: #f1f1f1;
}

/* Style 2: Title Below */
.vdo-style-2 .vdo-info-wrap {
    padding: 15px 5px 5px;
    text-align: center;
}
.vdo-style-2 .vdo-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

/* Style 3: Title, Desc, and Large Icon */
.vdo-style-3 .vdo-play-overlay {
    width: 70px;
    height: 70px;
}
.vdo-style-3 .vdo-play-icon {
    width: 36px;
    height: 36px;
    margin-left: 5px;
}
.vdo-style-3 .vdo-info-wrap {
    padding: 15px 5px 5px;
    text-align: center;
}
.vdo-style-3 .vdo-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}
.vdo-style-3 .vdo-description p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .vdo-thumbnail-wrap img { height: 180px; }
    .vdo-carousel-wrapper .slick-prev { left: 5px; }
    .vdo-carousel-wrapper .slick-next { right: 5px; }
}
