#statsPanel {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 32px;
  margin-bottom: 20px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.stat-block:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

#statErrorsBlock .stat-number {
  color: var(--ink-soft);
}

#statErrorsBlock.has-errors .stat-number {
  color: var(--danger);
}
