/* Fatin article engagement — views & likes */
.article-engagement,
.article-engagement-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-engagement {
    margin: 6px 0 10px;
}

.article-engagement-bar {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.article-stat-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.article-stat-like {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 36px;
}

.article-stat-like:hover {
    transform: translateY(-1px);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}

.article-stat-like.is-liked {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 0 16px rgba(255, 107, 157, 0.25);
}

.article-stat-like.is-liked .like-icon {
    animation: fatinLikePop 0.35s ease;
}

.article-stat-like.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

@keyframes fatinLikePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.article-engagement--compact {
    gap: 8px;
    margin-top: 4px;
}

.article-engagement--compact .article-stat-like {
    padding: 4px 8px;
    min-height: 30px;
    font-size: 0.72rem;
}

.article-engagement--compact .article-stat-views {
    font-size: 0.72rem;
}

.article-engagement--inline {
    gap: 10px;
    margin-left: auto;
    margin-right: 8px;
}

.article-engagement--inline .article-stat-like {
    padding: 4px 10px;
    min-height: 32px;
    font-size: 0.75rem;
}

.article-compact-text {
    flex: 1;
    min-width: 0;
}

.article-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-title-row-text {
    flex: 1;
    min-width: 0;
}

.stat-suffix {
    font-size: 0.75rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .article-engagement-bar {
        justify-content: space-between;
    }
    .article-stat-like {
        min-height: 40px;
        padding: 8px 14px;
    }
}