.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px;
}

.testimonial-box {
  box-sizing: border-box;
  width: auto;
  margin: 0 0 20px;
  vertical-align: top;
  background: #fff;
  border-radius: 3px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.client-name {
  font-weight: 600;
}

.excerpt.clipped {
  max-height: 6.5em;
  overflow: hidden;
  position: relative;
}

.excerpt.expanded {
  max-height: none;
}

.read-more {
  margin-top: 10px;
  background: none;
  border: none;
  color: #257f93;
  cursor: pointer;
  padding: 0;
  font-weight: bold;
}

.testimonial-stars {
  margin-top: 15px;
  text-align: center;
}

.testimonial-stars img {
  width: 100px;
}