/* Feed stats component - Compact inline display */

.feed-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: var(--overlay-medium);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

[data-theme="dark"] .stat {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(148, 163, 184, 0.2);
}

.stat-number {
    display: inline;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* Loading pulse animation for article count placeholder */
.stat-number.loading-pulse {
    animation: pulse 1.5s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

[data-theme="dark"] .stat-number {
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

[data-theme="dark"] .stat-label {
    color: rgba(255, 255, 255, 0.7);
}
