/* =====================================================
   Reaction Buttons
   ===================================================== */

.news-reactions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: clamp(20px, 4vw, 28px);
    margin: 0 clamp(16px, 3vw, 24px);
    background: linear-gradient(135deg, var(--surface-subtle), rgba(226, 232, 240, 0.5));
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-subtle);
}

.news-reactions__label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
}

.news-reactions__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface);
    box-shadow: var(--shadow-subtle);
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.reaction-btn:active {
    transform: translateY(0);
}

.reaction-btn--helpful {
    color: var(--helpful-color);
    border-color: var(--helpful-border);
}

.reaction-btn--helpful:hover,
.reaction-btn--helpful[aria-pressed="true"] {
    background: var(--helpful-bg);
    border-color: var(--helpful-color);
}

.reaction-btn--helpful[aria-pressed="true"] {
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2);
}

.reaction-btn--not-helpful {
    color: var(--not-helpful-color);
    border-color: var(--not-helpful-border);
}

.reaction-btn--not-helpful:hover,
.reaction-btn--not-helpful[aria-pressed="true"] {
    background: var(--not-helpful-bg);
    border-color: var(--not-helpful-color);
}

.reaction-btn--not-helpful[aria-pressed="true"] {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.reaction-btn__text {
    font-weight: 600;
}

.reaction-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    padding: 2px 7px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}