/* 👉 게시판 상단 TopBar */
.board-topbar {
  max-width: 1260px;
  margin: 180px auto 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-radius: 10px;
  font-family: 'Pretendard', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.board-topbar a {
  text-decoration: none;
  color: inherit; /* 필요하면 색도 상속해서 헤더 글자 색 유지 */
}


.board-topbar-left h1 {
  font-size: 26px;
  margin: 0;
  color: #222;
}

.board-topbar-left h1,
.board-topbar-left p {
  display: block;
  margin: 0; /* 필요에 따라 여백 조정 */
}

.board-subtitle {
  margin-top: 4px;
  font-size: 20px;
  color: #666;
}

.board-topbar-right .write-button {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  background-color: #377dff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.board-topbar-right .write-button:hover {
  background-color: #2c64d6;
}

.split-text {
  display: inline-block;
  overflow: hidden;
  font-weight: 600;
  will-change: transform, opacity;
}

