.testimonial-card div {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Base (Desktop / Tablet) */
.testimonialSwiper {
  height: 300px;
}

.testimonial-card {
  min-height: 200px; /* allows growth if needed */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  width: 100%;
  box-sizing: border-box;
  padding: 0 30px;
}

/* Avatar */
.avatar-icon {
  font-size: 42px;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* Name */
.testimonial-card h4 {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 600;
}

/* Text */
.testimonial-card p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}

/* Stars */
.stars {
  margin-top: 6px;
  color: gold;
}

/* Arrows (Desktop) */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
}

/* ========================= */
/* 📱 MOBILE FIXES */
/* ========================= */
@media (max-width: 768px) {
  .testimonialSwiper {
    height: auto; /* KEY FIX */
  }

  .testimonial-card {
    min-height: auto;
    padding: 20px 40px;
  }

  .avatar-icon {
    font-size: 32px;
  }

  .testimonial-card h4 {
    font-size: 15px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  /* Smaller arrows */
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 5px;
  }
}

.testimonial-preview {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #0572f7;
  text-decoration: underline;
  cursor: pointer;
}

.read-more-btn:hover {
  color: chocolate;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
