.page-header.review{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.page-header.review a{
    color: var(--brown);
    font-size: 28px;
}
.review-item__header-stars{
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-item__stars-item{
    width: 35px;
    height: 35px;
    background: var(--background);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg width='28' height='26' viewBox='0 0 28 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.2279 1.03463C13.5292 0.117457 14.8267 0.117457 15.128 1.03463L17.5841 8.51071C17.719 8.92115 18.1022 9.19859 18.5342 9.19859H26.4587C27.4301 9.19859 27.8311 10.4438 27.0422 11.0107L20.6503 15.6036C20.2959 15.8583 20.1475 16.3133 20.2837 16.7279L22.7297 24.173C23.0318 25.0924 21.982 25.8619 21.1962 25.2973L14.7615 20.6736C14.4128 20.4231 13.9431 20.4231 13.5944 20.6736L7.15973 25.2973C6.37386 25.862 5.32412 25.0924 5.62616 24.173L8.07216 16.7279C8.20836 16.3133 8.06002 15.8583 7.70565 15.6036L1.31367 11.0107C0.524807 10.4438 0.925804 9.19859 1.8972 9.19859H9.82172C10.2537 9.19859 10.6369 8.92115 10.7718 8.51071L13.2279 1.03463Z' fill='%23482712'/%3E%3C/svg%3E%0A");
}
.review-item__stars-item.active{
    background: var(--brown);
}
.review-item__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}
.review-item__header > p{
    font-size: 25px;
    color: var(--background);
}
.review-item__content > p{
    font-size: 20px;
    color: var(--background);
}
.review-item{
    padding: 30px;
    background: var(--beige);
    border-radius: 20px;
}
.review-items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media (max-width: 1000px){
    .review-items{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 750px){
    .review-item__stars-item{
        width: 25px;
        height: 25px;
    }
}
