/** Shopify CDN: Minification failed

Line 24:10 Unexpected "{"
Line 24:19 Expected ":"
Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 25:51 Expected ":"
Line 26:17 Expected identifier but found whitespace
Line 26:19 Unexpected "{"
Line 26:28 Expected ":"
Line 26:57 Expected ":"

**/
.customer-gallery {
  --gallery-teal: #1a3a3a;
  --gallery-gold: #d4c4a0;
  --gallery-text: #2c2c2c;
  --gallery-text-light: #6b6b6b;
  --gallery-bg: #faf9f7;
  --gallery-radius: 4px;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* Header */
.customer-gallery__header {
  text-align: center;
  margin-bottom: 40px;
}

.customer-gallery__heading {
  font-family: var(--font-heading-family, inherit);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gallery-teal);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.customer-gallery__subheading {
  font-size: 15px;
  color: var(--gallery-text-light);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Grid */
.customer-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 959px) {
  .customer-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 599px) {
  .customer-gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Gallery Item */
.customer-gallery__item {
  display: flex;
  flex-direction: column;
}

/* Image Wrapper + Zoom */
.customer-gallery__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--gallery-radius);
  aspect-ratio: 1 / 1;
  background-color: var(--gallery-bg);
}

.customer-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.customer-gallery__image-wrapper:hover .customer-gallery__image {
  transform: scale(1.06);
}

/* Placeholder */
.customer-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gallery-bg);
}

.customer-gallery__placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

/* Attribution */
.customer-gallery__attribution {
  padding: 10px 2px 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.customer-gallery__made-by {
  color: var(--gallery-text-light);
  font-weight: 400;
}

.customer-gallery__name {
  color: var(--gallery-teal);
  font-weight: 500;
  margin-left: 3px;
}

.customer-gallery__project {
  color: var(--gallery-text-light);
  font-weight: 400;
  margin-left: 2px;
  font-style: italic;
}

/* Instagram CTA */
.customer-gallery__cta {
  margin-top: 44px;
  text-align: center;
}

.customer-gallery__cta-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.customer-gallery__cta-text {
  font-size: 15px;
  color: var(--gallery-text-light);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: italic;
}

.customer-gallery__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gallery-teal);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--gallery-gold);
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.customer-gallery__cta-link:hover {
  background-color: var(--gallery-teal);
  color: #ffffff;
  border-color: var(--gallery-teal);
}

.customer-gallery__instagram-icon {
  flex-shrink: 0;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .customer-gallery__image {
    transition: none;
  }
  .customer-gallery__cta-link {
    transition: none;
  }
}