/* =========================
   OVERVIEW KPI GRID
========================= */

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.overview-card {
  background: linear-gradient(180deg, #0b0b0b, #090909);
  border: 1px solid #1c1c1c;
  padding: 16px;
}

.overview-value {
  font-size: 22px;
  font-weight: 600;
}

.overview-label {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}
