:root {
  --bg: #0c0e12;
  --bg-raised: #151820;
  --border: #2a2e38;
  --text: #c8cad0;
  --text-muted: #8a8e98;
  --text-bright: #e8eaf0;
  --accent: #5b9bd5;
  --accent-hover: #7ab4e8;
  --gold: #c4a35a;
  --font-narrative: Georgia, "Times New Roman", serif;
  --max-width: 700px;
}

/* Layout → Tipografía → Visual → Otros */

body {
  margin: 0;
  padding: 2em;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1em;
  color: var(--text);
  background: var(--bg);
}

main {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 1;
}

h1 {
  margin-top: 4em;
  font-size: 2em;
  letter-spacing: 0.05em;
  color: var(--gold);
}

h2 {
  margin-top: 3em;
  font-size: 1.5em;
  color: var(--text-bright);
  border-bottom: none;
}

h3 {
  margin-top: 2.5em;
  padding-bottom: 0.3em;
  font-size: 1.25em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 2.5em;
}

h4 {
  margin-top: 2.2em;
  padding-bottom: 0.2em;
  font-size: 1.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 2.5em;
}

p {
  line-height: 1.5;
  color: var(--text-muted);
}

blockquote {
  margin: 0.5em 0 1em;
  padding: 0;
  font-family: var(--font-narrative);
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
  text-decoration: underline;
}

ul {
  padding: 0;
  list-style: none;
}

li {
  margin: 0.5em 0;
}

li p {
  margin: 0 0 0.2em;
  color: var(--text-muted);
}

audio {
  width: 100%;
  margin-top: 0.2em;
}

section {
  margin-top: 2em;
}

article {
  margin-bottom: 1.5em;
}

article ul {
  margin: 0;
  padding-left: 1em;
}
