/* Section 9 — Testimonials */
.ap-testimonials { background: var(--ap-bg); }
.ap-testimonials__grid { margin-top: 1rem; align-items: start; }
.ap-testimonial {
  position: relative; background: #fff; border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius-lg); padding: 3rem 2.25rem 2.25rem;
  box-shadow: var(--ap-shadow); margin: 0; height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--ap-dur) var(--ap-ease), box-shadow var(--ap-dur) var(--ap-ease);
}
.ap-testimonial:hover { transform: translateY(-5px); box-shadow: var(--ap-shadow-lg); }
.ap-testimonial__mark {
  position: absolute; top: 0.9rem; left: 1.75rem;
  font-family: var(--ap-font-head); font-weight: 700; font-size: 6rem; line-height: 1;
  color: var(--ap-forest-050); pointer-events: none;
}
.ap-testimonial__stars { position: relative; display: flex; gap: 3px; margin-bottom: 1.1rem; color: var(--ap-purple); }
.ap-testimonial__stars svg { width: 19px; height: 19px; fill: currentColor; }
.ap-testimonial blockquote {
  position: relative; margin: 0 0 1.75rem; padding: 0; border: 0;
  font-size: 1.15rem; line-height: 1.7; color: var(--ap-charcoal); flex: 1;
}
.ap-testimonial__person { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.25rem; border-top: 1px solid var(--ap-border); }
.ap-testimonial__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.ap-testimonial__person strong { display: block; font-family: var(--ap-font-head); color: var(--ap-charcoal); }
.ap-testimonial__person em { font-style: normal; font-size: 0.9rem; color: var(--ap-text-2); }
.ap-testimonials__disclaimer { text-align: center; margin-top: 2rem; font-size: 0.9rem; color: var(--ap-text-2); }
