/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 48:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.mosaic-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
      max-width: 1024px;
    margin: 0 auto;
}

.mosaic-grid-item {
  flex: 1 1 auto;
  max-width: calc(33.33% - 6px); /* 3 per row on desktop */
  box-sizing: border-box;
}

.mosaic-grid-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Mobile slider styles */
@media (max-width: 768px) {
  .mosaic-grid-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mosaic-grid-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    max-width: 80%;
  }
}
</style>