.section {
  margin-bottom: -2rem;
  padding: 0 5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #574937;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -1.5rem;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 10rem;
}

.testimonial {
  width: 102%;
  max-width: 900px; /* 👈 controls card width */
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(87, 73, 55, 0.2);
  position: relative;
  animation: fadeIn 0.8s ease-out;
}


.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #9d655f;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
}


.testimonial-text {
  /* color: #8c8c82; */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.testimonial-author {
  font-family: 'Marcellus', serif;
  color: #627045;
  font-weight: 600;
  text-align: right;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial {
    width: 83%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 0 1rem;
  }

  .testimonial {
    padding: 2rem;
  }
}
@media (max-width: 400px) {
  .testimonial {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .testimonial {
    padding: 1.5rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

