*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, serif;
  background: #fafaf8;
  color: #1a1a1a;
  min-height: 100vh;
  padding: 2rem;
}

/* Landing */
.landing {
  max-width: 600px;
  margin: 8vh auto 0;
}

.landing h1 {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #666;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.post-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.15s;
}

.post-list a:hover .post-title {
  color: #555;
  text-decoration: underline;
}

.post-title {
  font-size: 1.1rem;
}

.post-date {
  font-size: 0.85rem;
  color: #999;
  white-space: nowrap;
  font-family: monospace;
  font-style: normal;
}

/* Post page */
.post-page {
  max-width: 620px;
  margin: 6vh auto 0;
}

.back {
  display: inline-block;
  color: #999;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.back:hover { color: #333; }

article h1 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 0.4rem;
}

article .post-date {
  display: block;
  margin-bottom: 2rem;
  font-family: monospace;
}

article p {
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
