/** Shopify CDN: Minification failed

Line 12:12 Expected identifier but found whitespace
Line 12:14 Unexpected "{"
Line 12:23 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-videos-section {
  max-width: {{ section.settings.max_width }};
  margin: 0 auto;
  padding: 40px 20px;
}

.custom-videos-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
}

.custom-videos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.custom-video-item {
  box-sizing: border-box;
}

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

.custom-video-item .product-info {
  text-align: center;
  margin-top: 10px;
}

.custom-video-item .product-info .product-title {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.custom-video-item .product-info .button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .custom-video-item {
    flex: 1 1 100% !important;
  }
}