/* Postie · Badge — a quiet count or label. Never shouts. */
.postie-badge {
  display: inline-flex; align-items: center; gap: 6px;
  box-sizing: border-box; height: 26px; padding: 0 10px;
  border-radius: var(--postie-radius-pill);
  font-family: var(--postie-font-ui); font-size: 12px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.postie-badge--neutral { background: var(--postie-c-raised); color: var(--postie-c-body); }
.postie-badge--accent  { background: var(--postie-c-selected); color: var(--postie-c-accent-text); } /* context: selected tint on working, raised-brand on the chrome */
.postie-badge--count   { background: transparent; color: var(--postie-c-accent-text); padding: 0; height: auto; }
.postie-badge--count-muted { background: transparent; color: var(--postie-c-muted); padding: 0; height: auto; }
.postie-badge--sm { height: 22px; padding: 0 8px; font-size: 11px; }
