/* Testimonials Section */
.testimonials {
  background: var(--surface);
  padding: 60px 40px;
  text-align: center;
}

.testimonials .container {
  width: 100%;
}

.testimonials h2 {
  font-size: clamp(28px, 6vw, 48px);
  color: #045d56;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #045D56;
  color: #EAEAEA;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.1rem;
}

.testimonial-card.clickable {
  cursor: pointer;
}

.testimonial-card .icon {
  width: 24px;
  height: 24px;
  align-self: flex-end;
  margin-top: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.author-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .testimonial-card {
    font-size: 1rem;
    padding: 16px;
  }
}

