/** Shopify CDN: Minification failed

Line 15:18 Unexpected "{"
Line 15:27 Expected ":"
Line 15:34 Unexpected "{"
Line 56:16 Expected identifier but found whitespace
Line 56:18 Unexpected "{"
Line 56:27 Expected ":"
Line 56:53 Expected ":"

**/


/* CSS from section stylesheet tags */
.section.collage-{{ section.id }} {
  width: 100vw;
  padding: 0 1rem;
  box-sizing: border-box;
}

.collage-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  position: relative;
}

.collage-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.collage-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.collage-grid {
  display: grid;
  gap: 12px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  grid-template-rows: repeat(2, auto);
  padding: 8px 0;
}

.collage-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: {{ section.settings.card_radius }}px;
}

.collage-prev, .collage-next {
  background-color: white;
  color: #822E7C;
  border: 0px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

.collage-lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.collage-lightbox img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 749px) {
  .collage-grid {
    grid-auto-columns: minmax(50%, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.collage-section {
  padding: 50px 0;
}
.collage-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: flex-start;
}
.collage-text {
  flex: 1 1 50%;
  align-items: center;
}
.collage-text h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.collage-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.collage-media {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: auto;
  gap: 12px;
  max-width: 600px;
  margin: auto;
}
.grid-item img {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 0px;
  object-fit: cover;
}
.grid-item.large {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .collage-wrapper {
    flex-direction: column;
  }
  .collage-media {
    grid-template-columns: 1fr;
  }
}

/* CSS from snippet stylesheet tags */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }