.los-testimonials {
    padding: 80px 0;
    background: var(--los-purple-900);
}

.los-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.los-testimonial {
    background: var(--los-purple-card);
    border-radius: 20px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.los-testimonial__heading {
    font-family: var(--los-font-body);
    font-weight: 700;
    text-transform: none;
    color: #fff;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0;
}

.los-testimonial__body {
    color: var(--los-text-muted-2);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.los-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 4px;
}

.los-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--los-orange-2) 0%, var(--los-orange) 100%);
    color: #fff;
    font-family: var(--los-font-display);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.los-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.los-testimonial__name {
    color: #fff;
    font-family: var(--los-font-display);
    font-size: 16px;
    letter-spacing: 0.3px;
}

.los-testimonial__role {
    color: var(--los-text-muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .los-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .los-testimonials {
        padding: 56px 0;
    }
}
