/** Shopify CDN: Minification failed

Line 67:0 Unexpected "<"
Line 107:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.video-gallery-wrapper {
  width: 100%;
  padding: 20px 0;
}

.video-gallery-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-item {
  width: 300px;
  height: auto;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.video-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.video-collection-name {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}

.video-collection-name a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.video-collection-name a:hover {
  text-decoration: underline;
}
@media (max-width: 749px) {
  .video-gallery-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .video-item {
    width: calc(50% - 10px);
  }


  .video-item video {
    height: auto;
  }
}
<style>
.reels-video-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
}

.reels-video-wrapper::-webkit-scrollbar {
  display: none;
}

.reels-video-wrapper video {
  flex: 0 0 auto;
  width: 240px;
  height: 426px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* 📱 Mobile: one column and centered */
@media screen and (max-width: 749px) {
  .reels-video-wrapper {
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    gap: 30px;
  }

  .reels-video-wrapper video {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}
</style>