/* Posts grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Post card */
.post-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.post-thumbnail img { width: 100%; display: block; }
.post-content { padding: 1rem; }
.post-title { font-size: 1.25rem; margin-bottom: .5rem; }
.post-title a { text-decoration: none; color: #111; }
.post-title a:hover { color: #78350f; } /* amber-900 */
.post-meta { font-size: .875rem; color: #6b7280; margin-bottom: .75rem; }
.post-excerpt { font-size: .95rem; margin-bottom: 1rem; }
.read-more {
  display: inline-block;
  font-size: .875rem;
  color: #78350f;
  text-decoration: none;
}
.read-more:hover { text-decoration: underline; }

/* Pagination */
.pagination { margin-top: 2rem; text-align: center; }
.pagination .page-numbers {
  display: inline-block;
  margin: 0 .25rem;
  padding: .5rem .75rem;
  border-radius: .25rem;
  background: #f3f4f6;
  color: #111;
  text-decoration: none;
}
.pagination .page-numbers.current {
  background: #78350f;
  color: #fff;
}
.pagination .page-numbers:hover {
  background: #92400e;
  color: #fff;
}