.comments-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: #f4f4f4;
}

.comments__upper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.comments__text {
    color: #6E6E6E;
    line-height: 140%;
    overflow: scroll;
}

.comments__title {
    margin: 0;
}

.comments {
    width: 100%;
    border: 1px solid var(--light-border-color);
    background: #fff;
    border-radius: 22px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .3s ease;
    min-height: 375px;
    max-height: 410px;
}

.comments__image {
    width: 100%;
    object-fit: cover;
    height: 190px;
}


.comments:hover {
    border: 1px solid var(--accent-color);
}

.comments__image {
    border-radius: 12px;
}

.comments__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
}

.comments__button {
    width: 100%;
}

.content__container h3 {
    font-size: 20px;
    font-weight: 600;
}

.content__container h4 {
    font-size: 18px;
    font-weight: 600;
}

.comments__rating {
    display: flex;
    gap: 5px;
    margin: 8px 0;
}
.star--gold {
    color: #FFD700; /* Золотисто-желтый */
    font-size: 20px;
    line-height: 1;
}

@media (max-width:500px) {
    .comments__upper {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}