/* Статистика */
.stat, .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-label {
    font-size: 0.92em;
    color: var(--text-muted);
    margin-top: 2px;
}
.stat-value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 2.1em;
    margin-bottom: 2px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 22px;
    margin: 18px 0 0 0;
    width: 100%;
}
.stat-card {
    background: var(--card-bg);
    padding: 22px 0 18px 0;
    border-radius: 14px;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 110px;
    transition: box-shadow 0.25s, transform 0.25s;
    border: 1.5px solid var(--border-color);
}
.stat-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px var(--hover-shadow);
    border-color: var(--primary-color);
}
.stat-icon {
    font-size: 2.1em;
    margin-bottom: 6px;
    color: var(--primary-color);
    opacity: 0.85;
}
@media (max-width: 700px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card {
        padding: 14px 0 10px 0;
        font-size: 0.98em;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 