.summary-grid{
  display:grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(180px,1fr)
    );
  gap:15px;
  margin:20px 0;
}

.summary-card{
  background:white;
  border-radius:16px;
  padding:20px;
  box-shadow:
    0 2px 10px
    rgba(0,0,0,.08);
}

.summary-card-title{
  font-size:13px;
  color:#6b7280;
  margin-bottom:10px;
}

.summary-card-value{
  font-size:24px;
  font-weight:700;
  color:#111827;
}

.summary-card-subtitle{
  margin-top:8px;
  font-size:12px;
  color:#9ca3af;
}