/** Shopify CDN: Minification failed

Line 57:8 Expected identifier but found whitespace
Line 57:10 Unexpected "{"
Line 57:19 Expected ":"

**/
/* START_SECTION:testimonial-collage (INDEX:146) */
.testimonials-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 2% 0;
  padding: 2%;
  overflow: hidden;
  background: #e6e6e6;
  border-radius: 15px;
  box-sizing: border-box;
}

.testimonial-block {
  position: absolute;
  width: 22%;
  padding: 1.2%;
  border-radius: 2vw;
  border: 0.15vw solid #d3d3d7;
  background-color: white;
  box-shadow: 0.3vw 0.3vw 0.8vw rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  z-index: 1;
  font-size: 16px;
  line-height: 1.25;
  box-sizing: border-box;
}

.testimonial-block:hover {
  transform: scale(1.08);
  box-shadow: 0 0.8vw 2vw rgba(0,0,0,0.15);
  z-index: 100;
}

.center-testimonial {
  z-index: 10;
}
.center-testimonial:hover {
  z-index: 100;
}

.stars {
  color: #ffb400;
  font-size: 1.1vw;
  margin-bottom: 0.4vw;
}

.testimonial-text {
  margin: 10px 0 0 0;
  color: {{ section.settings.text_color }};
  font-weight: 500;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  float: left;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .testimonial-block {
    width: 28%;
    font-size: 1.3vw;
  }
}
/* END_SECTION:testimonial-collage */
