/* Compact reactions row inside news card */
.news-card-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 16px 12px;
    border-top: 1px solid #f3f4f6;
    margin-top: -1px;
}
.news-card-reaction {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 2px 8px;
    line-height: 1.4;
}
.news-card-reaction-count {
    font-weight: 600;
    color: #111827;
}

/* Full reactions bar on article single page */
.article-reactions {
    margin: 24px 0;
    padding: 18px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}
.article-reactions-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px;
}
.article-reactions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13.5px;
    color: #374151;
    transition: background-color .15s ease, border-color .15s ease, transform .1s ease;
}
.reaction-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}
.reaction-btn.is-active {
    background: #eef4ff;
    border-color: #1E3A8A;
    color: #1E3A8A;
    font-weight: 600;
}
.reaction-btn:active {
    transform: scale(0.97);
}
.reaction-btn .reaction-icon {
    font-size: 18px;
    line-height: 1;
}
.reaction-btn .reaction-count {
    font-weight: 600;
    color: inherit;
    margin-left: 2px;
    min-width: 14px;
    text-align: left;
}
.reaction-btn[disabled] {
    opacity: 0.6;
    cursor: wait;
}
