.reviews-section {
    width: 100%;
    margin: 0 auto 50px;
    max-width: 1190px;
    padding: 0 15px;
}

.reviews-section-title {
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 45px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(45, 45, 45, 1);
}

.reviews-container {
    display: flex;
    gap: 10px;
}

.review-card {
    display: grid;
    background-color: #FFAA41;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-width: 245px;
    grid-template-rows: 30px 12fr 25px;
    row-gap: 25px;
    min-height: 196px;
}

.review-name {
    font-size: 20px;
    font-weight: 400;
    color: rgba(45, 45, 45, 1);
    margin-right: auto;
}

.review-text {
    color: rgba(45, 45, 45, 1);
    font-size: 14px;
    text-align: left;
}

.review-date {
    color: rgba(45, 45, 45, 0.7);
    font-size: 16px;
}

@media(min-width:1440px) {
    .reviews-section-title {
        margin-bottom: 100px;
    }

    .reviews-section {
        margin-bottom: 120px;
    }

    .section-title {
        margin-bottom: 100px;
    }

    .review-card {
        row-gap: 30px;
        min-width: 390px;
        min-height: 270px;
    }

    .review-name {
        font-size: 24px;
    }

    .review-text {
        font-size: 20px;
    }

    .review-date {
        font-size: 20px;
    }
}