/** Shopify CDN: Minification failed

Line 64:4 Unexpected "{"
Line 64:5 Expected identifier but found "%"
Line 77:4 Unexpected "{"
Line 77:5 Expected identifier but found "%"
Line 81:4 Unexpected "{"
Line 81:5 Expected identifier but found "%"
Line 107:0 Unexpected "<"
Line 173:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.prd_gallery-section {
    background-color: #fff;
  }

  .gallery-section {
    background-color: #fff;
  }

  .gallery-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .gallery-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    background: #fff;
  }

  .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
  }

  .gallery-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #244E90;
    line-height: 1.4;
  }

  .gallery-description {
    font-size: 14px;
    margin-top: 5px;
    padding: 0 10px 10px;
  }

  /* Mobile: < 768px */
  @media (max-width: 767px) {
    {% if section.settings.swipe_on_mobile %}
      .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 0;
      }
      .gallery-item {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 85%;
        max-width: 350px;
      }
    {% else %}
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    {% endif %}
  }

  /* Tablet & Desktop: ≥ 768px */
  @media (min-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .gallery-section-title {
    text-align: center;
    font-size: 39px;
    font-weight: bold;
    color: #374151;
    line-height: normal;
  }

  .gallery-section-subheading {
    text-align: center;
    font-size: 30px;
    margin-top: 10px;
    color: #666;
    font-family: cursive;
    font-weight: bold;
  }
<style>
.cstms-story-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  margin: 2rem auto;
  max-width: 1200px;
  gap: 2rem;
}
.cstms-story-left, .cstms-story-right {
  flex: 1;
  min-width: 300px;
}
.cstms-story-left h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cstms-story-left p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}
.cstms-testimonial-box {
  background: linear-gradient(to bottom right, #fef9e7, #e0f0ff);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cstms-testimonial-slider {
  overflow: hidden;
  position: relative;
}
.cstms-testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.5s ease;
}
.cstms-testimonial-slide.active {
  display: flex;
}
.cstms-testimonial-slide .icon {
  background: #2b6ff2;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cstms-testimonial-quote {
  font-style: italic;
  color: #444;
  margin-bottom: 0.75rem;
}
.cstms-testimonial-author {
  font-weight: 600;
  color: #222;
}
</style>