@charset "utf-8";

/* ================================================
   그누보드 게시판 - 프리미엄 모던 스킨
   Design: Clean & Luxury Dark-Accent Theme
   ================================================ */

/* === CSS 변수 === */
:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --danger: #ef4444;
  --success: #10b981;
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === 공통 버튼 기본 === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 36px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-xs);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  font-family: var(--font);
}

/* ============================================
   목록 페이지 버튼
   ============================================ */
#bo_list a.btn_b01 {
  background: var(--bg-white);
  color: var(--text-secondary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
#bo_list a.btn_b01:focus,
#bo_list a.btn_b01:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
}

#bo_list a.btn_b02 {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
#bo_list a.btn_b02:focus,
#bo_list a.btn_b02:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
  transform: translateY(-1px);
  text-decoration: none;
}

#bo_list a.btn_admin,
#bo_list button.btn_admin {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}
#bo_list a.btn_admin:focus,
#bo_list a.btn_admin:hover,
#bo_list button.btn_admin:focus,
#bo_list button.btn_admin:hover,
#bo_list .btn_admin:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  box-shadow: 0 4px 14px rgba(239,68,68,0.4);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ============================================
   읽기 페이지 버튼
   ============================================ */
#bo_v a.btn_b01 {
  background: var(--bg-white);
  color: var(--text-secondary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
#bo_v a.btn_b01:focus,
#bo_v a.btn_b01:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
}

#bo_v a.btn_b02 {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
#bo_v a.btn_b02:focus,
#bo_v a.btn_b02:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
  text-decoration: none;
}

#bo_v a.btn_admin,
#bo_v button.btn_admin {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}
#bo_v a.btn_admin:focus,
#bo_v a.btn_admin:hover,
#bo_v button.btn_admin:focus,
#bo_v button.btn_admin:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  box-shadow: 0 4px 14px rgba(239,68,68,0.4);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ============================================
   쓰기 페이지 버튼
   ============================================ */
#bo_w .btn_confirm {}
#bo_w .btn_submit { padding: 0 28px; }
#bo_w button.btn_submit {
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 28px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
#bo_w button.btn_submit:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
  transform: translateY(-1px);
}
#bo_w fieldset .btn_submit {}
#bo_w .btn_cancel {
  height: 44px;
  background: var(--bg-white);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
#bo_w button.btn_cancel {}
#bo_w .btn_cancel:focus,
#bo_w .btn_cancel:hover {
  background: var(--bg);
  border-color: var(--text-muted);
  color: var(--text-primary);
}
#bo_w a.btn_frmline,
#bo_w button.btn_frmline {
  height: 38px;
  padding: 0 14px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
#bo_w button.btn_frmline:hover {
  background: #0891b2;
}

/* ============================================
   목록 테이블
   ============================================ */
#bo_list .tbl_head01 {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
#bo_list .tbl_head01 caption {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#bo_list .tbl_head01 thead th {
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  border-bottom: 1.5px solid var(--border);
  white-space: nowrap;
}
#bo_list .tbl_head01 thead a {
  color: var(--text-secondary);
  text-decoration: none;
}
#bo_list .tbl_head01 thead th input {}
#bo_list .tbl_head01 tfoot th {}
#bo_list .tbl_head01 tfoot td {}
#bo_list .tbl_head01 tbody th {}
#bo_list .tbl_head01 td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
  vertical-align: middle;
}
#bo_list .tbl_head01 tbody tr:last-child td {
  border-bottom: none;
}
#bo_list .tbl_head01 a {
  color: var(--text-primary);
  text-decoration: none;
}
#bo_list td.empty_table {
  text-align: center;
  padding: 60px 0 !important;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================
   읽기 내 테이블
   ============================================ */
#bo_v .tbl_head01 {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
#bo_v .tbl_head01 caption { position: absolute; font-size: 0; overflow: hidden; }
#bo_v .tbl_head01 thead th {
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1.5px solid var(--border);
}
#bo_v .tbl_head01 thead a { color: var(--text-secondary); }
#bo_v .tbl_head01 thead th input {}
#bo_v .tbl_head01 tfoot th {}
#bo_v .tbl_head01 tfoot td {}
#bo_v .tbl_head01 tbody th {}
#bo_v .tbl_head01 td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
#bo_v .tbl_head01 a { color: var(--primary); }
#bo_v td.empty_table {
  text-align: center;
  padding: 60px 0 !important;
  color: var(--text-muted);
}

