.testimonials-sec { padding: clamp(40px, 8vh, 80px) 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.testimonial {
    background: var(--bg-card, #fff);
    border: 1px solid var(--rule-2, rgba(0,0,0,0.08));
    border-radius: 12px;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.testimonial-logo {
    max-height: 24px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    opacity: 0.7;
}
.testimonial blockquote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-primary, #111);
    font-style: italic;
}
.testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px dashed var(--rule-2, rgba(0,0,0,0.08));
    padding-top: 12px;
    margin-top: auto;
}
.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author { font-size: 0.88rem; font-weight: 600; }
.testimonial-role { font-size: 0.78rem; color: var(--muted, #666); margin-top: 2px; }
