.testimonials {
    padding: 56px 16px;
    background-color: #121212;
}

.testimonials-heading {
    font-size: 24px;
    font-weight: 600;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 44px;
}

.testimonials-grid {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background-color: black;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.testimonial-stars img {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 26px;
    color: #E6E6E6;
    flex-grow: 1;
}

.testimonial-company {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .testimonials {
        padding: 104px 40px;
    }

    .testimonials-heading {
        font-size: 36px;
        margin-bottom: 52px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
