/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 88:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.video-carousel-wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.video-carousel-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.video-carousel-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}

.video-carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.video-carousel-wrapper.full .video-carousel-container {
  max-width: 100%;
}

.video-carousel-wrapper.boxed .video-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  flex: 0 0 calc(33.33% - 20px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
  width: 100%;
  height: 240px;
  border: none;
}

.video-card-title {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .video-card {
    flex: 0 0 calc(100% - 20px);
  }
}
</style>