/* ==========================================
   PREFAB: Testimonial Carousel
   Velemeny kartyak automatikus lepessel
   ========================================== */

.pf-testimonials {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.pf-testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-testimonial-card {
  flex: 0 0 100%;
  padding: 40px;
  text-align: center;
}

/* Idezojelikon */
.pf-testimonial-card::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.2;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.pf-testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  font-style: italic;
}

.pf-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pf-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.pf-testimonial-meta {
  text-align: left;
}

.pf-testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.pf-testimonial-role {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}

/* Stars */
.pf-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: #f5a623;
}

/* Navigation dots */
.pf-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pf-testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.pf-testimonial-dot.active {
  background: currentColor;
  transform: scale(1.3);
}

/* Vilagos valtozat */
.pf-testimonials--light .pf-testimonial-dot {
  background: rgba(0,0,0,0.15);
}

.pf-testimonials--light .pf-testimonial-dot.active {
  background: #1e1d14;
}
