/* TESTIMONIALS */
.testimonials {
  background: #f8f4ec;
  padding: 3.625rem 0 8.3rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.testimonials__title {
  text-align: center;
  font: var(--h2-font);
  margin-bottom: 3rem;
}
.testimonials__rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
}
.testimonials__row {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
  will-change: transform;
  position: relative;
}

.testimonial__card {
  flex: 0 0 34.5rem; /* 552px */
  background: #fff;
  border-radius: 1rem; /* 16px */
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06); /* 0 2px 8px */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.testimonial__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__name {
  font: var(--testi-title-font);
  color: var(--color-text);
  flex: 1;
}
.testimonial__rating {
  display: flex;
  gap: 0.25rem;
}
.star-icon {
  width: 1.125rem;
  height: 1.125rem;
}
.testimonial__line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}
.testimonial__review {
  font: var(--article-font);
  color: #444;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.testimonials__row.row-2 {
    display:none;
}