/* Chapter 02 — Character Creation.
   Accent: Verdant. The 9-step procedure is the chapter's defining motif. */

body.chapter-02 {
  --chapter-accent: var(--primary);
  --chapter-accent-soft: var(--primary-20);
  --chapter-accent-bg: var(--primary-05);
}

/* Promote each "Step N:" H2 to a labeled protocol header */
body.chapter-02 article > h2 {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

body.chapter-02 article > h2::before {
  content: "PROTOCOL";
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.2rem 0.5rem;
  background: var(--primary);
  color: var(--on-primary);
  flex-shrink: 0;
  align-self: center;
}

/* Style the main ordered list more aggressively — it's the creation sequence */
body.chapter-02 article > ol {
  background: var(--primary-05);
  border: 1px solid var(--primary-20);
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

body.chapter-02 article > ol > li {
  padding-left: 3rem;
}

body.chapter-02 article > ol > li::before {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  font-weight: 700;
}
