.tem-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: .25rem;
    font-size: 1.9rem;
}
.tem-rating .tem-rating-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.tem-rating .tem-rating-label {
    cursor: pointer;
    color: #ccc;
    line-height: 1;
    transition: color .15s ease, transform .15s ease;
}
.tem-rating .tem-rating-input:checked ~ .tem-rating-label,
.tem-rating .tem-rating-label:hover,
.tem-rating .tem-rating-label:hover ~ .tem-rating-label {
    color: #f59e0b;
}
.tem-rating .tem-rating-label:hover,
.tem-rating .tem-rating-label:hover ~ .tem-rating-label {
    transform: scale(1.1);
}
.tem-rating .tem-rating-input:focus-visible + .tem-rating-label {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}
