.video-slider-wrapper {
    background: #d36035;
    border-radius: 30px;
    padding: 60px;
    max-width: 100%;
    margin: auto;
}

.video-slider-title {
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.video-main {
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-main iframe {
    width: 100%;
    height: 100%;
}

.video-thumbs-container {
    position: relative;
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.video-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.video-thumb {
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s;
}

.video-thumb:hover {
    transform: scale(1.03);
}

.video-thumb img {
    width: 100%;
    display: block;
}

.thumb-arrow {
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    font-size: 36px;
    width: 40px;
    height: 60px;
    cursor: pointer;
}

.thumb-arrow.left { margin-right: 10px; }
.thumb-arrow.right { margin-left: 10px; }



@media (min-width:1438px) {

}
@media all and (max-width:1439px) and (min-width:769px) {
.video-slider-wrapper {
    padding: 40px 130px;
}
}
@media (max-width:768px) and (min-width:319px) {
.video-slider-wrapper {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 20px 20px;
    max-width: 100%;
    margin: auto;
}
}
@media (max-width:320px) {

}
