.testimonials {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.testimonials-slider {
  margin-top: 40px;
}
.testimonials-slider .slick-track {
  display: flex;
}
/* space BETWEEN slides */
.testimonials-slider {
  margin: 40px -12px 0; /* negative = compensate slide padding */
}

.testimonials-slide {
  padding: 0 12px; /* actual gap = 24px total */
}

.testimonials-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.testimonials-card {
  background: #fff;
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	position: relative;
}
/* little white triangle */
.testimonials-card::after {
  content: "";
  position: absolute;
  bottom: -10px; 
  left:10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}

.testimonials-copy, .testimonials-copy p {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 27px;
color: #242A32;
}

.testimonials-stars {
  color: var(--orange);
  font-size: 24px;
  margin-top: 16px;
}
.testimonials-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.testimonials-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-name {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 27px;
color: #050505;
}
.testimonials-arrows {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
}
@media (max-width: 767px) {

  .testimonials {
    padding: 50px 0;
  }

  .testimonials-card {
    min-height: auto;
  }


}
