/** Shopify CDN: Minification failed

Line 30:15 Unterminated string token

**/
/* Testimonials section overrides */
.testimonials-section .multicolumn-card {
  text-align: center;
  padding: 1rem;
}

.testimonials-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonials-card__quote {
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  text-align: center;
}

.testimonials-card__quote::before {
  content: """;
  font-size: 4rem;
  line-height: 1;
  color: rgba(var(--color-foreground), 0.3);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
}

.testimonials-card__customer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  justify-content: center;
  text-align: center;
}

.testimonials-card__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials-card__info {
  text-align: center;
}

.testimonials-card__info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
  text-align: center;
}

.testimonials-card__location {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonials-card__rating {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.testimonials-card__star {
  width: 16px;
  height: 16px;
  color: #ffa500;
}

/* Responsive adjustments - keep everything centered */
@media screen and (min-width: 750px) {
  .testimonials-card__customer {
    justify-content: center;
  }
  
  .testimonials-card__rating {
    justify-content: center;
  }
}

@media screen and (max-width: 749px) {
  .testimonials-card__customer {
    flex-direction: column;
    justify-content: center;
  }
  
  .testimonials-card__rating {
    justify-content: center;
  }
}