.testimonials-section {
    background: #fbfaf7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.testimonial-card.featured {
    background: var(--color-text);
    color: #fff;
    transform: translateY(-18px);
}

.testimonial-card p {
    font-size: 18px;
    color: var(--color-muted);
}

.testimonial-card.featured p {
    color: rgba(255,255,255,.76);
}

.testimonial-author {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}

.testimonial-card.featured .testimonial-author {
    border-color: rgba(255,255,255,.16);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 6px;
}

.testimonial-author span {
    color: var(--color-muted);
    font-size: 14px;
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255,255,255,.6);
}