/* wgf-realm-spread-table.css — Module M15: Cheapest-Realm / Realm-Spread Table.
   Composes wgf-data-table.css (M29 base — must be loaded before this sheet).
   Adds: faction identity dot, "Cheapest" badge.
   Colours/type from _tokens.css only; no :root{} block. */

/* ── Realm identity cell: faction dot + name + region ──────────────────── */
.realm-identity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Faction dot — IDENTITY taxonomy color, NOT market up/down color */
.realm-faction {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.realm-faction--alliance { background: var(--fc-alliance); }
.realm-faction--horde    { background: var(--fc-horde); }

.realm-name {
  font-family: var(--font-ui);
  color: var(--wgf-text);
}
.realm-type {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--wgf-muted);
}

/* ── "Cheapest" badge — the ONE deal-indicator idiom: a small squared well chip
   (kit re-cut 2026-07-04, no rounded pills). Gold brand accent, never green. ── */
.badge-cheapest {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-game);
  font-size: .6rem;
  font-variant: small-caps;
  text-transform: none;
  letter-spacing: .06em;
  color: var(--wgf-on-gold);
  background: var(--wgf-gold-accent);
  padding: 1px var(--space-2);
  border-radius: 3px;
  margin-left: var(--space-2);
  vertical-align: middle;
  white-space: nowrap;
}
