/* cc-chip — the board's small colour-coded label.
 *
 * Operator rulings 2026-09-18: tier and Recommended are badges, not shouted
 * all-caps words. Two surfaces render the same model metadata — the Engines
 * model list and the composer's model picker — so the chip lives in the
 * design system rather than in whichever pane happened to need it first.
 */
.cc-chip {
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  padding:1px 7px;
  border:1px solid var(--ui-line);
  border-radius:999px;
  background:var(--ui-muted-surface);
  color:var(--ui-text-soft);
  font:650 9.5px/1.5 var(--font-ui);
  letter-spacing:.01em;
  white-space:nowrap;
}
.cc-chip-recommended {
  border-color:var(--ui-accent-line);
  background:var(--ui-accent-soft);
  color:var(--ui-accent);
}
.cc-chip-tier[data-tier="economy"] {
  border-color:var(--ui-success-line);
  background:var(--ui-success-soft);
  color:var(--ui-success);
}
.cc-chip-tier[data-tier="premium"] {
  border-color:var(--ui-warning-line);
  background:var(--ui-warning-soft);
  color:var(--ui-warning);
}