/* ============================================
   쓰기 테이블
   ============================================ */
#bo_w table {
  width: 100%;
  border-collapse: collapse;
}
#bo_w caption { position: absolute; font-size: 0; overflow: hidden; }
#bo_w .frm_info {}
#bo_w .frm_address {}
#bo_w .frm_file {}
#bo_w .tbl_frm01 {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
#bo_w .tbl_frm01 th {
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
  width: 140px;
}
#bo_w .tbl_frm01 td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
}
#bo_w .tbl_frm01 textarea,
#bo_w .tbl_frm01 .frm_input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: var(--transition);
  box-sizing: border-box;
  font-family: var(--font);
}
#bo_w .tbl_frm01 textarea:focus,
#bo_w .tbl_frm01 .frm_input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
#bo_w .tbl_frm01 textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.6;
}
#bo_w .tbl_frm01 a { color: var(--primary); }
#bo_w .required,
#bo_w textarea.required {
  border-color: var(--border) !important;
}
#bo_w .required:focus,
#bo_w textarea.required:focus {
  border-color: var(--primary) !important;
}
#bo_w .cke_sc {}
#bo_w button.btn_cke_sc {}
#bo_w .cke_sc_def {}
#bo_w .cke_sc_def dl {}
#bo_w .cke_sc_def dl:after {}
#bo_w .cke_sc_def dt, #bo_w .cke_sc_def dd {}
#bo_w .cke_sc_def dt {}
#bo_w .cke_sc_def dd {}

/* ============================================
   게시판 목록 (목록 구조)
   ============================================ */
#bo_list {
  position: relative;
  font-family: var(--font);
}
#bo_list:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#bo_list .td_board { width: 120px; text-align: center; }
#bo_list .td_chk { width: 36px; text-align: center; }
#bo_list .td_date {
  width: 80px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal !important;
}
#bo_list .td_datetime {
  width: 90px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal !important;
}
#bo_list .td_group { width: 100px; text-align: center; }
#bo_list .td_mb_id { width: 100px; text-align: center; }
#bo_list .td_mng { width: 80px; text-align: center; }
#bo_list .td_name {
  width: 100px;
  text-align: left;
  padding: 14px 8px;
  color: var(--text-secondary);
  font-size: 13px;
}
#bo_list .td_nick { width: 100px; text-align: center; }
#bo_list .td_num {
  width: 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
#bo_list .td_num2 {
  width: 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
#bo_list .td_numbig { width: 80px; text-align: center; }
#bo_list .txt_active { color: var(--success); font-weight: 600; }
#bo_list .txt_expired { color: var(--text-muted); }

/* tbody 행 hover 효과 */
#bo_list .tbl_head01 tbody tr {
  transition: var(--transition);
  border-left: 3px solid transparent;
}
#bo_list tbody tr:hover {
  background: var(--primary-light) !important;
  border-left: 3px solid var(--primary) !important;
}
#bo_list tbody tr:hover td {
  border-bottom-color: var(--primary-light);
}

/* 카테고리 네비 */
#bo_cate {
  background: var(--bg-card);
  padding: 12px 16px;
  margin: 14px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
#bo_cate h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_cate ul { zoom: 1; }
#bo_cate ul:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_cate li { display: inline-block; padding: 3px; }
#bo_cate a {
  display: block;
  line-height: 30px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
#bo_cate a:focus,
#bo_cate a:hover,
#bo_cate a:active {
  text-decoration: none;
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}
#bo_cate #bo_cate_on {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-color: var(--primary-hover);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.td_subject img { margin-left: 6px; }

/* 목록 상단 정보 영역 */
#bo_btn_top {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
#bo_btn_top:after { display: none; }
.bo_fx { margin-bottom: 8px; float: right; zoom: 1; }
.bo_fx:after { display: block; visibility: hidden; clear: both; content: ""; }
.bo_fx ul { margin: 0; padding: 0; list-style: none; }

