.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  height: 22px;
  padding: 0 var(--s-2);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: currentColor;
}

.badge--neutral {
  background: var(--surface-3);
  border-color: var(--border-strong);
  color: var(--text-muted);
}

.badge--brand {
  background: var(--brand-soft);
  color: var(--brand-hover);
}

.badge--success {
  background: rgba(34, 197, 94, 0.14);
  color: var(--success);
}

.badge--warning {
  background: rgba(234, 179, 8, 0.14);
  color: var(--warning);
}

.badge--danger {
  background: rgba(239, 68, 68, 0.14);
  color: var(--danger);
}

.badge--info {
  background: rgba(56, 189, 248, 0.14);
  color: var(--info);
}
