/* 카테고리 페이지 스타일 */
.category-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  font-family: Arial, sans-serif;
}

.category-header {
  text-align: center;
  margin-bottom: 32px;
}

.category-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.category-description {
  font-size: 1.2rem;
  color: #666;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 16px;
}

.post-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.post-excerpt {
  font-size: 1rem;
  color: #666;
}

.no-posts {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
}

.pagination {
  margin-top: 32px;
  text-align: center;
}

.pagination a {
  margin: 0 4px;
  padding: 8px 12px;
  background: #0073aa;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.pagination a:hover {
  background: #005177;
}