#bo_list_total {
  float: none;
  line-height: 32px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 0 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* 버튼 목록 */
.btn_bo_user {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.btn_bo_user li { float: none; margin-left: 0; }
.btn_bo_adm { float: left; }
.btn_bo_adm li { float: left; margin-right: 5px; }
.btn_bo_adm input {
  padding: 0 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  height: 34px;
  vertical-align: middle;
  cursor: pointer;
}

/* 공지사항 행 */
.bo_notice td {
  background: linear-gradient(135deg, #fffbeb 0%, #fef9ec 100%) !important;
  border-bottom: 1px solid #fde68a !important;
}
.bo_notice td a { font-weight: 700; color: var(--text-primary) !important; }

/* 공지 아이콘 */
.bo_notice .notice_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  width: 28px;
  height: 24px;
  line-height: 24px;
  border-radius: var(--radius-xs);
  font-weight: normal;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
}
.td_num strong { color: var(--text-primary); font-weight: 700; }

/* 분류 링크 */
.bo_cate_link {
  display: inline-block;
  color: var(--primary);
  height: 22px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-light);
  padding: 0 8px;
  border-radius: 4px;
  line-height: 22px;
  margin-right: 4px;
}

/* 제목 */
.bo_tit {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.bo_tit a {
  color: var(--text-primary) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.bo_tit a:hover { color: var(--primary) !important; }
.bo_current {
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* 프로필 이미지 */
#bo_list .profile_img img { border-radius: 50%; box-shadow: var(--shadow-sm); }

/* 댓글 수 뱃지 */
#bo_list .cnt_cmt {
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  height: 18px;
  line-height: 18px;
  padding: 0 7px;
  border-radius: 9px;
  vertical-align: middle;
  font-weight: 700;
  margin-left: 4px;
}

/* 아이콘 뱃지 */
#bo_list .bo_tit .title_icon { margin-right: 3px; }
#bo_list .bo_tit .fa-download {
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 10px;
  border-radius: 4px;
  margin-right: 3px;
  vertical-align: middle;
}
#bo_list .bo_tit .fa-link {
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: #a855f7;
  color: #fff;
  text-align: center;
  font-size: 10px;
  border-radius: 4px;
  margin-right: 3px;
  vertical-align: middle;
  font-weight: normal;
}
#bo_list .bo_tit .new_icon {
  display: inline-block;
  width: 18px;
  line-height: 18px;
  font-size: 0.75em;
  color: #fff;
  background: var(--success);
  text-align: center;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 3px;
  font-weight: 700;
}
#bo_list .bo_tit .fa-heart {
  display: inline-block;
  width: 18px;
  line-height: 18px;
  font-size: 0.75em;
  color: #fff;
  background: #ec4899;
  text-align: center;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 3px;
  font-weight: normal;
}
#bo_list .bo_tit .fa-lock {
  display: inline-block;
  line-height: 16px;
  width: 18px;
  font-size: 0.75em;
  color: var(--text-secondary);
  background: var(--border-light);
  text-align: center;
  border-radius: 4px;
  font-size: 11px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

/* ============================================
   검색 바
   ============================================ */
#bo_sch {
  float: left;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  margin-top: 6px;
}
#bo_sch:hover, #bo_sch:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
#bo_sch:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_sch legend { position: absolute; margin: 0; padding: 0; font-size: 0; line-height: 0; text-indent: -9999em; overflow: hidden; }
#bo_sch select {
  border: 0;
  border-right: 1px solid var(--border);
  margin: 8px 0;
  height: 26px;
  float: left;
  background: transparent;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0 10px;
  cursor: pointer;
}
#bo_sch .sch_input {
  height: 42px;
  border: 0;
  padding: 0 14px;
  background-color: transparent;
  float: left;
  font-size: 14px;
  color: var(--text-primary);
  min-width: 200px;
  outline: none;
  font-family: var(--font);
}
#bo_sch .sch_btn {
  height: 42px;
  float: left;
  background: var(--primary);
  border: 0;
  width: 44px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 22px 22px 0;
}
#bo_sch .sch_btn:hover {
  background: var(--primary-hover);
}

