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

body {
  background: #fff;
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── HOMEPAGE ── */
.site {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

h1 {
  font-size: 14px;
  font-weight: 400;
  font-family: Georgia, serif;
  color: #111;
  margin-bottom: 52px;
  line-height: 1;
}

.bio {
  max-width: 560px;
  margin-bottom: 80px;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
}

.bio p + p {
  margin-top: 12px;
}

.bio a {
  color: #111;
}

.bio a:hover {
  color: #555;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}

.col-label {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1px;
  color: #111;
}

.link-list a {
  color: #111;
  text-decoration: underline;
}

.link-list a:hover {
  color: #555;
}

/* ── POST PAGE ── */
.post-site {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

.post-back {
  font-size: 14px;
  color: #111;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 52px;
  font-family: Georgia, serif;
}

.post-back:hover {
  color: #555;
}

.post-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 600px;
  font-family: Georgia, serif;
}

.post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
  font-family: Georgia, serif;
}

.post-meta span + span::before {
  content: ' · ';
  color: #ccc;
}

.post-body {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.75;
  color: #111;
}

.post-body p {
  margin-bottom: 22px;
}

.post-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
  line-height: 1.3;
}

.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  line-height: 1.3;
}

.post-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 10px;
  line-height: 1.3;
}

.post-body a {
  color: #111;
}

.post-body a:hover {
  color: #555;
}

.post-body img {
  width: 100%;
  height: auto;
  margin: 32px 0;
  display: block;
}

.post-body .caption {
  font-size: 13px;
  color: #999;
  margin-top: -20px;
  margin-bottom: 32px;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .site, .post-site { padding: 36px 22px 64px; }
  .bio { font-size: 16px; }
  .columns { grid-template-columns: 1fr; gap: 40px 0; }
  .post-title { font-size: 22px; }
  .post-body { font-size: 16px; }
}
