/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 71:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .youtube-section h2 {
    margin-bottom: 10px;
  }

  .youtube-section p.subheading {
    margin-bottom: 30px;
  }

  /* Grid layout */
  .youtube-section .video-grid {
    display: grid;
    gap: 20px;
  }
  .youtube-section .video-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .youtube-section .video-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .youtube-section .video-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Column layout */
  .youtube-section .video-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .youtube-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .youtube-section .video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
  }

  /* Responsive */
  @media screen and (max-width: 768px) {
    .youtube-section .video-grid {
      grid-template-columns: 1fr !important;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .youtube-section .video-grid.columns-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    .youtube-section .video-grid.columns-3 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
</style>