/** Shopify CDN: Minification failed

Line 158:10 Unexpected "{"
Line 158:19 Expected ":"
Line 159:14 Expected identifier but found whitespace
Line 159:16 Unexpected "{"
Line 159:25 Expected ":"
Line 159:76 Expected ":"
Line 160:17 Expected identifier but found whitespace
Line 160:19 Unexpected "{"
Line 160:28 Expected ":"
Line 160:82 Expected ":"
... and 10 more hidden warnings

**/
.testimonials {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.testimonials__heading {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.testimonials__subheading {
  text-align: center;
  font-size: 1.125rem;
  color: #666;
  margin: 0 auto 3rem;
  max-width: 600px;
}

.testimonials__grid {
  display: grid;
  gap: var(--card-gap, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Topo background layer */
.testimonial-card__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--topo-background-url, none);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f8f8f8;
  opacity: var(--topo-opacity, 0.15);
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Card content */
.testimonial-card__content {
  position: relative;
  z-index: 1;
  padding: var(--card-padding, 2rem);
  background: rgba(255, 255, 255, 0.7);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Large opening quote mark */
.testimonial-card__quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
}

/* Quote text */
.testimonial-card__quote {
  font-size: var(--quote-font-size, 1.125rem);
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  flex-grow: 1;
}

/* Attribution */
.testimonial-card__attribution {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Context */
.testimonial-card__context {
  font-size: 0.875rem;
  color: #666;
  margin: 0.5rem 0 0 0;
  font-style: italic;
}

/* Tablet adjustments */
@media screen and (min-width: 750px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop adjustments */
@media screen and (min-width: 990px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile optimization */
@media screen and (max-width: 749px) {
  .testimonials {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonials__heading {
    margin-bottom: 0.75rem;
  }

  .testimonials__subheading {
    margin-bottom: 2rem;
  }

  .testimonials__grid {
    gap: calc(var(--card-gap, 2rem) * 0.75);
  }
}

/* Dynamic padding from settings */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}