:root {
  --text: #111111;
  --muted: #666666;
  --bg: #fcfcf9;
  --line: #e8e6df;

  --s1: 0.75rem;
  --s2: 1.2rem;
  --s3: 1.95rem;
  --s4: 3.15rem;
  --s5: 5.1rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 8rem;
  padding-left: var(--s1);
  padding-right: var(--s3);
  padding-bottom: var(--s5);
}

header {
  margin-bottom: var(--s3);
}

h1,
h2,
nav,
.article-title {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.site-title {
  font-size: 2.7rem;
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 var(--s1) 0;
  letter-spacing: -0.04em;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  text-decoration: none;
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 var(--s3) 0;
}

nav {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--text);
}

.main-content {
  margin-top: var(--s4);
}

/* .content {
  margin-top: var(--s4);
} */

.content p {
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  max-width: 60ch;
}

/* Homepage / generic list styles */

.list {
  display: grid;
  gap: var(--s2);
}

.item {
  padding: 0 0 var(--s2) 0;
  border-bottom: 1px solid var(--line);
}

.item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Article list page */

.list .article-title {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 50ch;
  margin: 0 0 0.6rem 0;
}

.list .article-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.list .article-meta {
  color: var(--muted);
  font-size: 1rem;
}

/* Individual article page */

/* article {
  margin-top: var(--s4);
} */

article .article-title {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
  max-width: 50ch;
}

article .article-meta {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: var(--s4);
}

.article-body p {
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  max-width: 60ch;
}

.article-body blockquote {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--line);
  color: var(--muted);
}

footer {
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 680px) {
  html {
    font-size: 17px;
  }

  .page {
    padding: var(--s4) var(--s2);
  }

  .site-title {
    font-size: 2.2rem;
  }

  .list .article-title,
  article .article-title {
    font-size: 1.6rem;
  }
}
