.content-engagement .engagement-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #122044;
    margin-bottom: 0;
}


.reaction-buttons .reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}
.reaction-buttons .reaction-btn:hover {
    border-color: #122044;
    color: #122044;
    transform: translateY(-1px);
}

.reaction-buttons .reaction-btn.active {
    background: linear-gradient(135deg, #122044 0%, #1e3a7a 100%);
    border-color: #122044;
    color: #fff;
}

.reaction-buttons .reaction-btn .reaction-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.75rem;
}

.reaction-buttons .reaction-btn.active .reaction-count {
    background: rgba(255, 255, 255, 0.2);
}

.comment-form textarea {
    border-radius: 12px;
    border-color: #e2e8f0;
    font-size: 0.9rem;
}

.comment-form textarea:focus {
    border-color: #122044;
    box-shadow: 0 0 0 0.2rem rgba(18, 32, 68, 0.12);
}

.comment-item {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.comment-item.comment-pending {
    background: #fffbeb;
    border-color: #fde68a;
}
