.emd-testimonials {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.emd-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.emd-testimonials-label {
    color: #888;
    font-size: 14px;
    margin: 0 0 10px;
    font-style: italic;
}

.emd-testimonials-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.emd-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.emd-testimonial-card {
    display: flex;
    flex-direction: column;
}

.emd-testimonial-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 4px 16px;
}

.emd-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.emd-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
}

.emd-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.emd-testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.emd-testimonial-stars {
    display: flex;
    gap: 2px;
}

.emd-star {
    font-size: 20px;
    color: #ddd;
    line-height: 1;
}

.emd-star.filled {
    color: #f5a623;
}

.emd-testimonial-body {
    background: #FEF3DC;
    padding: 24px;
    border-radius: 10px;
    position: relative;
    flex: 1;
}

.emd-testimonial-body::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 28px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FEF3DC;
}

.emd-testimonial-body p {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 900px) {
    .emd-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .emd-testimonials-title {
        font-size: 28px;
    }
}
