/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:59 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:65 Expected ":"

**/


/* CSS from section stylesheet tags */
.vello-support-videos {
  padding-top: {{ section.settings.section_padding_top }}px;
  padding-bottom: {{ section.settings.section_padding_bottom }}px;
  margin-top: 150px;
}

a {
  text-decoration: underline;
}

.support-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.support-subheading {
  font-size: 1.25rem;
  margin: 0 0 2.5rem 0;
  color: rgba(var(--color-foreground), 0.75);
}

.support-subheading p {
  margin: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-wrapper {
  position: relative;
  padding: 56.25% 0 0 0;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid black;
}

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

.video-title {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  color: rgb(var(--color-foreground));
}

/* Tablet */
@media screen and (max-width: 989px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .support-heading {
    font-size: 2rem;
  }
  
  .support-subheading {
    font-size: 1.125rem;
  }
  
  .video-title {
    font-size: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .support-heading {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .support-subheading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .video-title {
    font-size: 0.9375rem;
  }
}