/* Minimal, text-first stylesheet in the spirit of drewdevault.com.
   No frameworks, no JS, no build step required. */

html {
  font-size: 16px;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #111;
  background: #fff;
  max-width: 40em;
  margin: 2em auto;
  padding: 0 1em;
  line-height: 1.5;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: normal;
}

h1 {
  font-size: 1.4em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  border-bottom: 2px solid #111;
}

h1 a {
  color: #111;
  text-decoration: none;
}

h2 {
  font-size: 1.3em;
  margin-top: 1.8em;
}

h3 {
  font-size: 1.1em;
  margin-bottom: 0.2em;
}

a {
  color: #111;
}

a:hover {
  text-decoration: none;
}

nav {
  margin-bottom: 1.5em;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0;
}

ul, ol {
  padding-left: 1.3em;
}

.byline {
  color: #666;
  margin-top: -0.4em;
  margin-bottom: 1.5em;
}

.date {
  color: #666;
  font-size: 0.95em;
  margin: 1.2em 0 0.1em 0;
}

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

.post-list li {
  margin-bottom: 1.2em;
}

.post-list .date {
  display: block;
  margin: 1.2em 0 0.1em 0;
}

.post-list a {
  font-size: 1.1em;
}

.tagline {
  color: #444;
}

footer {
  margin-top: 3em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.9em;
}

footer ul {
  list-style: none;