.pf-testimonials-wrapper {
  width: 100%;
}

.pf-testimonials-heading-wrap {
  margin-bottom: 32px;
}

.pf-testimonials-heading {
  margin: 0;
}

/* Swiper / cards */

.pf-testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.pf-testimonials-swiper .swiper-slide {
  display: flex;
}

.pf-testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
}

.pf-testimonial-rating {
  margin-bottom: 16px;
}

.pf-testimonial-rating i {
  font-size: 16px;
  margin-right: 4px;
}

.pf-testimonial-content {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* bottom row: name + quote icon */

.pf-testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf-testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.pf-testimonial-designation {
  font-size: 12px;
  opacity: 0.8;
}

.pf-quote-icon {
  font-size: 40px;
  line-height: 1;
  opacity: 0.15;
}

/* optional: style bullets */
.pf-testimonials-wrapper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c6ded2;
  opacity: 1;
}
.pf-testimonials-wrapper .swiper-pagination-bullet-active {
  background: #0c7a4a;
}


/* --- Testimonial content clamp --- */
.pf-testimonial-content-wrap{
  margin-bottom: 24px;
}

/* collapsed state */
.pf-testimonial-content.pf-clamp{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;     /* ✅ adjust lines (4-6 recommended) */
  overflow: hidden;
}

/* expanded state */
.pf-testimonial-card.is-expanded .pf-testimonial-content{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Read more button */
.pf-read-more{
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  color: #0c7a4a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-read-more:focus{
  outline: none;
}

/* hide read more if not needed (JS will toggle) */
.pf-read-more.is-hidden{
  display: none;
}

