/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-image-text-gallery-section {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.custom-image-text-gallery-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 749px) {
  .custom-image-text-gallery-container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.custom-section-top-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  object-fit: contain;
}

.custom-section-text {
  max-width: 1200px;
  margin: 0 auto 10px auto;
  line-height: 1.5;
  text-align: center;
  white-space: pre-wrap;
  color: var(--color-text);
  font-family: var(--font-body);
}

@media screen and (max-width: 749px) {
  .custom-section-text.hide-on-mobile {
    display: none !important;
  }
}

.custom-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 10px auto;
  padding: 0 15px;
}

@media screen and (max-width: 749px) {
  .custom-gallery {
    gap: 10px;
  }
}

.custom-gallery-item {
  flex: 1 1 0;
  max-width: 180px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 749px) {
  .custom-gallery-item {
    max-width: 120px;
  }
}

.custom-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.custom-gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 749px) {
  .gallery-title.hide-on-mobile {
    display: none !important;
  }
}