/* Feed stats component - Statistics display in page header */

.feed-stats {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    background: var(--overlay-heavy);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 var(--overlay-medium);
    backdrop-filter: blur(8px);
    min-width: 200px;
}

[data-theme="dark"] .stat {
    background: rgba(15, 23, 42, 0.35);
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.15);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    text-shadow: none;
    line-height: 1;
}

[data-theme="dark"] .stat-number {
    color: #fff;
    text-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

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

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


/* Responsive adjustments */
@media (max-width: 1024px) {
    .feed-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .feed-stats {
        gap: 1rem;
    }
}
