.star-rating,
.advert-rating {
    display: flex;
    flex-wrap: wrap;
    max-width: fit-content;
}

.star {
    width: 25px;
    height: 25px;
    margin-right: 2px;
    background: gray;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background-size: cover;
}

.star.full {
    background-color: #ec9f19;
}

.star.partial {
    background: linear-gradient(to right, #ec9f19 80%, #ccc 80%);
}

.star.empty {
    background-color: rgb(44, 11, 53);
}