/** Shopify CDN: Minification failed

Line 67:0 Unexpected "<"
Line 143:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-container h2 {
  margin-bottom: 30px;
}

.image-slider {
  display: flex;
  gap: 20px;
}

.image-slide {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.image-slide:hover {
  transform: scale(1.05);
}

.image-link {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .image-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-slide {
    flex: 0 0 90%;
    scroll-snap-align: center;
  }

  .image-slider::-webkit-scrollbar {
    display: none;
  }

  .image-slide:hover {
    transform: none;
  }
}
<style>
  .main-section {
    max-width: 1440px;
  }
  
  .homepage-grid-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .homepage-grid-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }

  .homepage-grid-block {
    flex: 1 1 calc(33.333% - 20px);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 0;
    min-width: 280px;
    aspect-ratio: 3 / 2;
  }

.homepage-grid-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  font-size: 16px;
  background-color: #FAC827;
  color: #262626;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  z-index: 2;
}

  .homepage-grid-button:hover {
    background-color: #f5dd90;
    color: #262626;
  }


  @media screen and (max-width: 991px) {
    .homepage-grid-block {
      flex: 1 1 calc(50% - 20px);
    }
  }

  @media screen and (max-width: 600px) {
    .homepage-grid-block {
    flex: 1 1 calc(50% - 10px);
    background-position: top center;
   
  }
    .homepage-grid-button {
    padding: 4px 10px;
    font-size: 16px;
  }
      .homepage-grid-flex {
    
    gap: 20px;
  }
  }
</style>