/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 107:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.video-section {
  padding: 20px;
}

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

.video-item {
  flex: 1 1 calc(50% - 20px); /* Two videos per row */
  max-width: calc(50% - 20px);
  box-sizing: border-box;
  text-align: center;
  overflow: visible;
  position: relative;
}

.video-title {
  position: relative;
  z-index: 99;
  top: -100%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: left;
}

.video-item iframe,
.video-item video {
  width: 100%;
  height: auto;
}

.video-item.video-aspect-full iframe,
.video-item.video-aspect-full video {
  width: 100%;
  height: auto;
}

.video-item.video-aspect-4-3::before,
.video-item.video-aspect-1-1::before,
.video-item.video-aspect-16-9::before,
.video-item.video-aspect-9-16::before {
  content: "";
  display: block;
  padding-top: 0;
}

.video-item.video-aspect-4-3::before {
  padding-top: 75%; /* 4:3 aspect ratio */
}

.video-item.video-aspect-1-1::before {
  padding-top: 100%; /* 1:1 aspect ratio */
}

.video-item.video-aspect-16-9::before {
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-item.video-aspect-9-16::before {
  padding-top: 177.78%; /* 9:16 aspect ratio */
}

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

@media only screen and (max-width: 767px) {
  .video-item {
    flex: 1 1 100%; /* One video per row on mobile */
    max-width: 100%;
  }

  .video-item:nth-child(n+2) {
    margin-top: 10rem; /* Add margin-top starting from second video on mobile */
  }

  .video-title {
    font-size: calc(3rem * 0.7) !important; /* Make video title 30% smaller on mobile */
  }

  .video-section {
    padding: 0 3.5rem !important; /* Padding for non-full width video section */
  }
}
</style>