.testimonials-grid-2e1d3ec7 {
    display: grid;
    gap: 20px;
}
.testimonials-grid-2e1d3ec7.cols-1 { grid-template-columns: 1fr; }
.testimonials-grid-2e1d3ec7.cols-2 { grid-template-columns: repeat(2, 1fr); }
.testimonials-grid-2e1d3ec7.cols-3 { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid-2e1d3ec7.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .testimonials-grid-2e1d3ec7.cols-3,
    .testimonials-grid-2e1d3ec7.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testimonials-grid-2e1d3ec7 {
        grid-template-columns: 1fr !important;
    }
}

.testimonial-card-2e1d3ec7 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.testimonial-img-wrapper-2e1d3ec7 {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.testimonial-img-wrapper-2e1d3ec7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-2e1d3ec7 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

.testimonial-name-2e1d3ec7 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: #222;
}

.testimonial-role-2e1d3ec7 {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}