@media (min-width: 900px) {
    .HomeReviewsContainer {
        grid-template-columns: repeat(4, 1fr);
    }

    .HomeReviewsBlock2 {
        grid-column: 2/5;
        grid-template-columns: repeat(3, 1fr);
    }
}

.HomeReviewsTitle {
    display: flex;
    margin-bottom: 10px;
    color: var(--text-custom);
    font-family: 'Unbounded';
    height: 47px;
    justify-content: space-between;
    align-items: center;
}

.HomeReviewsTitle>div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.HomeReviewsContainer {
    display: grid;
    gap: 10px;
}

.HomeReviewsBlock1 {
    display: grid;
    background-color: var(--card);
    border-radius: 16px;
    padding: 15px;
    align-content: space-between;
}

.HomeReviewsBlock2 {
    display: grid;
    gap: 10px;
    position: relative;
}

.HomeReviewsReview {
    position: relative;
    background-color: var(--card);
    border-radius: 16px;
    padding: 15px;
}

.HomeReviewsScore {
    display: flex;
    gap: 15px;
    align-items: center;
}

.HomeReviewsScore>h1,
.HomeReviewsScore>div>h3,
.HomeReviewsScore>div>h6 {
    margin-bottom: 0;
}

.HomeReviewsScore>h1 {
    color: #f78000;
    border-radius: 12px;
    text-align: center;
    width: 100px;
    font-family: 'Unbounded';
}

.HomeReviewsScore>div>h6 {
    margin-bottom: 0;
    opacity: .5;
    font-weight: 500;
    color: var(--text-custom);
}

.HomeReviewsStar {
    width: 100px;
    margin-left: 2px;
    text-align: center;
    letter-spacing: 5px;
    color: var(--text-default);
}

.HomeReviewsStar span {
    opacity: .1;
}

.HomeReviewsStar>a.gold {
    color: gold;
}

.HomeReviewsAllInfo>div>a.gold {
    color: gold;
}

.HomeReviewsButton {
    display: flex;
    cursor: pointer;
    color: var(--text-custom);
    font-weight: 500;
    background-color: var(--button);
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgb(245 234 214 / 20%);
    border: 1px solid rgb(255 255 255 / 30%) !important;
    transition: .5s;
}

.HomeReviewsButton:hover {
    filter: brightness(115%);
}

.HomeReviewsAllInfo {
    display: flex;
    gap: 10px;
    height: 35px;
    align-items: center;
}

.HomeReviewsAllInfo>a>img {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    object-fit: cover;
}

.HomeReviewsAllInfo h4 {
    margin-bottom: 0;
}

.HomeReviewsAllText {
    opacity: 1;
    font-size: 12px;
    color: var(--text-custom);
    margin: 15px 0px;
    padding: 10px;
    white-space: pre-line;
    height: 80px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 10px;
    border-radius: 12px;
    background: #232323;
}

.HomeReviewsAllTime {
    color: var(--text-custom);
    white-space: nowrap;
    position: absolute;
    font-size: 10px;
    opacity: .5;
    left: 50%;
    bottom: 5px;
    transform: translate(-50%, 0px);
}

#next_reviews,
#start_reviews {
    cursor: pointer;
    display: flex;
    height: 40px;
    width: 40px;
    font-weight: 500;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    color: var(--text-custom);
    border-radius: 25px;
    transition: .5s;
    background-color: var(--button);
}

#next_reviews:hover,
#start_reviews:hover {
    background-color: var(--button-hover);
}

#next_reviews svg,
#start_reviews svg {
    fill: var(--text-custom);
    height: 15px;
}

.HomeReviewsAllLike {
    display: flex;
    gap: 5px;
    position: absolute;
    font-size: 10px;
    right: 20px;
    bottom: 5px;
    cursor: pointer;
    align-items: center;
    transition: .5s;
    color: var(--text-custom);
}

.HomeReviewsAllLike svg {
    width: 10px;
    fill: var(--text-custom);
    transition: .5s;
}

.HomeReviewsAllLike:hover {
    color: var(--red);
}

.HomeReviewsAllLike:hover svg {
    fill: var(--red);
}

.HomeReviewsAllLike.like_red,
.HomeReviewsAllLike.like_red svg {
    color: var(--red);
    fill: var(--red);
}

.HomeReviewsAllLike.like_red:hover {
    color: var(--text-default);
}

.HomeReviewsAllLike.like_red:hover svg {
    fill: var(--text-default);
}