.testimonials {
    padding: 64px 24px;
    background: var(--color-dark);
}

.testimonials-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.testimonials-header {
    display: grid;
    gap: 16px;
    align-content: start;
}

.testimonials-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.testimonials-list {
    display: grid;
    gap: 18px;
}

.testimonial-card {
    display: grid;
    gap: 16px;
    padding: 16px 36px;
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
}

.testimonial-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.testimonial-author {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.author-name {
    font-weight: 800;
    font-size: 16px;
}

.author-stars {
    display: grid;
    grid-auto-flow: column;
    gap: 4px;
    justify-content: start;
}

.author-stars svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 24px;
    }

    .testimonials-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-header h2 {
        font-size: 26px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 16px 24px;
    }
}
