/** Shopify CDN: Minification failed

Line 15:10 Unexpected "{"
Line 15:19 Expected ":"
Line 16:14 Expected identifier but found whitespace
Line 16:16 Unexpected "{"
Line 16:25 Expected ":"
Line 16:51 Expected ":"
Line 17:17 Expected identifier but found whitespace
Line 17:19 Unexpected "{"
Line 17:28 Expected ":"
Line 17:57 Expected ":"

**/
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Desktop: 5 per row */
@media screen and (min-width: 990px) {
  .video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Video card */
.video-card {
  position: relative;
  width: 100%;
}

.video-card iframe,
.video-card video {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 16/9; */
  aspect-ratio: 9/16;
  border-radius: 8px;
}