.post-item {
  padding: 20px;
  margin: 0 -20px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}
.post-item:hover {
  background: #f8f9fa;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item h2 {
  margin-bottom: 10px;
}
.post-title {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s;
}
.post-title:hover {
  color: #3498db;
}
.post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.description {
  color: #555;
  margin: 10px 0;
}
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.pagination a {
  color: #3498db;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #3498db;
  border-radius: 4px;
  transition: all 0.2s;
}
.pagination a:hover {
  background: #3498db;
  color: #fff;
}
.pagination .disabled {
  color: #ccc;
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.page-info {
  color: #666;
}
