/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.reviews {
    position: relative;
}

.reviews .row {
    gap: 32px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.review {
    padding: 32px;
    position: relative;
    width: 100%;
    height: 100%;    
    overflow: hidden;
    border-radius: 20px;
    background: var(--light-blue);
}

.review--light-blue {
    background: var(--light-blue);
}

.review--light-purple {
    background: var(--light-purple);
}

.review__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 6px;
    font-size: 20px;
    line-height: 1em;
    color: var(--blue);
    margin-bottom: 3px;
}

.review__stars i {
    font-size: 20px;
    font-family: 'mini-link-icons' !important;
    line-height: 1em;
}

.review--light-purple .review__stars {
    color: var(--primary-color);
}

.review__content h2{
    font-size: 24px;
}

.review__content h2:last-child {
    margin-bottom: 0;
}

.review__top {
    margin-bottom: 32px;
}

.review__author {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--black);
    display: block;
}

.review__info p {
    color: var(--text-color);
    font-size: 16px;
}

@media (min-width: 768px) {
    .review {
        min-height: auto;
    }

    .review__stars {
        margin-bottom: 7px;
    }

    .review__content h2{
        font-size: 30px;
    }
}


@media (min-width: 1200px) {

    .review {
        padding: 64px;
        min-height: 254px;
    }    

    .review__stars {
        margin-bottom: 11px;
    }

    .review__content h2{
        font-size: 30px;
    }

    .review__author,
     .review__info p {
        font-size: 18px;
    }
}