
.testimonials-section {
    background-color: var(--color-background-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.testimonial-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card .author {
    font-weight: 700;
    margin-top: 1.5rem;
    display: block;
}
