/* === Full Page Testimonials (testimonials.php) === */
.page-main {
  padding-top: 100px; /* Adjust depending on your header height */
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.testimonial-card blockquote {
  font-size: 1.1em;
  font-style: italic;
  color: #333;
}

.testimonial-card .author {
  margin-top: 10px;
  font-weight: bold;
  color: #2d4d3a;
}

/* === Homepage Slideshow with Three Testimonials Per Slide === */
.testimonial-duo-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 300px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
}

.testimonial-slide .testimonial-card {
  flex: 1;
  max-width: 360px;
}

/* === Responsive Fixes for Testimonials === */

/* Tablet Devices (≤1024px) */
@media (max-width: 1024px) {
  .testimonial-slide {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-slide .testimonial-card {
    max-width: 90%;
  }

  .testimonial-duo-container {
    padding: 0 20px;
  }

  .testimonial-list {
    gap: 16px;
    padding: 20px 15px;
  }

  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Mobile Devices (≤768px) */
@media (max-width: 768px) {
  .testimonial-slide {
    gap: 16px;
  }

  .testimonial-slide .testimonial-card,
  .testimonial-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .testimonial-card blockquote {
    font-size: 1em;
  }

  .testimonial-card .author {
    font-size: 0.95em;
  }

  .testimonial-duo-container {
    padding: 0 10px;
  }
}
