/**
 * Landing Page Styles (v5.1.0)
 * 랜딩 전용 레이아웃 스타일
 * 게시판 테이블 스타일은 board_table.css에서 로드
 *
 * v5.1.0: 이중 헤더 (제목 + 전체 보기 링크)
 */

/* Section container */
.board-section {
  margin-bottom: 1rem;
  padding: 10px 0;
}

/* Compact section wrapper */
.board-list-compact-section {
  width: 100%;
  min-width: 0;
}

/* Section header - 이중 헤더 (제목 + 링크) */
.board-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Section title (왼쪽) */
.board-section-title {
  font-weight: 700;
  font-size: 18px;
  color: #1f2937;
}

/* Section link (오른쪽) */
.board-section-link {
  color: #6b7280;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.board-section-link:hover {
  color: #3b82f6;
}
.board-section-link .hint {
  opacity: 0.8;
  font-size: 1em;
}

/* Mobile */
@media (max-width: 480px) {
  .board-section-title {
    font-size: 16px;
  }
  .board-section-link {
    font-size: 13px;
  }
}
