/* Container bao ngoài để tránh xung đột với theme */
    #video-section-wrapper {
        max-width: 1160px; /* (376px * 3) + 20px gap */
        margin: 40px auto;
        padding: 0 10px;
    }

    /* Tạo khoảng cách 10px giữa các ảnh */
    #video-section-wrapper .custom-video-slider {
        margin: 0 -5px; /* Giảm lề ngoài của slider */
    }

    #video-section-wrapper .video-item {
        padding: 0 5px; /* Mỗi bên 5px cộng lại thành 10px ở giữa */
        outline: none;
    }

    /* Ép kích thước khung hiển thị 376x200 */
    #video-section-wrapper .img-container {
        width: 100%;
        height: 200px; /* Cố định chiều cao */
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        background: #000;
    }

    /* Xử lý ảnh gốc to/nhỏ đều về khít khung 376x200 */
    #video-section-wrapper .img-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover; /* Giữ tỷ lệ ảnh, cắt bớt phần thừa thay vì kéo méo */
        display: block;
    }

    /* Icon Play ở giữa (giống Screenshot_6.jpg) */
    #video-section-wrapper .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    #video-section-wrapper .play-icon:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Tùy chỉnh nút mũi tên và dấu chấm */
    .slick-prev, .slick-next {
        z-index: 10;
        width: 30px;
        height: 30px;
    }
    .slick-prev { left: -15px; }
    .slick-next { right: -15px; }

    /* Responsive Mobile */
    @media (max-width: 768px) {
        #video-section-wrapper .img-container {
            height: 180px; /* Chỉnh lại chiều cao phù hợp mobile */
        }
    }