/* ─── 배지 ──────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 9px; border-radius: 5px;
  font-size: 12px; font-weight: 700; line-height: 1.4;
}
.badge-success { background: var(--success-light); color: #065f46; }
.badge-warning { background: var(--warning-light); color: #92400e; }
.badge-danger  { background: var(--danger-light);  color: #991b1b; }
.badge-primary { background: var(--primary-light); color: #1e40af; }
.badge-neutral { background: #dbeafe; color: #1e40af; }

.badge-group { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
