/* ── markdown.css ──────────────────────────────────────
   All markdown-rendered elements live inside #content.
   Colors stay within the green/amber terminal palette.
   ─────────────────────────────────────────────────── */

/* ── headings ──────────────────────────────────────── */
.md-h1 {
  font-size: 14px;
  color: #b7f5d4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 18px 0 10px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #2e2e2e;
}

.md-h1::before { content: "# "; color: var(--chrome); }

.md-h2 {
  font-size: 13px;
  color: #b7f5d4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 14px 0 8px 0;
}

.md-h2::before { content: "## "; color: var(--chrome); }

.md-h3 {
  font-size: 12px;
  color: #8ecfaa;
  letter-spacing: 0.08em;
  margin: 10px 0 6px 0;
}

.md-h3::before { content: "### "; color: var(--chrome); }

/* ── paragraph ─────────────────────────────────────── */
.md-p {
  font-size: 13px;
  color: #7abf9a;
  line-height: 1.75;
  margin: 0 0 6px 0;
}

/* ── inline styles ─────────────────────────────────── */
.md-bold {
  color: #b7f5d4;
  font-weight: bold;
}

.md-italic {
  color: #7abf9a;
  font-style: italic;
}

.md-bolditalic {
  color: #b7f5d4;
  font-weight: bold;
  font-style: italic;
}

/* ── links ─────────────────────────────────────────── */
.md-link {
  color: var(--chrome);
  text-decoration: none;
  border-bottom: 1px solid #7a4e20;
  transition: color 0.15s, border-color 0.15s;
}

.md-link:hover {
  color: #e09a50;
  border-bottom-color: #c17f3a;
}

/* ── bullet list ───────────────────────────────────── */
.md-list {
  list-style: none;
  margin: 6px 0 10px 0;
  padding: 0;
}

.md-list li {
  font-size: 13px;
  color: #7abf9a;
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}

.md-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--chrome);
}

/* ── spacer ────────────────────────────────────────── */
.md-spacer {
  height: 8px;
}