.testimonialsPage {
  max-width: 1280px;
  width: 90%;
  padding-top: 70px;
  margin: 0 auto;
}
.testimonialsGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 32px auto;
}
.testimonialCard {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-divider-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: none;
  cursor: default;
  max-width: 500px;
  width: calc(50% - 16px);
}
.testimonialCard:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: default;
}
.testimonialCard.hidden-testimonial {
  display: none;
}
.testimonialCard.featured {
  width: 100%;
  max-width: 1000px;
}
.testimonialCard h2 {
  font-size: 24px;
  color: var(--text-color-dark);
  margin: 0 0 4px 0;
  padding: 0;
  border: none;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.sourceContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stars {
  color: #ffd700;
  font-size: 20px;
}
.rating-text {
  color: var(--text-color);
  font-size: 14px;
}
.testimonialContent {
  color: var(--text-color);
  flex-grow: 1;
}
.testimonialContent p {
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-style: italic;
}
.testimonialContent ul {
  margin: 0;
  padding-left: 20px;
}
.testimonialContent li {
  margin: 8px 0;
  line-height: 1.4;
}
.testimonialHighlights {
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}
.testimonialHighlights strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text-color-dark);
}
.testimonialFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border-divider-color);
  margin-top: auto;
}
.reviewerInfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviewerInfo strong {
  font-size: 16px;
  color: var(--text-color-dark);
}
.reviewerInfo span {
  font-size: 13px;
  color: var(--text-color);
}
.sourceBadge {
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
}
.ctaSection {
  text-align: center;
  margin: 80px auto 60px auto;
  max-width: 700px;
}
.ctaSection h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-color-dark);
}
.ctaSection .btn {
  padding: 16px 32px;
}
.btn,
.btn-xl,
.btn-orange {
  cursor: pointer;
}
@media (max-width: 768px) {
  .testimonialsGrid {
    gap: 20px;
  }
  .testimonialCard {
    padding: 24px;
    gap: 12px;
    width: 100%;
  }
  .ctaSection {
    margin: 60px auto;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .testimonialCard {
    padding: 20px;
  }
  .ctaSection h2 {
    font-size: 24px;
  }
}