.whywe {
    padding-block: 44px;
}

.whywe-text {
    margin-top: 0;
    margin-bottom: 22px;
    font-family: 'PerepelMain';
    font-size: clamp(32px, 10.5vw, 60px);
    font-weight: 100;
    width: 85%;
}

.whywe-cols {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;
}

.whywe-row {
    width: 100%;
}

.whywe-row img {
    width: 100%;

    display: block;

    border-radius: 7px;

    aspect-ratio: 293 / 195;
}

.whywe-row p {
    width: 100%;

    margin-top: 20px;

    font-size: clamp(14px, 2vw, 18px);

    line-height: 1.5;
}

@media (max-width: 640px) {
    .whywe-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whywe-row p {
        font-size: clamp(10px, 3.2vw, 17px);
    }

    .whywe-text {
        width: 85%;
    }
}