.testimonials-section { background: var(--color-bg); }
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.review-stars { display: flex; gap: 3px; font-size: 16px; }
.review-text { font-size: 14.5px; color: var(--color-text); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 4px 10px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12.5px; color: var(--color-text-light); }

.swiper-pagination { position: relative; margin-top: 24px; }
.swiper-pagination-bullet-active { background: var(--color-primary) !important; }
