/* 归档页面专用样式 */
.post-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.post-item {
  margin-bottom: 2rem;
}

.post-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--mdui-shape-corner-large);
  margin-bottom: 1rem;
}

.page-nav {
  text-align: center;
  margin: 2rem 0;
}

.page-nav a {
  text-decoration: none;
  margin: 0 0.5rem;
}

.page-number {
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .post-list {
    padding: 1rem;
  }
  
  .post-item {
    margin-bottom: 1rem;
  }
}