.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--bg-3);
  color: var(--ink-1);
  border-radius: var(--r-xs);
  font-size: var(--t-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tr-wider);
  line-height: 1;
  white-space: nowrap;
}

.chip--live {
  background: var(--live);
  color: #fff;
}
@keyframes chip-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.chip--hot {
  background: var(--accent);
  color: var(--ink-on-accent);
}

.chip--new {
  background: var(--up-soft);
  color: var(--up);
  border: 1px solid var(--up);
}

.chip--warn {
  background: var(--warn-soft);
  color: var(--warn);
}

.chip--soft {
  background: var(--bg-2);
  color: var(--ink-2);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--t-xs);
}

.chip--ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
}

.chip--ghost:hover, .chip--ghost[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

.chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
