.reviewsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.reviewsTitle {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
@media(max-width: 550px){
    .reviewsTitle{
        font-size: 22px;
    }
}
.star {
    position: relative;
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

/* пустая звезда (контур) */
.star::before {
    content: "☆";
    color: #cfcfcf;
}

/* заливка */
.star::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5b301;
    opacity: 0;
    transition: opacity 0.15s ease;
}

/* активная (залитая) */
.star.filled::after {
    opacity: 1;
}

/* лёгкая анимация */
.star:hover {
    transform: scale(1.08);
}