/* Verse-block styling — applied wherever <pre class="verse"> appears.
   Loaded by both compose.html and thread_detail.html so the editor and the
   reader see the same affordance: this is a poem, not paragraph prose. */

pre.verse {
  /* pre-wrap (not pre) — keeps byte-preservation of \n / spaces / tabs while
     letting overly long lines soft-wrap inside the editor's width instead of
     overflowing the container on paste. word-break:break-word covers the
     no-whitespace-pathological-line case (e.g. a long pasted URL). */
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.75rem 0;
  padding: 0.6em 0.9em;
  background: #f5f1e8;
  border-radius: 3px;
  /* Tabs render as ~4 spaces while keeping the stored byte a literal \t. */
  tab-size: 4;
  -moz-tab-size: 4;
}

/* Inline marks inside verse */
pre.verse strong { font-weight: bold; }
pre.verse em { font-style: italic; }

/* Workshop line-numbering overlay (Phase 2) preserves its own grid layout —
   no overrides needed here. */
