
/* ═══════════════════════════════════════════════════════════
   CS-05 — STAT EXPLOSION (Full Picture)
   Now uses .stats-bar card styles from 10-stats-bar.css.
   This file only adds the --explosion modifier overrides.
   ═══════════════════════════════════════════════════════════ */

.stats-bar--explosion {
  background: transparent;
}

.stats-bar--explosion::before,
.stats-bar--explosion::after {
  display: none;
}

.stats-bar--explosion .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .stats-bar--explosion .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-bar--explosion .stats-grid {
    grid-template-columns: 1fr;
  }
}
