.post-reactions {
    padding: 10px 0;
    margin-bottom: 10px;
    text-align: center;
}

.reactions-title {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin-bottom: 10px;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.reaction-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.reaction-btn.active {
    background: #f0f0f0;
    border-color: #999;
}

.reaction-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reaction-btn .emoji {
    font-size: 20px;
    line-height: 1;
}

.reaction-btn .count {
    font-size: 17px;
    font-weight: 500;
    color: #666;
}

.reaction-btn.active .count {
    color: #333;
}

/* Responsive */
@media (max-width: 600px) {
    .reactions-buttons {
        gap: 6px;
    }
    
    .reaction-btn {
        padding: 10px 17px;
    }
    
    .reaction-btn .emoji {
        font-size: 18px;
    }
}