/* ===== Barstool (broken) — article pages ===== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.paper {
  position: relative;
  max-width: 560px;
  margin: 14px auto;
  padding: 14px 18px 26px;
  background: #fff;
}

/* wobbly mouse-drawn outer frame */
.frame {
  position: absolute;
  inset: 4px;
  border: 3px solid #111;
  filter: url(#wobble);
  pointer-events: none;
  z-index: 0;
}
.paper > *:not(.frame) { position: relative; z-index: 1; }

/* real MS-Paint wordmark as the masthead */
.wm-link { display: block; text-align: center; line-height: 0; }
.wm { width: 78%; max-width: 360px; height: auto; }

.back {
  font-family: Arial, Helvetica, sans-serif;
  color: #2a3aa0;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  margin: 2px 0 4px;
}
.back:hover { text-decoration: underline; }

.rule {
  height: 3px;
  background: #111;
  border: none;
  margin: 10px 0;
  filter: url(#wobble);
}

/* ---- article body ---- */
.article h1 {
  font-size: 23px;
  line-height: 1.2;
  margin: 8px 0 4px;
  font-weight: bold;
}
.article .meta {
  font-size: 12px;
  color: #777;
  margin: 0 0 12px;
}
.article .lede-art { text-align: center; margin: 12px 0; }
.article .lede-art img { max-width: 200px; border: 1px solid #111; }
.article .lede-art svg { filter: url(#wobble); }
.article p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.article .comments { margin-top: 16px; }
.article .cmt {
  font-size: 13px;
  margin: 7px 0;
  color: #222;
}
.article .cmt .who { font-weight: bold; }

/* headline + name colors (match the front page scrawls) */
.red    { color: #d11414; }
.navy   { color: #2a3aa0; }
.green  { color: #2faa3a; }
.orange { color: #d2742a; }
.teal   { color: #2f8f8f; }
.gray   { color: #888; }