/* ============================================
   게시물 쓰기 (write)
   ============================================ */
#char_count_desc { display: block; margin: 0 0 5px; padding: 0; font-size: 12px; color: var(--text-muted); }
#char_count_wrap { margin: 5px 0 0; text-align: right; font-size: 12px; color: var(--text-muted); }
#char_count { font-weight: 700; color: var(--primary); }

#autosave_wrapper { position: relative; }
#autosave_pop {
  display: none;
  z-index: 100;
  position: absolute !important;
  top: 40px;
  right: 0;
  width: 360px;
  height: auto !important;
  max-height: 200px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
#autosave_pop:before { content: ""; position: absolute; top: -7px; right: 45px; width: 0; height: 0; border-style: solid; border-width: 0 6px 7px 6px; border-color: transparent transparent var(--border) transparent; }
#autosave_pop:after { content: ""; position: absolute; top: -6px; right: 45px; width: 0; height: 0; border-style: solid; border-width: 0 6px 7px 6px; border-color: transparent transparent #fff transparent; }
html.no-overflowscrolling #autosave_pop { height: auto; max-height: 10000px !important; }
#autosave_pop strong { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#autosave_pop div { text-align: center; margin: 0 !important; }
#autosave_pop button { margin: 0; padding: 0; border: 0; }
#autosave_pop ul {
  padding: 12px;
  border-top: 1px solid var(--border-light);
  list-style: none;
  overflow-y: scroll;
  height: 140px;
  border-bottom: 1px solid var(--border-light);
}
#autosave_pop li {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
  border-radius: var(--radius-xs);
  margin-bottom: 4px;
  zoom: 1;
}
#autosave_pop li:after { display: block; visibility: hidden; clear: both; content: ""; }
#autosave_pop a { display: block; float: left; color: var(--text-primary); font-size: 13px; }
#autosave_pop span { display: block; float: right; font-size: 0.85em; color: var(--text-muted); }
.autosave_close {
  cursor: pointer;
  width: 100%;
  height: 32px;
  background: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  border: 0;
  transition: var(--transition);
}
.autosave_close:hover { background: var(--bg); color: var(--primary); }
.autosave_content { display: none; }
.autosave_del {
  background: url(./img/close_btn.png) no-repeat 50% 50%;
  text-indent: -999px;
  overflow: hidden;
  height: 22px;
  width: 22px;
}

/* ============================================
   게시물 읽기 (view)
   ============================================ */
#bo_v {
  margin-bottom: 24px;
  padding: 32px;
  background: var(--bg-white);
  box-sizing: border-box;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-family: var(--font);
}

#bo_v_table {
  position: absolute;
  top: 0;
  right: 16px;
  margin: 0;
  padding: 0 12px;
  height: 26px;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  line-height: 26px;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  font-size: 12px;
}

#bo_v_title {}
#bo_v_title .bo_v_cate {
  display: inline-block;
  line-height: 28px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 0 12px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
  margin-bottom: 10px;
}
#bo_v_title .bo_v_tit {
  display: block;
  font-size: 1.6em;
  font-weight: 800;
  margin: 10px 0 0;
  word-break: break-all;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* 게시물 정보 */
#bo_v_info {
  padding: 14px 0;
  margin: 16px 0 20px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1.5px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
}
#bo_v_info:after { display: none; }
#bo_v_info h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_v_info strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 8px 0 0;
  font-weight: 600;
  color: var(--text-secondary);
}
#bo_v_info .sv_member,
#bo_v_info .sv_guest,
#bo_v_info .member,
#bo_v_info .guest { font-weight: 700; color: var(--text-primary); }
#bo_v_info .profile_img {}
#bo_v_info .profile_img img { border-radius: 50%; box-shadow: var(--shadow-sm); }
#bo_v_info .sv_member { color: var(--text-primary); }
#bo_v_info .if_view {
  display: inline-block;
  background: url(./img/icon_view.png) no-repeat 50% 50%;
  height: 15px;
  width: 20px;
  overflow: hidden;
  text-indent: -999px;
  vertical-align: middle;
  margin-right: 3px;
  opacity: 0.6;
}
#bo_v_info .if_comment {
  display: inline-block;
  background: url(./img/icon_comment.png) no-repeat 50% 50%;
  height: 15px;
  width: 20px;
  overflow: hidden;
  text-indent: -999px;
  vertical-align: middle;
  margin-right: 3px;
  opacity: 0.6;
}
#bo_v_info .if_date {
  margin-left: auto;
  font-style: normal;
  color: var(--text-muted);
  font-size: 12px;
}

