/* 06-components/lateral-nav — the wiki "this topic on other worlds" rail.
   Machine-voice label over a wrapping cluster: the current wiki as an active
   tag, sibling pages as link tags, and the create/missing states. Items reuse
   c-tag / c-btn; only the label and the guest "missing" chip live here. */
.c-lateral {
  font-family: var(--font-chrome);
}
.c-lateral__label {
  color: var(--ink-dim);
  font-size: var(--text-sm);
  margin-block-end: var(--space-xs);
}
/* Guest-visible "page missing here" chip — dashed + dim so it reads as absence,
   never as a live link (there is nothing to click). */
.c-lateral__missing {
  font-family: var(--font-chrome);
  font-size: var(--text-xs);
  padding: 0.15rem 0.5rem;
  border: 1px dashed color-mix(in srgb, var(--ink-dim) 45%, transparent);
  border-radius: var(--radius-sm);
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  opacity: 0.7;
}
