/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 17:8 Expected identifier but found whitespace
Line 17:10 Unexpected "{"
Line 17:19 Expected ":"
Line 17:55 Expected ":"
Line 34:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .video-columns-grid {
    display: grid;
    gap: {{ section.settings.padding | default: 20 }}px;
  }
  .columns-1 { grid-template-columns: 1fr; }
  .columns-2 { grid-template-columns: 1fr 1fr; }
  .columns-3 { grid-template-columns: 1fr 1fr 1fr; }

  .video-wrapper iframe,
  .video-wrapper video {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
  }

  .text-left { text-align: left; }
  .text-center { text-align: center; }
  .text-right { text-align: right; }
</style>