/* 첨부파일 */
#bo_v_file {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
#bo_v_file h2 {
  padding: 12px 16px;
  background: var(--bg);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
#bo_v_file ul { margin: 0; padding: 4px 0; list-style: none; }
#bo_v_file li {
  padding: 10px 16px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
#bo_v_file li:last-child { border-bottom: none; }
#bo_v_file a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: underline;
  word-wrap: break-word;
  font-weight: 500;
}
#bo_v_file a:focus,
#bo_v_file a:hover,
#bo_v_file a:active { text-decoration: none; color: var(--primary-hover); }
#bo_v_file img { float: left; margin: 0 10px 0 0; border-radius: 4px; }
.bo_v_file_cnt {
  position: absolute;
  top: 10px;
  right: 16px;
  color: var(--text-muted);
  font-size: 11px;
}

/* 관련 링크 */
#bo_v_link {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
#bo_v_link h2 {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}
#bo_v_link ul { margin: 0; padding: 4px 0; list-style: none; }
#bo_v_link li { padding: 10px 16px; position: relative; border-bottom: 1px solid var(--border-light); font-size: 13px; }
#bo_v_link li:last-child { border-bottom: none; }
#bo_v_link a { display: inline-block; color: var(--primary); text-decoration: underline; word-wrap: break-word; }
#bo_v_link a:focus, #bo_v_link a:hover, #bo_v_link a:active { text-decoration: none; }
.bo_v_link_cnt { position: absolute; top: 10px; right: 16px; color: var(--text-muted); font-size: 11px; }

/* 게시물 버튼 영역 */
#bo_v_top { zoom: 1; margin-top: 20px; }
#bo_v_top:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_v_top h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_v_top ul { padding: 0; list-style: none; word-break: break-all; }

#bo_v_bot { zoom: 1; }
#bo_v_bot:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_v_bot h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_v_bot ul { padding: 0; list-style: none; }

.bo_v_com { margin: 16px 0; float: right; display: flex; gap: 6px; }
.bo_v_com li { float: none; margin-left: 0; }

.bo_v_left { margin: 16px 0; float: left; display: flex; gap: 6px; }
.bo_v_left li { float: none; margin-right: 0; }

/* 이전글/다음글 */
.bo_v_nb {
  margin: 24px 0;
  position: relative;
  clear: both;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bo_v_nb:after { display: block; visibility: hidden; clear: both; content: ""; }
.bo_v_nb li {
  border-bottom: 1px solid var(--border-light);
  padding: 14px 18px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bo_v_nb li:last-child { border-bottom: none; }
.bo_v_nb li:hover { background: var(--primary-light); }
.bo_v_nb li i { font-size: 12px; color: var(--text-muted); }
.bo_v_nb li .nb_tit {
  display: inline-block;
  padding-right: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  min-width: 60px;
}
.bo_v_nb li a {
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  flex: 1;
}
.bo_v_nb li a:hover { color: var(--primary); }
.bo_v_nb li .nb_date {
  color: var(--text-muted);
  font-size: 12px;
  margin-left: auto;
}

/* 본문 */
#bo_v_atc { min-height: 200px; height: auto !important; }
#bo_v_atc_title { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }

#bo_v_img { width: 100%; overflow: hidden; zoom: 1; }
#bo_v_img:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_v_img a.view_image { display: block; }
#bo_v_img img { margin-bottom: 20px; max-width: 100%; height: auto; border-radius: var(--radius-xs); }

#bo_v_con {
  margin: 20px 0 30px;
  width: 100%;
  line-height: 1.85em;
  min-height: 200px;
  word-break: break-all;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-primary);
}
#bo_v_con a { color: var(--primary); text-decoration: underline; }
#bo_v_con img { max-width: 100%; height: auto; border-radius: var(--radius-xs); }

