/** Shopify CDN: Minification failed

Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 45:9 Expected identifier but found whitespace
Line 45:11 Unexpected "{"
Line 45:20 Expected ":"
Line 45:47 Expected ":"
Line 57:14 Expected identifier but found whitespace
Line 57:16 Expected identifier but found "%"
Line 57:53 Expected identifier but found "%"
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
.video-showcase {
  width: 100%;
  background-color: {{ section.settings.background_color }};
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.video-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item__video {
  width: 100%;
  height: {{ section.settings.video_height }}px;
  object-fit: cover;
}

@supports not (object-fit: cover) {
  .video-item__video {
    width: 100%;
    height: auto;
  }
}

.video-item p {
  font-weight: {% if block.settings.bold_text %}bold{% else %}normal{% endif %};
  font-style: {{ block.settings.text_style }};
  font-size: {{ block.settings.font_size }}px;
  text-align: {{ block.settings.text_align }};
}