/* Article reading styles — supplements the site-wide style.css */

.prose {
  max-width: 40rem;
  margin: 2.5rem auto 4rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.prose h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.prose h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 2.5rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose > ul, .prose > ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose li p {
  margin-bottom: 0.25rem;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--color-blockquote-bg, #f1f5f9);
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
}

.prose pre {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 0.5rem);
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.5;
}

.prose pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
}

/* Table of contents (for novels) */
.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 0.5rem);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.toc h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 0.3rem;
}

.toc a {
  font-size: 0.95rem;
}

/* Footnotes */
section.footnotes {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

section.footnotes hr {
  display: none;
}

section.footnotes ol {
  padding-left: 1.25rem;
}

section.footnotes li {
  margin-bottom: 0.5rem;
}

section.footnotes p {
  margin-bottom: 0.35rem;
}

.footnote-ref {
  font-size: 0.75em;
  vertical-align: super;
  line-height: 0;
}

.footnote-back {
  margin-left: 0.25rem;
  text-decoration: none;
}

/* Story/blog index cards */
.prose .description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0.15rem 0 0;
}

/* Chapter breaks in novels */
.prose hr + h1 {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .prose {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.5rem auto 2rem;
  }
  .prose h1 {
    font-size: 1.65rem;
  }
}
