.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.blog-header {
  padding: 20px 40px;
  border-bottom: 1px solid #2a2a2a;
}

.main {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 24px;
  flex: 1;
}

.main h1 {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #e2cca9;
}

.post-list {
  display: flex;
  flex-direction: column;
}

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

.post-item {
  background-color: #1e2021;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 20px;
  border-left: 3px solid #2a2a2a;
  transition: border-left-color 0.2s ease;
}

.post-item:hover {
  border-left-color: #a08ce0;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 16px;
}

.post-title {
  font-size: 1rem;
  color: #a08ce0;
  flex: 1;
  line-height: 1.5;
}

.post-date {
  font-size: 0.8rem;
  color: #7c6f64;
  white-space: nowrap;
}

.post-excerpt p {
  font-size: 0.85rem;
  color: #928374;
  line-height: 1.7;
}

.blog-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: #7c6f64;
  border-top: 1px solid #2a2a2a;
}

@media (max-width: 600px) {
  .blog-header {
    padding: 16px 20px;
  }

  .post-header {
    flex-direction: column;
    gap: 4px;
  }
}