/* 추천/비추천 */
#bo_v_act {
  margin: 28px 0;
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
#bo_v_act .bo_v_act_gng { position: relative; display: inline-block; }
#bo_v_act a { margin: 0 8px; vertical-align: middle; }
#bo_v_act a:hover { background-color: transparent; }
#bo_v_act_good,
#bo_v_act_nogood {
  display: none;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  width: 180px;
  background: var(--text-primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-xs);
  font-size: 13px;
  box-shadow: var(--shadow-md);
}
#bo_v_act .bo_v_good {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--success);
  width: 80px;
  height: 80px;
  background: url(./img/icon_good.png) center 16px no-repeat, linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-radius: 50%;
  font-style: normal;
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
  padding-top: 46px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(16,185,129,0.2);
}
#bo_v_act .bo_v_good:hover {
  background: url(./img/icon_good.png) center 16px no-repeat, var(--success);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16,185,129,0.4);
  transform: scale(1.05);
}
#bo_v_act .bo_v_nogood {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #94a3b8;
  width: 80px;
  height: 80px;
  background: url(./img/icon_bad.png) center 16px no-repeat, linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 50%;
  font-style: normal;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  padding-top: 46px;
  cursor: pointer;
  transition: var(--transition);
}
#bo_v_act .bo_v_nogood:hover {
  border-color: var(--danger);
  color: var(--danger);
}

/* 공유 버튼 */
#bo_v_share { position: relative; margin: 20px 0; text-align: right; }
#bo_v_share .btn {
  padding: 0 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 13px;
  line-height: 34px;
  height: 36px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
}
#bo_v_share .btn:hover { background: var(--bg); color: var(--primary); border-color: var(--primary); }
#bo_v_share .btn i {
  margin-right: 6px;
  background: var(--bg);
  color: var(--text-secondary);
  text-align: center;
  width: 26px;
  line-height: 26px;
  vertical-align: middle;
  border-radius: 4px;
}
#bo_v_share .btn_share {}
#bo_v_share .btn_share:hover {}

.bo_v_snswr { position: relative; display: inline-block; margin-left: -1px; }
#bo_v_sns {
  display: none;
  position: absolute;
  top: -58px;
  left: 50%;
  margin-left: -95px;
  width: 190px;
  padding: 0;
  list-style: none;
  zoom: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
#bo_v_sns:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_v_sns:before { content: ""; position: absolute; bottom: -7px; left: 88px; width: 0; height: 0; border-style: solid; border-width: 7px 6px 0 6px; border-color: var(--text-primary) transparent transparent transparent; }
#bo_v_sns li { float: left; width: 63px; text-align: center; }
#bo_v_sns li a { height: 44px; padding: 10px 0; }
#bo_v_sns li .sns_f { display: block; background: #1877f2; }
#bo_v_sns li .sns_t { display: block; background: #1da1f2; }
#bo_v_sns li .sns_g { display: block; background: #ea4335; }
#bo_v_sns.show_kakao { width: 254px; margin-left: -127px; }
#bo_v_sns li .sns_k { display: block; background: #fae300; }
#bo_v_sns li img { vertical-align: top; }

/* ============================================
   게시판 댓글
   ============================================ */
.cmt_btn {
  background: none;
  border: 0;
  border-bottom: 2.5px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1em;
  margin: 28px 0 0;
  padding: 0 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  letter-spacing: -0.02em;
}
.cmt_btn:hover { color: var(--primary-hover); }
.cmt_btn_op { border-bottom-color: var(--border); color: var(--text-secondary); }

#bo_vc {}
#bo_vc h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_vc article {
  margin: 16px 0;
  position: relative;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
