/* /static/css/board.css */

/* 게시판 카드/헤더 */
.board-card {
  padding-bottom: 16px;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.board-title {
  font-size: 20px;
  font-weight: 800;
}

.board-tabs {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-left: 6px;
}

.board-tab {
  border-radius: 999px;
  border: none;
  padding: 6px 12px;
  font-size: 15px;
  cursor: pointer;
  background: #f5f5f7;
  color: #777;
}

.board-tab.active {
  background: #f8e9ff;
  color: #8d54ff;
}

.board-list {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

.board-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}

.badge-notice {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 999px;
  background: #f0e9ff;
  color: #7c5cff;
}

.board-date {
  margin-left: auto;
  font-size: 12px;
  color: #999;
}

.board-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 6px;
}

.board-link {
  color: #7c5cff;
  text-decoration: none;
  cursor: pointer;
}

.board-link:hover {
  text-decoration: underline;
}

/* 게시판 전용 미세 보강 */
.board-row-title {
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.board-row-title:hover {
  text-decoration: underline;
}

.chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: #f5f5f7;
  color: #555;
  margin-right: 6px;
}

.chip-cat {
  background: #fff4e5;
  border: 1px solid #f2c08a;
  color: #7a3c00;
}

.chip-private {
  background: #fde7ea;
  color: #b00020;
}

.hr {
  height: 1px;
  background: #eee;
  margin: 10px 0;
}

.quote-filter-active {
  background: #f8e9ff !important;
  color: #8d54ff !important;
}