@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@300;400&display=swap');

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

body {
  background: #121417;
  color: #c8c8c0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* ── Site name ── */
.site-name {
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  text-decoration: none;
  color: #c8c8c0;
  display: block;
}

.site-name:hover { opacity: 0.5; }

/* ── Post list ── */
.post-list { list-style: none; }

.post-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid #1e2330;
}

.post-item:first-child { border-top: 1px solid #1e2330; }
.post-item:hover .post-title { opacity: 0.45; }

.post-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-date {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.4rem;
}

.post-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  transition: opacity 0.15s;
}

.post-excerpt {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
}

.empty-state {
  font-size: 0.95rem;
  color: #4a5068;
  padding: 2rem 0;
}

/* ── Post view ── */
.post-back {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  margin-bottom: 2.5rem;
}

.post-back::before { content: '← '; }
.post-back:hover { color: #c8c8c0; }

.post-date-full {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e2330;
}

.body {
  font-size: 1rem;
  line-height: 1.9;
  color: #ddd;
}

.body p + p { margin-top: 1.1em; }

.body img {
  width: 100%;
  display: block;
  margin: 2em 0;
}