.page-review {
    background-color: #f5f3ef;
    color: #72685c;
    padding: 60px 0;
}

.page-review h2 {
    margin-top: 0;
}

.reviews {
    width: 100%;
    max-width: 710px;
}

.reviews__item {
    width: 100%;
    position: relative;
    background-color: #fff;
    border: 1px solid #d4d1ce;
    margin: 8px 0;
    padding: 15px;
}

.reviews__title {
    font-size: 18px;
}

.reviews__title--light {
    color: #b9b4ae;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
}

.reviews__body p {
    font-size: 14px;
    font-style: italic;
    line-height: 1.625em;
    margin-bottom: 15px;
}

.reviews__rating {
    font-family: 'Alegreya Sans SC', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #024873;
    display: flex;
    align-items: center;
    order: 2;
}

.reviews__rating span:last-child {
    color: #74a7c6;
    font-weight: 300;
}

.reviews__stars {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.stars-filled {
    position: absolute;
    left: 0;
    top: 0;
}

.reviews__star {
    width: 18px;
    height: 20px;
    display: inline-block;
    margin-right: 2px;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center center;
}

.reviews__star--filled {
    background-image: url('../img/icon-star-filled.svg');
}

.reviews__star--empty {
    background-image: url('../img/icon-star-empty.svg');
}

.reviews__meta {
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #b9b4ae;
    font-size: 14px;
    margin-bottom: 10px;
}

.reviews__reply {
    margin-top: 20px;
    border-left: 2px #d4d1ce solid;
    padding-left: 10px;
    line-height: 1.6em;
}

.reviews__reply .reviews__title {
    display: inline;
}

.reviews__load-more {
    text-align: center;
    margin-top: 30px;
}

.review-icon .fa-review {
    width: 26px;
    height: 20px;
    background: url('../img/icon-star.svg') no-repeat center center;
    background-size: 18px 20px;
    display: inline-block;
    transition: background .2s ease;
}

.review-icon:hover .fa-review {
    background: url('../img/icon-star-hover.svg') no-repeat center center;
    background-size: 18px 20px;
}

@media (min-width: 480px) {
    .reviews__item {
        padding: 40px 40px 30px;
    }

    .reviews__rating {
        font-size: 28px;
    }

    .reviews__meta {
        font-size: 16px;
    }

    .reviews__reply {
        margin-top: 30px;
        padding-left: 20px;
        line-height: 1.9em;
    }
}

@media (min-width: 600px) {
    .reviews__header {
        flex-flow: row wrap;
        margin-bottom: 15px;
    }

    .reviews__rating {
        order: 1;
    }

    .reviews__meta {
        margin-bottom: 0;
        order: 2;
        text-align: right;
    }

    .reviews__stars {
        margin-right: 20px;
        top: 0;
    }

    .reviews__star {
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
    }
}

@media (min-width: 768px) {
    .reviews__title {
        font-size: 22px;
    }

    .reviews__rating {
        font-size: 34px;
    }

    .reviews__body p {
        font-size: 16px;
    }
}