.article-rating-box {
    margin: 20px 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.article-rating-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.article-rating-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.article-rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.article-star {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    transition: all .15s ease;
    user-select: none;
    flex-shrink: 0;
}

.article-star:hover,
.article-star.active {
    background: #f59e0b;
    color: #fff;
}

.article-rating-meta {
    display: none;
}

@media (max-width: 767px) {
    .article-rating-box {
        margin: 18px 0;
    }

    .article-rating-header {
        gap: 8px;
    }

    .article-rating-title {
        font-size: 15px;
    }

    .article-rating-stars {
        gap: 5px;
    }

    .article-star {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}