.video-carousel {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
}

.video-container {
    display: flex;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 300px; /* Adjust the width as needed */
    flex: 0 0 auto;
    margin-right: 10px; /* Space between videos */
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 250px; /* Adjust the width for mobile devices */
    }
}
