/* ============================================================
   Cold Moon, Clear Spring (ColdMoon.html)
   Long-form literary reading page — narrow measure, tall leading,
   classical poems set as centred verse. Uses the site palette/tokens.
   ============================================================ */

.story {
  /* This element also carries .content (width:1000px; max-width:100%).
     Narrow it for reading, but keep max-width:100% so it still caps to the
     viewport on mobile — otherwise it overflows. */
  width: 720px;       /* comfortable reading measure for CJK prose */
  max-width: 100%;
}

/* ── Title ─────────────────────────────────────────────────── */
.story-hero {
  text-align: center;
  margin-bottom: 48px;
}

.story h1 {
  font-family: var(--font-display);
  font-size: 2.6em;
  letter-spacing: 0.18em;
  color: var(--heading);
  margin: 0 0 10px;
}

.story-subtitle {
  font-family: var(--font-accent);
  font-size: 1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ── Prose ─────────────────────────────────────────────────── */
.story-body p {
  font-size: 1.08em;
  line-height: 2.05;        /* tall leading reads better for Chinese */
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 1.5em;
  text-align: justify;
}

/* ── Classical poems (markdown blockquotes) ────────────────── */
.story-body blockquote {
  margin: 2.6em auto;
  padding: 1.5em 0;
  border-top: 1px solid rgba(173, 149, 134, 0.4);
  border-bottom: 1px solid rgba(173, 149, 134, 0.4);
  text-align: center;
}

.story-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.3em;
  line-height: 1.95;
  letter-spacing: 0.22em;
  color: var(--brown);
  margin: 0;
  text-align: center;
}

/* ── Back link ─────────────────────────────────────────────── */
.story-back {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-accent);
  font-size: 0.95em;
  color: var(--accent);
  text-decoration: none;
  transition: transform 0.2s;
}

.story-back:hover {
  transform: translateX(-4px);
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .story h1 {
    font-size: 1.9em;
    letter-spacing: 0.1em;
  }

  .story-body p {
    font-size: 1em;
    line-height: 1.95;
    text-align: left;
  }

  .story-body blockquote p {
    font-size: 1.1em;
    letter-spacing: 0.12em;
  }
}
