.testimonial {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--purple-900);

    flex-basis: 246px;
}

.testimonial__user {
    display: flex;
    align-items: center;
}

.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial__user-info {
    margin-left: 24px;
}

.testimonial__name {
    font-size: 17px;
    font-weight: 700;
    line-height: 100%;
    color: var(--white);
}

.testimonial__status {
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    color: var(--pink);
}

.testimonial__quote {
    margin-top: 32px;
    max-height: 110px;

    font-size: 17px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.3px;
    color: var(--white);
}

@media (min-width: 768px) {
    .testimonial {
        padding: 32px 41.5px;

        flex-basis: 224px;
        max-height: 224px;
    }
}

@media (min-width: 1440px) {
    .testimonial {
        padding: 32px;
        height: calc(100% - 32px);
        flex: 1;
    }

    .testimonial:nth-child(2) {
        margin: auto 0;
    }
    
    .testimonial:nth-child(3) {
        margin-top: auto;
    }
}