:root {
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
}

/* Writing content: serif */
body {
  font-family: var(--font-serif);
  line-height: 1.6;
  padding: 1rem;

  /* Layout: nav on the left, content column to its right */
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* UI (nav) and headings: sans */
nav,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
}

nav {
  font-size: 0.875rem;
}

/* Nav: plain hyperlinks, no bullets */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav p {
  /* name-to-nav gap matches item spacing */
  margin: 0 0 0.125rem;
}

nav li + li {
  margin-top: 0.125rem;
}

aside {
  flex-shrink: 0;
}

/* Page title: smaller, top-aligned with the nav's first item */
h1 {
  font-size: 1rem;
  margin-top: 0;
}

/* Content column: roughly 1/5 of a full-size (1920px) screen */
main {
  max-width: 24rem;
}
