.post-list-wrap {
  padding-top: 10rem;
}

.post-list {
  max-width: 840px;
  margin: 0 auto;
}

.post-list-item {
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
  padding: 1.25rem 0;
}

.post-list-item:last-child {
  border-bottom: none;
}

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

.post-list-item a:hover .post-list-title {
  color: var(--theme);
}

.post-list-date {
  font-size: 0.85rem;
  color: var(--theme);
  font-weight: 500;
}

.post-list-title {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.post-list-summary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.75;
}

.post-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.post-list-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--accent, rgba(0, 0, 0, 0.05));
  color: var(--text);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  opacity: 0.7;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
  list-style: none;
  max-width: 840px;
  margin: 0 auto;
}

.pagination .page-item .page-link {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}

.pagination .page-item.active .page-link {
  background: var(--theme);
  color: var(--light, #fff);
}

.pagination .page-item .page-link:hover {
  background: var(--accent, rgba(0, 0, 0, 0.05));
}