#bo_vc article:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
#bo_vc article .profile_img img { border-radius: 50%; box-shadow: var(--shadow-sm); }
#bo_vc header {}
#bo_vc header:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_vc header .icon_reply { position: absolute; top: 15px; left: -20px; color: var(--text-muted); }
#bo_vc .member,
#bo_vc .guest,
#bo_vc .sv_member,
#bo_vc .sv_guest { font-weight: 700; color: var(--text-primary); }
.bo_vc_hdinfo { float: right; font-style: normal; color: var(--text-muted); font-size: 12px; }
#bo_vc h1 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
#bo_vc .cmt_contents {
  padding: 14px 16px;
  margin: 10px 0 0;
  background: var(--bg-white);
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  line-height: 1.8em;
  font-size: 14px;
  color: var(--text-primary);
}
#bo_vc p a { text-decoration: underline; color: var(--primary); }
#bo_vc p a.s_cmt { text-decoration: underline; color: var(--danger); }
#bo_vc_empty {
  margin: 0;
  padding: 60px 0 !important;
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}
#bo_vc #bo_vc_winfo { float: left; }

/* 댓글 액션 버튼 */
.bo_vc_act {
  text-align: right;
  margin: 8px 0 0;
  list-style: none;
  zoom: 1;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.bo_vc_act:after { display: block; visibility: hidden; clear: both; content: ""; }
.bo_vc_act li { display: inline-block; }
.bo_vc_act li a {
  padding: 3px 10px;
  line-height: 24px;
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  background: var(--bg-white);
}
.bo_vc_act li a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}

/* 댓글 쓰기 박스 */
.bo_vc_w {
  position: relative;
  margin: 16px 0;
  display: block;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.bo_vc_w:after { display: block; visibility: hidden; clear: both; content: ""; }
.bo_vc_w h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
.bo_vc_w #char_cnt { display: block; margin: 0 0 8px; font-size: 12px; color: var(--text-muted); }
.bo_vc_w textarea {
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-primary);
  vertical-align: middle;
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  width: 100%;
  height: 120px;
  font-size: 14px;
  font-family: var(--font);
  line-height: 1.7;
  resize: vertical;
  transition: var(--transition);
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.bo_vc_w textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
  background: var(--bg-white);
}
#wr_secret {}
.bo_vc_w_info { margin: 10px 0; float: left; }
.bo_vc_w_info:after { display: block; visibility: hidden; clear: both; content: ""; }
.bo_vc_w_info .frm_input {
  float: left;
  margin-right: 6px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: var(--transition);
  font-family: var(--font);
}
.bo_vc_w_info .frm_input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.bo_vc_w_info #captcha { padding-top: 10px; display: block; clear: both; }
.bo_vc_w .btn_confirm { float: right; margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.bo_vc_w .btn_confirm label {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  border-radius: var(--radius-xs);
  font-size: 1.3em;
  text-align: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}
.bo_vc_w .btn_confirm label:hover { color: var(--primary); }
.bo_vc_w .btn_submit {
  height: 42px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
  font-family: var(--font);
}
.bo_vc_w .btn_submit:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
  transform: translateY(-1px);
}
.bo_vc_w_wr:after { display: block; visibility: hidden; clear: both; content: ""; }

/* 댓글 SNS */
#bo_vc_send_sns { display: inline-block; float: left; }
#bo_vc_sns { display: inline-block; margin: 0; padding: 0; list-style: none; zoom: 1; }
#bo_vc_sns:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_vc_sns li { float: left; margin: 0 6px 0 0; }
#bo_vc_sns .sns_li_f {
  border-radius: var(--radius-xs);
  background: #1877f2;
  height: 38px;
  line-height: 38px;
  padding: 0 0 0 10px;
}
#bo_vc_sns .sns_li_t {
  border-radius: var(--radius-xs);
  background: #1da1f2;
  height: 38px;
  line-height: 38px;
  padding: 0 0 0 10px;
}
#bo_vc_sns .sns_li_off { background: var(--border); border-radius: var(--radius-xs); }
#bo_vc_sns a { display: inline-block; padding: 0 15px 0 5px; color: #fff; font-size: 13px; font-weight: 600; }
#bo_vc_sns input { margin: 0 5px 0 0; }

/* ============================================
   글쓰기 (write form)
   ============================================ */
