.summary-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  width: 100%;
}
.summary-item {
  position: relative;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.summary-item::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.56);
}
.summary-item span { color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.summary-item strong { display: block; margin-top: 8px; font-size: 1.36rem; color: var(--text); }
.summary-strip .summary-item:nth-child(1) { background: #FFE1E8; }
.summary-strip .summary-item:nth-child(2) { background: #FFF3DC; }
.summary-strip .summary-item:nth-child(3) { background: #DDF8E5; }
.summary-strip .summary-item:nth-child(4) { background: #EFE2FF; }
.summary-strip .summary-item:nth-child(5) { background: #E8F5FF; }
.summary-strip .summary-item:nth-child(6) { background: #F0F7DD; }
.summary-strip .summary-item:nth-child(7) { background: #F7F8FA; }
.quick-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.quick-action { justify-content: center; min-height: 54px; }
