.overview-main {
  gap: 1.25rem;
}

.overview-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.overview-kpi h2,
.overview-chart-panel h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.overview-kpi-value {
  margin: 0.35rem 0;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
}

.overview-grid {
  display: grid;
  gap: 1rem;
}

.overview-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-chart-wrap {
  position: relative;
  min-height: 330px;
}

.overview-chart-wrap canvas {
  width: 100% !important;
  height: 320px !important;
}

.overview-rate-muted {
  color: var(--text-muted);
}

.overview-finish-late {
  color: var(--orange);
}

.overview-finish-blocked {
  color: var(--red);
}

@media (max-width: 1200px) {
  .overview-kpis,
  .overview-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .overview-kpis,
  .overview-grid--two {
    grid-template-columns: 1fr;
  }
}
