/* ==========================================================================
   BİLEŞEN: İSTATİSTİK VE PERFORMANS KARTLARI (STATS GRID)
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stat-card:hover {
  border-color: var(--border-light, #384864);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.stat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap .icon {
  width: 22px;
  height: 22px;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.stat-val {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-mono, monospace);
  line-height: 1.2;
}
