.testimonial-main {
    display: flex;
    justify-content: center;
}

.testimonial-wall {
    width: 100vw;
    padding: 2rem 4rem;
    max-width: 1400px;
}

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

.testimonial-wall-header button {
    font-size: 20px;
    font-weight: 900;
}

.grid-masonry {
    margin-top: 3rem;
    column-count: 3;
    column-gap: 2rem;
}

.grid-masonry > * {
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    max-width: 1400px;
}

.testimonials-title {
    font-size: clamp(1.5rem, calc(1.1rem + 1.5vw), 2.2rem);
    position: relative;
}

.testimonials-title:after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--primary);
}

.testimonial-image {
    height: min(calc(15vw - 55px), 165px);
    width: min(calc(15vw - 55px), 165px);
}