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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #0a0a0a;
  color: #e8e0d4;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #2a2420;
}

.site-title {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a853;
  text-decoration: none;
}

main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

h1 {
  font-size: 2.5rem;
  color: #d4a853;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 1.5rem;
  color: #c49a3c;
  margin: 2rem 0 1rem;
  font-weight: normal;
}

p {
  margin-bottom: 1.2rem;
  color: #c8bfb0;
}

a {
  color: #d4a853;
}

blockquote {
  border-left: 2px solid #d4a853;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #a89880;
}

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

.post-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #2a2420;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.post-list a {
  text-decoration: none;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-list time {
  color: #5a5048;
  font-size: 0.85rem;
  white-space: nowrap;
}

article time {
  color: #5a5048;
  font-size: 0.9rem;
}

.author {
  color: #a89880;
  font-style: italic;
  margin-left: 1rem;
}

.post-body {
  margin-top: 2rem;
}

.post-body img {
  max-width: 100%;
  margin: 1.5rem 0;
}

footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #2a2420;
  color: #5a5048;
  font-size: 0.85rem;
}
