.testimonials {
    width: 100%;
    min-height: 100vh;
    font-family: 'PPMori';
    color: var(--text-color);
}

.testimonials .headline {
    margin-bottom: 24px;
}

.testimonials p.topBar {
    font-family: 'JetBrains Mono', sans-serif;
    padding-top: 60px;
    padding-bottom: 6px;
    width: 85%;
    margin: auto;
    border-bottom: 1px solid;
    text-transform: uppercase;
}

.testimonials .say {
    margin-left: auto !important;
}

.testimonials .peoplesSay {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 85%;
    margin: auto;
    padding-bottom: 40px;
}

.testimonials .peoplesSay .singleSay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--surface-border);
    background-color: var(--surface-bg);
    padding: 18px;
    width: 100%;
    border-radius: 10px;
}

.testimonials .humanImage img {
    width: clamp(72px, 16vw, 110px);
    height: clamp(72px, 16vw, 110px);
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 1px solid var(--surface-border);
}

.testimonials .review {
    width: 100%;
}

.humanReview {
    max-height: 200px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.humanReview p {
    line-height: 1.55;
    font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.humanName {
    text-align: right;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gradient-1);
}




@media screen and (min-width: 640px) {
    .testimonials .peoplesSay .singleSay {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .testimonials .humanImage img {
        width: 110px;
        height: 110px;
    }
}

@media screen and (min-width: 1024px) {
    .testimonials .peoplesSay {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .testimonials .peoplesSay .singleSay {
        height: 100%;
    }

    .testimonials .humanImage img {
        width: 132px;
        height: 132px;
    }
}