#bo_w .write_div { margin: 10px 0; position: relative; }
#bo_w .bo_w_info:after { display: block; visibility: hidden; clear: both; content: ""; }
#bo_w .bo_w_info .frm_input { float: left; width: 33%; }
#bo_w #wr_password { margin: 0 0.5%; }
#bo_w .wr_content.smarteditor2 iframe { background: var(--bg-white); }
#bo_w .bo_w_tit { position: relative; }
#bo_w .bo_w_tit .frm_input { padding-right: 130px; }
#bo_w .bo_w_tit #btn_autosave {
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 30px;
  height: 30px;
  font-size: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  padding: 0 10px;
  cursor: pointer;
}
#bo_w .bo_w_link label {
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  height: 38px;
  line-height: 38px;
  width: 42px;
  background: var(--bg);
  text-align: center;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
#bo_w .bo_w_link .frm_input { padding-left: 52px; }
#bo_w .bo_w_flie .lb_icon {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  height: 38px;
  line-height: 38px;
  width: 42px;
  background: var(--bg);
  text-align: center;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
#bo_w .bo_w_flie .frm_file { padding-left: 52px; }
#bo_w .bo_w_flie .file_wr {
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-primary);
  vertical-align: middle;
  border-radius: var(--radius-xs);
  padding: 5px 12px;
  height: 40px;
  margin: 0;
  font-size: 13px;
  transition: var(--transition);
}
#bo_w .bo_w_flie .file_wr:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
#bo_w .bo_w_flie .frm_input { margin: 10px 0 0; }
#bo_w .bo_w_flie .file_del {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: var(--danger);
  cursor: pointer;
}
#bo_w .bo_w_select select {
  border: 1.5px solid var(--primary);
  height: 40px;
  border-radius: var(--radius-xs);
  padding: 0 12px;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg-white);
  cursor: pointer;
}

/* ============================================
   글로벌 폼 인풋 스타일
   ============================================ */
.frm_input {
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: var(--transition);
  font-family: var(--font);
  box-sizing: border-box;
}
.frm_input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.frm_input::placeholder { color: var(--text-muted); }

/* ============================================
   페이지네이션 (공통 그누보드 페이지)
   ============================================ */
.pg_wrap {
  text-align: center;
  margin: 24px 0;
  font-family: var(--font);
}
.pg_wrap .pg {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pg_wrap .pg a,
.pg_wrap .pg strong,
.pg_wrap .pg span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
}
.pg_wrap .pg a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.pg_wrap .pg strong {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.pg_wrap .pg .pg_prev,
.pg_wrap .pg .pg_next {
  font-size: 12px;
  color: var(--text-muted);
}
.pg_wrap .pg .pg_prev:hover,
.pg_wrap .pg .pg_next:hover {
  color: var(--primary);
  background: var(--primary-light);
  border-color: var(--primary);
}

/* ============================================
   반응형 (모바일)
   ============================================ */
@media (max-width: 768px) {
  #bo_v { padding: 20px 16px; }
  #bo_v_title .bo_v_tit { font-size: 1.3em; }
  #bo_v_info { flex-direction: column; align-items: flex-start; gap: 6px; }
  #bo_v_info .if_date { margin-left: 0; }

  #bo_btn_top { flex-direction: column; align-items: flex-start; }
  .btn_bo_user { float: none; }

  #bo_list .tbl_head01 thead th,
  #bo_list .tbl_head01 td {
    padding: 10px 10px;
    font-size: 13px;
  }
  .td_name, .td_datetime, .td_num { display: none; }

  #bo_sch .sch_input { min-width: 120px; }

  .bo_vc_w { padding: 14px; }
  .bo_v_com, .bo_v_left { float: none; display: flex; gap: 5px; flex-wrap: wrap; }
  .bo_v_nb li { flex-wrap: wrap; }
  .bo_v_nb li .nb_date { margin-left: 0; }

  #bo_w .tbl_frm01 th,
  #bo_w .tbl_frm01 td { display: block; width: 100%; box-sizing: border-box; }
  #bo_w .tbl_frm01 th { border-bottom: none; padding-bottom: 4px; }
}
