.testimonials {
    width: 100%;

    padding: 3.5% 5% 4.5%;

    background: #fffaf3;
}

.testimonials__title {
    margin: 0 0 2.5% 0;

    text-align: center;
    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: #566b56;

    font-size: clamp(1rem, 1.55vw, 1.65rem);
    font-weight: 600;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2%;
}

.testimonial {
    padding: 6%;

    background: #f8f1e8;

    border-radius: 0.4em;
}

.testimonial__quote {
    margin: 0 0 1.2rem 0;

    color: #3f463f;

    font-size: clamp(0.8rem, 0.95vw, 1.05rem);
    line-height: 1.7;
}

.testimonial__author {
    margin: 0;

    color: #bc7891;

    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
}

@media (max-width: 800px) {

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