/* Momenta Core Rules — site styling on top of the mdBook default theme */

/* The subtitle line under every chapter title ("*Momenta Core Rules · Moment 4 · Combat · Chapter 25*")
   renders as a running header rather than body text. */
.content h1 + p > em:only-child {
  display: block;
  font-style: normal;
  font-size: 0.8em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: -0.6em;
  margin-bottom: 2em;
}

/* Design Notes and GM Notes: quieter, boxed */
.content blockquote {
  border-left: 3px solid var(--quote-border);
  background: var(--quote-bg);
  padding: 0.6em 1em;
  border-radius: 4px;
}

/* Rules tables: keep cells readable on narrow screens */
.content table { font-size: 0.92em; }
.content table td { vertical-align: top; }

/* Stat-block and entry code blocks ([CONDITION], [PATTERN], [STATE], weapon templates) */
.content pre > code { font-size: 0.9em; line-height: 1.45; }
