/** Shopify CDN: Minification failed

Line 69:19 Expected identifier but found whitespace
Line 69:21 Unexpected "{"
Line 69:30 Expected ":"
Line 70:8 Expected identifier but found whitespace
Line 70:10 Unexpected "{"
Line 70:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.video-carousel-wrapper {
  overflow: hidden;
}

.video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px;
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-slide video {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.video-slide h3 {
  font-size: 16px;
  margin: 10px 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.2em;
  line-height: 1.6em;
}

.video-slide a.title-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.video-slide button {
  background-color: {{ section.settings.btn_bg }};
  color: {{ section.settings.btn_color }};
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.video-slide button:hover {
  opacity: 0.9;
}