@charset "UTF-8";
/* styles.scss */
/* 색상 변수 정의 */
.empty {
  text-align: center;
  font-size: 1.2em;
  margin-top: 20px;
}
.board {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.board .board-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.board .board-list .board-item {
  padding: 16px;
  border-bottom: 1px solid #eeeeee;
}
.board .board-list .board-item:hover {
  background: #fafafa;
}
.board .board-list .board-item .post-header {
  display: flex;
  align-items: flex-start;
}
.board .board-list .board-item .post-header .category {
  flex-shrink: 0;
  margin-right: 4px;
  color: #e53935;
  font-weight: 500;
  font-size: 13px;
}
.board .board-list .board-item .post-header .title {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #212121;
}
.board .board-list .board-item .post-header .comment-badge {
  flex-shrink: 0;
  margin-left: 8px;
  min-width: 24px;
  height: 24px;
  background: #e53935;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.board .board-list .board-item .post-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.board .board-list .board-item .post-meta .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}
.board .board-list .board-item .post-meta .author {
  font-size: 13px;
  color: #616161;
}
.board .board-list .board-item .post-meta .author .badge {
  display: inline-block;
  margin-left: 4px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  font-size: 10px;
  text-align: center;
  background: #fbc02d;
  border-radius: 50%;
  color: #fff;
}
.board .board-list .board-item .post-meta .time, .board .board-list .board-item .post-meta .views, .board .board-list .board-item .post-meta .comments {
  font-size: 12px;
  color: #9e9e9e;
  margin-right: 12px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  min-width: 32px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #333;
  background-color: #f7f8fa;
  border: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}
.pagination a:hover, .pagination span:hover {
  background-color: #eaeaea;
}
.pagination .active {
  font-weight: bold;
  background-color: #3498db;
  color: white;
  border: 1px solid #2980b9;
}
.pagination .disabled {
  color: #bbb;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}
/* 모바일 대응 */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 0.3rem;
  }
  .pagination a, .pagination span {
    padding: 5px 10px;
  }
}
/*# sourceMappingURL=078946d1ee42a350cb0a76d4fd447e364b47829e.document-list.scss.map */
