/* The invocation line a stage carries in its c-act head on the overview page (pages/overview):
   the command in green, then the pattern it runs in amber, linked to that pattern's docs page.
   The name is the standalone Map and Design walkthroughs the class was cut for; those pages were
   folded into the overview and /map, /modes and /design redirect there, so this rule is all that
   outlived them. */

.p-modepage__command {
  display: inline-block;
  max-width: 100%;
  margin-top: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-2xs) var(--space-sm);
  background: var(--surface-sunken);
  border: var(--rule);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: var(--text-sm);
  line-height: var(--lh-code);
  white-space: nowrap;
}
.p-modepage__command-run { color: var(--good); }
.p-modepage__command-pattern { color: var(--accent-bright); text-decoration: none; }
.p-modepage__command-pattern:hover { text-decoration: underline; }
