/** Shopify CDN: Minification failed

Line 41:14 Expected identifier but found whitespace
Line 41:16 Unexpected "{"
Line 41:25 Expected ":"
Line 41:52 Expected ":"
Line 42:10 Expected identifier but found whitespace
Line 42:12 Unexpected "{"
Line 42:21 Expected ":"
Line 43:15 Expected identifier but found whitespace
Line 43:17 Unexpected "{"
Line 43:26 Expected ":"

**/
.button, .btn {
    border-color: #000000;
    border-width: 3px;
    text-transform: uppercase;
}
.button:hover {
    background-color: #000000;
    color: #78ffd9;
}


blockquote.blockquote.h3 {
    font-size: 32px;
}
.blog-post-card__info .h3 {
    font-size: 24px;
}


  .youtube-video-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .youtube-video-gallery__heading {
    font-size: {{ section.settings.heading_size }}px;
    color: {{ section.settings.heading_color }};
    text-align: {{ section.settings.heading_alignment }};
    margin-bottom: 30px;
  }
  
  .youtube-video-gallery__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .youtube-video-gallery__video {
    flex: 1;
    min-width: 300px;
    max-width: 560px;
  }
  
  .youtube-video-gallery__video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .youtube-video-gallery__video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .youtube-video-gallery__video-title {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
  }

.accordion__content .youtube-video-gallery__container {
    margin-top: 23px;
}
.template-page-faqs .section.section-blends.section-full {
    padding-bottom: 0;
}
  @media (max-width: 768px) {
    .youtube-video-gallery__container {
      flex-direction: column;
    }
    
    .youtube-video-gallery__video {
      max-width: 100%;
    }
  }
@media only screen and (max-width: 600px) {
blockquote.blockquote.h3 {
    font-size: 22px;
}
}