@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; }
}


/* 완료확인 포인트 지급 */
.bo_v_reward_admin_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid #d9f1e6;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fffb 0%, #eefcf5 100%);
  box-shadow: 0 8px 24px rgba(16,185,129,0.08);
}
.bo_v_reward_admin_copy strong {
  display: block;
  margin: 0 0 6px;
  color: #0f7a55;
  font-size: 15px;
  font-weight: 800;
}
.bo_v_reward_admin_copy p {
  margin: 0;
  color: #4b5f57;
  line-height: 1.6;
  font-size: 14px;
}
.bo_v_reward_admin_action {
  flex: 1 1 auto;
}
.bo_v_reward_button_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
  width: 100%;
}
.bo_v_complete_reward_form {
  display: block;
  margin: 0;
}
#bo_v .bo_v_complete_reward_form .btn_complete_reward,
#bo_v .btn_complete_reward_done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid #10b981;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(16,185,129,0.22);
  box-sizing: border-box;
}
#bo_v .bo_v_complete_reward_form .btn_complete_reward:hover,
#bo_v .bo_v_complete_reward_form .btn_complete_reward:focus {
  transform: translateY(-1px);
  filter: brightness(0.97);
  text-decoration: none;
}
#bo_v .btn_complete_reward_done {
  border-color: #cfe0da;
  background: #f4f8f6;
  color: #62756e;
  box-shadow: none;
  cursor: default;
}
.btn_complete_reward_amount {
  white-space: nowrap;
}
#bo_vc .bo_vc_reward_comment {
  border: 1px solid #d8efe4;
  border-radius: 12px;
  background: #f7fcf9;
  padding: 0;
}
#bo_vc .bo_vc_reward_comment > header {
  background: #edf9f2;
  border-radius: 12px 12px 0 0;
}
#bo_vc .bo_vc_reward_comment .cmt_contents p {
  color: #0f7a55;
  font-weight: 700;
}
@media (max-width: 768px) {
  .bo_v_reward_admin_box {
    display: block;
    padding: 16px;
  }
  .bo_v_reward_admin_action {
    margin-top: 12px;
  }
  .bo_v_reward_button_grid {
    grid-template-columns: 1fr;
  }
  #bo_v .bo_v_complete_reward_form .btn_complete_reward,
  #bo_v .btn_complete_reward_done {
    width: 100%;
  }
}
/* ===== Responsive patch : priority 16~20 (board/basic2/style.css) ===== */
@media (max-width: 991.98px) {
    #bo_list {width:100% !important; max-width:100%;}
    #bo_btn_top, .bo_fx {display:flex; flex-direction:column; gap:10px;}
    #bo_list_total, .btn_bo_user, .bo_fx, #bo_sch {float:none; width:100%;}
    .btn_bo_user, .btn_bo_adm {display:flex; flex-wrap:wrap; gap:8px;}
    .btn_bo_user li, .btn_bo_adm li {float:none; margin:0;}
    .btn_bo_user .btn, .btn_bo_adm .btn, .btn_bo_adm input {display:inline-flex; align-items:center; justify-content:center; min-height:38px;}
    #bo_cate ul {display:flex; flex-wrap:wrap; gap:6px;}
    #bo_cate li {padding:0;}
    #bo_sch {display:flex; align-items:center; width:100%; padding:6px;}
    #bo_sch select {flex:0 0 110px; min-width:110px; margin:0;}
    #bo_sch .sch_input {flex:1 1 auto; min-width:0;}
    #bo_sch .sch_btn {flex:0 0 40px;}

    #bo_list .tbl_wrap {margin:0; overflow:visible;}
    #bo_list .tbl_head01,
    #bo_list .tbl_head01 table,
    #bo_list .tbl_head01 tbody,
    #bo_list .tbl_head01 tr,
    #bo_list .tbl_head01 th,
    #bo_list .tbl_head01 td {display:block; width:100%;}
    #bo_list .tbl_head01 thead {display:none;}
    #bo_list .tbl_head01 table {border:0; background:transparent;}
    #bo_list .tbl_head01 tbody tr {
        margin:0 0 12px;
        padding:14px;
        border:1px solid var(--border, #d9e0e6);
        border-radius:16px;
        background:#fff;
        box-shadow:var(--shadow-sm, 0 8px 22px rgba(24, 39, 75, 0.08));
    }
    #bo_list .tbl_head01 td {
        display:flex;
        align-items:flex-start;
        justify-content:space-between;
        gap:12px;
        padding:7px 0;
        border:0;
        text-align:left !important;
        line-height:1.5;
    }
    #bo_list .tbl_head01 td::before {
        content:attr(data-label);
        flex:0 0 72px;
        color:var(--text-secondary, #6b7280);
        font-weight:700;
    }
    #bo_list .tbl_head01 td.td_subject {
        display:block;
        margin-bottom:10px;
        padding:0 0 10px;
        border-bottom:1px solid var(--border-light, #edf1f5);
    }
    #bo_list .tbl_head01 td.td_subject::before {display:block; margin-bottom:6px;}
    #bo_list .tbl_head01 td.td_chk {display:flex; justify-content:flex-start;}
    #bo_list td.empty_table {padding:60px 15px !important; border:1px solid var(--border, #d9e0e6); border-radius:16px; background:#fff;}

    #bo_v {padding:18px;}
    #bo_v_table {position:static; display:inline-block; margin-bottom:12px;}
    #bo_v_title .bo_v_tit {font-size:1.5em; line-height:1.4;}
    #bo_v_info strong {display:block; margin:0 0 6px;}
    #bo_v_info .if_date {float:none; display:block; margin-top:6px;}
    .bo_v_file_cnt, .bo_v_link_cnt {position:static; display:block; margin-top:4px;}
    .bo_v_left, .bo_v_com {float:none; margin:12px 0;}
    .bo_v_left li, .bo_v_com li {float:left; margin:0 6px 6px 0;}
    .bo_v_nb li .nb_tit {display:block; padding:0 0 4px;}
    .bo_v_nb li .nb_date {float:none; display:block;}

    #bo_w {padding:18px;}
    #bo_w .bo_w_form {width:100% !important; max-width:100%;}
    #bo_w .write_div {margin-bottom:12px;}
    #bo_w .bo_w_info {display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:8px;}
    #bo_w .frm_input,
    #bo_w textarea,
    #bo_w select,
    #bo_w .frm_file,
    #bo_w .wr_content,
    #bo_w .bo_w_file input[type="text"] {width:100% !important; max-width:100%;}
    #bo_w .bo_w_option {display:flex; flex-wrap:wrap; gap:10px 14px; align-items:center;}
    #bo_w .bo_w_option label {margin-right:8px;}
    #bo_w .file_wr {display:flex; gap:10px; align-items:center;}
    #bo_w .file_del {display:block; margin-top:8px; word-break:break-all;}
    #bo_w .btn_confirm {display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px;}
    #bo_w .btn_confirm .btn {flex:1 1 160px; text-align:center;}
    #autosave_pop {right:0; width:min(100%, 320px);}
}

@media (max-width: 767.98px) {
    .btn_bo_user, .btn_bo_adm {flex-direction:column;}
    .btn_bo_user .btn, .btn_bo_adm .btn, .btn_bo_adm input {width:100%;}
    #bo_sch {gap:6px;}
    #bo_sch select {flex:0 0 96px; min-width:96px;}
    #bo_sch .sch_input {width:auto;}
    #bo_list .tbl_head01 tbody tr {padding:12px;}
    #bo_list .tbl_head01 td::before {flex-basis:60px; font-size:0.92em;}
    #bo_v {padding:14px;}
    #bo_v_title .bo_v_tit {font-size:1.28em;}
    #bo_v_share .btn {display:flex; width:100%; margin:0 0 8px;}
    .bo_vc_hdinfo {float:none; display:block; margin-top:4px;}
    #bo_w {padding:14px;}
    #bo_w .bo_w_info {grid-template-columns:1fr;}
    #bo_w .file_wr {align-items:flex-start;}
    #bo_w .btn_confirm .btn {flex:1 1 100%; width:100%;}
    #captcha #captcha_img {display:block; width:100%; max-width:100%; height:auto; margin-bottom:8px;}
    #captcha #captcha_key {display:block; width:100%; margin:8px 0 0;}
}

/* =========================================================
   Basic2 Premium White Theme
   navy #2f5d93 / deep #1d4271 / gold #c9a45d
   ========================================================= */
:root {
  --bg: #ffffff;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border: #e3eaf3;
  --border-light: #eef2f8;
  --text-primary: #16243f;
  --text-secondary: #4b5b76;
  --text-muted: #8094b3;
  --primary: #2f5d93;
  --primary-hover: #1d4271;
  --primary-light: #eef4fc;
}

#bo_list_total { display:none !important; }

#bo_list, #bo_v, #bo_w {
    background:#ffffff !important;
    border:1px solid #e3eaf3 !important;
    border-radius:22px !important;
    padding:24px !important;
    color:#16243f !important;
    box-shadow:0 30px 60px -20px rgba(20,40,80,.18), 0 12px 24px -12px rgba(20,40,80,.10), inset 0 1px 0 rgba(255,255,255,.9) !important;
    position:relative !important;
    overflow:hidden;
}
#bo_list::before, #bo_v::before, #bo_w::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg, #c9a45d 0%, #2f5d93 50%, #c9a45d 100%);
    opacity:.85;
    pointer-events:none;
}

#bo_btn_top {
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    margin:0 0 18px !important;
    padding:0 !important;
}
#bo_btn_top:after { content:none !important; }
#bo_btn_top .btn_bo_user {
    display:flex !important; flex-wrap:wrap; gap:8px;
    margin:0 !important; padding:0 !important; list-style:none; float:none !important;
}
#bo_btn_top .btn_bo_user li { float:none !important; margin:0 !important; }
#bo_btn_top .btn, .bo_fx .btn {
    height:40px; line-height:38px;
    padding:0 18px !important;
    border-radius:12px !important;
    font-weight:700 !important;
    display:inline-flex; align-items:center; gap:6px;
}
#bo_btn_top .btn_b01, .bo_fx .btn_b01 {
    background:linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%) !important;
    border:1px solid #d3dff0 !important;
    color:#284d79 !important;
    box-shadow:0 8px 20px rgba(31,65,110,.10) !important;
}
#bo_btn_top .btn_b02, .bo_fx .btn_b02 {
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    border:1px solid #1d4271 !important;
    color:#ffffff !important;
    box-shadow:0 14px 28px rgba(29,66,113,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
#bo_btn_top .btn_admin, .bo_fx .btn_admin {
    background:linear-gradient(135deg, #b58a45 0%, #8b6322 100%) !important;
    border:1px solid #8b6322 !important;
    color:#fff8e6 !important;
    box-shadow:0 12px 24px rgba(139,99,34,.28), inset 0 1px 0 rgba(255,255,255,.20) !important;
}

#bo_cate {
    background:linear-gradient(180deg, #fbfdff 0%, #eef4fc 100%) !important;
    border:1px solid #d8e4f3 !important;
    border-radius:16px !important;
    padding:12px !important;
    margin:0 0 18px !important;
}
#bo_cate ul { display:flex; flex-wrap:wrap; gap:6px; }
#bo_cate li { padding:0 !important; }
#bo_cate a {
    background:#ffffff !important;
    border:1px solid #d7e3f2 !important;
    color:#345986 !important;
    border-radius:999px !important;
    padding:0 16px !important;
    line-height:34px !important;
    font-weight:700;
    box-shadow:0 4px 10px rgba(34,64,104,.06);
}
#bo_cate a:hover, #bo_cate a:focus {
    transform:translateY(-1px);
    border-color:#a9c3e3 !important;
    color:#163e6d !important;
}
#bo_cate #bo_cate_on {
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    border-color:#1d4271 !important;
    color:#ffffff !important;
    box-shadow:0 12px 22px rgba(29,66,113,.26), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

#bo_list .tbl_head01 { margin:0 !important; }
#bo_list .tbl_head01 table {
    border-collapse:separate !important;
    border-spacing:0 !important;
    width:100%;
    background:#ffffff !important;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #eaeff6;
}
#bo_list .tbl_head01 thead th {
    background:linear-gradient(180deg, #f7faff 0%, #eaf1f9 100%) !important;
    color:#1f4475 !important;
    font-weight:800 !important;
    font-size:13px !important;
    letter-spacing:0.04em;
    border-top:0 !important;
    border-bottom:1px solid #d8e3f0 !important;
    padding:14px 10px !important;
    text-transform:uppercase;
}
#bo_list .tbl_head01 thead th a { color:inherit !important; }
#bo_list .tbl_head01 tbody td {
    padding:16px 12px !important;
    border-top:0 !important;
    border-bottom:1px solid #f0f3f7 !important;
    color:#28344a !important;
    font-size:13.5px;
    background:#ffffff !important;
}
#bo_list tbody tr:hover td { background:#f6faff !important; }
#bo_list .tbl_head01 tbody tr:last-child td { border-bottom:0 !important; }

#bo_list .bo_notice td {
    background:linear-gradient(90deg, #fff8e6 0%, #fdf3d3 100%) !important;
    border-bottom:1px solid #ecdda7 !important;
}
#bo_list .bo_notice .notice_icon {
    background:linear-gradient(135deg, #c9a45d 0%, #8c6822 100%) !important;
    color:#fffbea !important;
    box-shadow:0 6px 14px rgba(140,104,34,.22);
}

#bo_list .bo_tit, #bo_list .bo_tit a {
    color:#16243f !important;
    font-weight:700;
    letter-spacing:-0.01em;
}
#bo_list .bo_tit a:hover { color:#2f5d93 !important; }
#bo_list .td_num, #bo_list .td_num2,
#bo_list .td_datetime, #bo_list .td_date {
    color:#5d6f8a !important;
    font-style:normal !important;
    font-weight:600;
    font-variant-numeric:tabular-nums;
}
#bo_list .td_name { color:#324b6f !important; font-weight:700; }
#bo_list .bo_cate_link {
    display:inline-block;
    line-height:22px;
    padding:0 10px;
    border-radius:999px;
    background:#eef4fc;
    color:#2f5d93 !important;
    font-size:11.5px;
    font-weight:700;
    margin-right:6px;
    border:1px solid #dbe6f4;
}
#bo_list .cnt_cmt {
    background:linear-gradient(135deg, #c9a45d 0%, #8c6822 100%) !important;
    color:#fffbea !important;
    box-shadow:0 4px 10px rgba(140,104,34,.22);
    border-radius:999px !important;
    padding:0 8px !important;
    font-weight:800 !important;
}

/* view */
#bo_v_title .bo_v_cate {
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    color:#fff !important;
    border:0 !important;
    border-radius:999px !important;
    padding:0 14px !important;
    line-height:28px !important;
    box-shadow:0 10px 22px rgba(29,66,113,.26), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
#bo_v_title .bo_v_tit {
    color:#16243f !important;
    font-weight:900 !important;
    letter-spacing:-0.02em;
}
#bo_v_info {
    background:linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%) !important;
    border:1px solid #d8e4f3 !important;
    border-radius:14px !important;
    color:#324b6f !important;
}
#bo_v_file, #bo_v_link, .bo_v_nb, #autosave_pop {
    background:#ffffff !important;
    border:1px solid #e3eaf3 !important;
    border-radius:14px !important;
}
#bo_v_file h2, #bo_v_link h2 {
    background:linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%) !important;
    color:#1f4475 !important;
    font-weight:800 !important;
    border-bottom:1px solid #dde6f1 !important;
}
.bo_v_nb li:hover { background:#f6faff !important; }

/* write */
#bo_w .frm_input, #bo_w textarea, #bo_w select,
.bo_vc_w textarea, #bo_w .bo_w_flie .file_wr {
    background:#ffffff !important;
    border:1px solid #d7e2ef !important;
    border-radius:12px !important;
    color:#16243f !important;
    box-shadow:inset 0 1px 2px rgba(0,0,0,0.03) !important;
}
#bo_w .frm_input:focus, #bo_w textarea:focus, #bo_w select:focus {
    border-color:#2f5d93 !important;
    box-shadow:0 0 0 3px rgba(47, 93, 147, 0.18) !important;
    outline:none;
}
#bo_w .btn_submit {
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    color:#fff !important;
    border:1px solid #1d4271 !important;
    border-radius:12px !important;
    box-shadow:0 14px 28px rgba(29,66,113,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
    font-weight:800 !important;
}
#bo_w .btn_cancel {
    background:linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%) !important;
    color:#284d79 !important;
    border:1px solid #d3dff0 !important;
    border-radius:12px !important;
}

/* responsive */
@media (max-width: 991.98px) {
    #bo_list, #bo_v, #bo_w { padding:18px !important; border-radius:18px !important; }
    #bo_btn_top { flex-direction:column !important; align-items:stretch !important; gap:10px !important; }
    #bo_btn_top .btn_bo_user { width:100% !important; justify-content:flex-start !important; }
    #bo_btn_top .btn { flex:1 1 auto; justify-content:center; }
}
@media (max-width: 767.98px) {
    #bo_list, #bo_v, #bo_w { padding:14px !important; border-radius:16px !important; }
    #bo_list .tbl_head01 thead { display:none !important; }
    #bo_list .tbl_head01 table { border:0 !important; background:transparent !important; }
    #bo_list .tbl_head01,
    #bo_list .tbl_head01 tbody,
    #bo_list .tbl_head01 tr,
    #bo_list .tbl_head01 td { display:block !important; width:100% !important; }
    #bo_list .tbl_head01 tbody tr {
        background:#ffffff !important;
        border:1px solid #e6ecf4 !important;
        border-radius:16px !important;
        padding:14px 16px !important;
        margin-bottom:12px !important;
        box-shadow:0 12px 24px rgba(20,40,80,.06) !important;
    }
    #bo_list .tbl_head01 td {
        display:flex !important;
        justify-content:space-between !important;
        align-items:center !important;
        padding:6px 0 !important;
        border:0 !important;
        text-align:left !important;
        gap:10px;
    }
    #bo_list .tbl_head01 td::before {
        content:attr(data-label);
        flex:0 0 64px;
        color:#6d829c;
        font-weight:700;
        font-size:11.5px;
        text-transform:uppercase;
        letter-spacing:0.04em;
    }
    #bo_list .tbl_head01 td.td_subject {
        display:block !important;
        margin-bottom:8px !important;
        padding:0 0 10px !important;
        border-bottom:1px solid #eef2f7 !important;
    }
    #bo_list .tbl_head01 td.td_subject::before { display:block !important; margin-bottom:6px; }
}

/* =========================================================
   Basic2: View + Comment Premium White
   ========================================================= */
#bo_v {
    margin-bottom:22px !important;
    padding:28px !important;
}

#bo_v_title {
    margin-bottom:18px !important;
    padding-bottom:14px !important;
    border-bottom:1px dashed #d8e2ef !important;
}
#bo_v_title .bo_v_tit {
    color:#16243f !important;
    font-size:1.85em !important;
    font-weight:900 !important;
    letter-spacing:-0.02em;
    line-height:1.32;
    margin-top:10px !important;
}

#bo_v_info {
    background:linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%) !important;
    border:1px solid #d8e4f3 !important;
    border-radius:14px !important;
    padding:14px 18px !important;
    margin-bottom:22px !important;
    color:#324b6f !important;
    display:flex; flex-wrap:wrap; gap:6px 16px; align-items:center;
    box-shadow:0 6px 16px rgba(20,40,80,.05);
}
#bo_v_info strong { color:#1f4475 !important; font-weight:700 !important; }
#bo_v_info .sv_member { color:#1f4475 !important; }
#bo_v_info .if_date {
    float:none !important;
    margin-left:auto !important;
    color:#5d6f8a !important;
    font-style:normal !important;
    font-variant-numeric:tabular-nums;
}

#bo_v_img img,
#bo_v_con img {
    max-width:100% !important;
    height:auto !important;
    border-radius:12px !important;
}

#bo_v_con {
    color:#1f2a40 !important;
    font-size:1.02rem !important;
    line-height:1.85em !important;
    padding:8px 0 24px !important;
}
#bo_v_con a { color:#2f5d93 !important; }

#bo_v_file, #bo_v_link {
    overflow:hidden !important;
    margin:14px 0 !important;
    box-shadow:0 8px 20px rgba(20,40,80,.05);
}
#bo_v_file ul, #bo_v_link ul { padding:6px 0 !important; }
#bo_v_file li, #bo_v_link li {
    padding:10px 16px !important;
    border-bottom:1px solid #f1f4f9 !important;
}
#bo_v_file li:last-child, #bo_v_link li:last-child { border-bottom:0 !important; }
#bo_v_file a, #bo_v_link a {
    color:#2f5d93 !important;
    text-decoration:none !important;
    font-weight:600;
}
#bo_v_file a:hover, #bo_v_link a:hover { color:#1d4271 !important; text-decoration:underline !important; }

#bo_v_act { margin:24px 0 !important; }
#bo_v_act a {
    border-radius:999px !important;
    border:1px solid #e3eaf3 !important;
    background:linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%) !important;
    box-shadow:0 6px 16px rgba(20,40,80,.06);
    padding:8px 14px;
}
#bo_v_act a:hover { background-color:#eef5ff !important; }

#bo_v_share { margin:18px 0 !important; }
#bo_v_share .btn {
    color:#284d79 !important;
    font-weight:700 !important;
    border:1px solid #d3dff0 !important;
    border-radius:12px !important;
    background:linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%) !important;
    height:38px !important; line-height:36px !important;
    box-shadow:0 6px 14px rgba(31,65,110,.08) !important;
}
#bo_v_share .btn:hover {
    background:linear-gradient(180deg, #ffffff 0%, #e6efff 100%) !important;
    border-color:#9fbce0 !important;
}
#bo_v_share .btn i {
    background:linear-gradient(135deg, #c9a45d 0%, #8c6822 100%) !important;
    color:#fffbea !important;
    border-radius:10px 0 0 10px;
}

.bo_v_nb {
    border-bottom:0 !important;
    margin:22px 0 !important;
    border-radius:14px !important;
    overflow:hidden !important;
    border:1px solid #e3eaf3 !important;
    box-shadow:0 8px 20px rgba(20,40,80,.05);
}
.bo_v_nb li {
    border:0 !important;
    border-top:1px solid #f1f4f9 !important;
    padding:14px 18px !important;
    background:#ffffff !important;
}
.bo_v_nb li:first-child { border-top:0 !important; }
.bo_v_nb li:hover { background:#f6faff !important; }
.bo_v_nb li .nb_tit { color:#2f5d93 !important; font-weight:700 !important; }
.bo_v_nb li .nb_date { color:#5d6f8a !important; font-variant-numeric:tabular-nums; }

#bo_v a.btn_b01,
#bo_v a.btn_b02,
#bo_v a.btn_admin {
    height:40px !important;
    line-height:38px !important;
    padding:0 18px !important;
    border-radius:12px !important;
    font-weight:700 !important;
    display:inline-flex !important;
    align-items:center; gap:6px;
}
#bo_v a.btn_b01 {
    background:linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%) !important;
    border:1px solid #d3dff0 !important;
    color:#284d79 !important;
    box-shadow:0 8px 18px rgba(31,65,110,.10) !important;
}
#bo_v a.btn_b02 {
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    border:1px solid #1d4271 !important;
    color:#ffffff !important;
    box-shadow:0 14px 28px rgba(29,66,113,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
#bo_v a.btn_admin {
    background:linear-gradient(135deg, #b58a45 0%, #8b6322 100%) !important;
    border:1px solid #8b6322 !important;
    color:#fff8e6 !important;
    box-shadow:0 12px 22px rgba(139,99,34,.26), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Comments */
.cmt_btn {
    background:none !important;
    color:#1f4475 !important;
    font-weight:900 !important;
    font-size:1.18em !important;
    margin:32px 0 12px !important;
    padding:0 0 12px !important;
    border-bottom:1px dashed #d8e2ef !important;
    width:100% !important;
    word-break:keep-all !important;
}
.cmt_btn::before {
    content:'';
    display:inline-block;
    width:10px; height:10px;
    border-radius:50%;
    background:linear-gradient(135deg, #c9a45d 0%, #8c6822 100%);
    margin-right:10px;
    vertical-align:middle;
    box-shadow:0 0 0 3px rgba(201,164,93,0.18);
}
.cmt_btn_op { background:none !important; }

#bo_vc article {
    background:#ffffff !important;
    border:1px solid #e3eaf3 !important;
    border-radius:16px !important;
    padding:16px 18px !important;
    margin:14px 0 !important;
    box-shadow:0 8px 20px rgba(20,40,80,.05);
}
#bo_vc article header { color:#1f4475 !important; }
#bo_vc article header .sv_member,
#bo_vc article header .member,
#bo_vc article header .sv_guest,
#bo_vc article header .guest { color:#1f4475 !important; }
#bo_vc .cmt_contents {
    background:linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%) !important;
    border:1px solid #e3ebf4 !important;
    border-radius:12px !important;
    padding:14px 16px !important;
    color:#1f2a40 !important;
}
.bo_vc_hdinfo { color:#5d6f8a !important; font-style:normal !important; }

.bo_vc_act li a {
    color:#2f5d93 !important;
    border-radius:999px;
    padding:0 10px !important;
}
.bo_vc_act li a:hover { background:#eef4fc !important; }

.bo_vc_w textarea {
    border:1px solid #d7e2ef !important;
    border-radius:12px !important;
    background:#ffffff !important;
    color:#1f2a40 !important;
    padding:12px !important;
    box-shadow:inset 0 1px 2px rgba(0,0,0,0.03);
}
.bo_vc_w .btn_submit {
    height:42px !important;
    border-radius:12px !important;
    background:linear-gradient(135deg, #2f5d93 0%, #1d4271 100%) !important;
    color:#fff !important;
    border:0 !important;
    box-shadow:0 12px 24px rgba(29,66,113,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
    font-weight:800 !important;
}

@media (max-width: 991.98px) {
    #bo_v { padding:18px !important; border-radius:18px !important; }
    #bo_v_title .bo_v_tit { font-size:1.5em !important; line-height:1.4 !important; }
    #bo_v_info { padding:12px 14px !important; gap:4px 12px; }
    #bo_v_info .if_date { margin-left:0 !important; width:100%; }
    #bo_v_share { text-align:left; }
    #bo_v_share .btn { margin:0 6px 8px 0; }
    .bo_v_nb li { padding:12px 14px !important; }
    .bo_v_nb li .nb_date { float:none; display:block; margin-top:4px; }
    #bo_vc article { padding:14px !important; }
    .cmt_btn { font-size:1.08em !important; }
}
@media (max-width: 767.98px) {
    #bo_v { padding:14px !important; border-radius:16px !important; }
    #bo_v_title .bo_v_tit { font-size:1.28em !important; }
    #bo_v_con { font-size:0.98rem !important; line-height:1.75em !important; }
    #bo_v_share .btn {
        display:flex !important;
        width:100% !important;
        margin:0 0 8px !important;
        justify-content:center !important;
    }
}

/* robust hide-title fallback */
#bo_v_title{display:none !important;}
#bo_v header{display:none !important;}
#bo_v_info{margin-top:0 !important;}

/* ===== final premium view/comment refinement ===== */
#bo_v_info {
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    gap:10px 14px !important;
    margin:0 0 24px !important;
    padding:16px 20px !important;
    border:1px solid #d8e0ea !important;
    border-top:3px solid #caa85e !important;
    border-radius:18px !important;
    background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%) !important;
    box-shadow:0 18px 40px rgba(15,35,70,.08) !important;
    color:#28415d !important;
}
#bo_v_info strong,
#bo_v_info span,
#bo_v_info a,
#bo_v_info .sv_member,
#bo_v_info .member,
#bo_v_info .sv_guest,
#bo_v_info .guest {
    color:#203a5b !important;
    font-weight:700 !important;
}
#bo_v_info .if_date {
    margin-left:auto !important;
    padding:7px 12px !important;
    border:1px solid #d7e1ee !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#5e7691 !important;
    font-style:normal !important;
}
#bo_v_info i.fa,
#bo_v_info .if_view,
#bo_v_info .if_comment {
    opacity:.92;
}

#bo_v_top,
#bo_v_bot {
    margin:22px 0 0 !important;
}
#bo_v_top ul,
#bo_v_bot ul,
.bo_v_left,
.bo_v_com {
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    margin:0 !important;
    padding:0 !important;
    float:none !important;
}
.bo_v_left li,
.bo_v_com li {
    margin:0 !important;
}
#bo_v a.btn_b01,
#bo_v a.btn_b02,
#bo_v a.btn_admin,
#bo_v button.btn_admin,
#bo_v .btn,
#bo_vc .btn_submit,
#bo_vc .btn_b03,
#bo_vc .btn_admin {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    min-height:46px !important;
    padding:0 18px !important;
    border-radius:14px !important;
    border:1px solid #d2dcea !important;
    background:linear-gradient(180deg,#ffffff 0%,#f4f8fd 100%) !important;
    color:#16365a !important;
    font-weight:700 !important;
    letter-spacing:-0.01em;
    box-shadow:0 10px 24px rgba(15,35,70,.08) !important;
    transition:all .2s ease !important;
}
#bo_v a.btn_b02,
#bo_vc .btn_submit,
#btn_submit {
    border-color:#183b67 !important;
    background:linear-gradient(135deg,#163a66 0%,#28588c 65%,#c9a85f 100%) !important;
    color:#fff !important;
    box-shadow:0 14px 28px rgba(22,58,102,.22) !important;
}
#bo_v a.btn_admin,
#bo_v button.btn_admin {
    border-color:#c9a85f !important;
    background:linear-gradient(180deg,#fffaf0 0%,#f4ead2 100%) !important;
    color:#6d5320 !important;
}
#bo_v a.btn_b01:hover,
#bo_v a.btn_b02:hover,
#bo_v a.btn_admin:hover,
#bo_v .btn:hover,
#bo_vc .btn_submit:hover,
#bo_vc .btn_b03:hover,
#btn_submit:hover {
    transform:translateY(-2px) !important;
    box-shadow:0 16px 30px rgba(15,35,70,.14) !important;
}

#bo_v_act {
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:14px !important;
    margin:28px 0 !important;
}
#bo_v_act .bo_v_act_gng {
    display:inline-flex !important;
}
#bo_v_act .bo_v_good,
#bo_v_act .bo_v_nogood,
#bo_v_act > span.bo_v_good,
#bo_v_act > span.bo_v_nogood {
    position:relative;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:auto !important;
    min-width:108px !important;
    height:58px !important;
    padding:0 20px 0 54px !important;
    border-radius:999px !important;
    border:1px solid #d8e1ee !important;
    background-color:#fff !important;
    background-position:20px 50% !important;
    background-size:22px auto !important;
    font-style:normal !important;
    color:#203a5b !important;
    box-shadow:0 12px 26px rgba(15,35,70,.08) !important;
}
#bo_v_act .bo_v_good,
#bo_v_act > span.bo_v_good {
    border-color:#d6e2f0 !important;
    background-image:url('./img/icon_good.png'), linear-gradient(180deg,#ffffff 0%,#f6faff 100%) !important;
}
#bo_v_act .bo_v_nogood,
#bo_v_act > span.bo_v_nogood {
    border-color:#eadbd6 !important;
    background-image:url('./img/icon_bad.png'), linear-gradient(180deg,#ffffff 0%,#fff7f4 100%) !important;
}
#bo_v_act strong {font-size:16px !important; font-weight:800 !important;}
#bo_v_act_good,
#bo_v_act_nogood {
    top:66px !important;
    left:50% !important;
    transform:translateX(-50%);
    width:max-content !important;
    min-width:180px;
    padding:12px 16px !important;
    border-radius:14px !important;
    background:#163a66 !important;
    box-shadow:0 16px 28px rgba(22,58,102,.24) !important;
}

#bo_v_share {
    text-align:left !important;
    margin:20px 0 0 !important;
}
#bo_v_share .btn {
    min-height:44px !important;
    padding:0 16px 0 10px !important;
    border-radius:14px !important;
    border:1px solid #d7e1ee !important;
    background:linear-gradient(180deg,#ffffff 0%,#f6f9fd 100%) !important;
    color:#203a5b !important;
    box-shadow:0 10px 22px rgba(15,35,70,.08) !important;
}
#bo_v_share .btn i {
    width:32px !important;
    line-height:32px !important;
    border-radius:10px !important;
    background:linear-gradient(180deg,#eef4fb 0%,#dfe9f7 100%) !important;
    color:#1e4372 !important;
}
#bo_v_sns {
    top:-62px !important;
}

#bo_v_file,
#bo_v_link,
#bo_vc article,
#bo_vc_w {
    border:1px solid #d9e2ec !important;
    border-radius:20px !important;
    background:#fff !important;
    box-shadow:0 16px 34px rgba(15,35,70,.07) !important;
    overflow:hidden;
}
#bo_v_file h2,
#bo_v_link h2 {
    padding:14px 18px !important;
    background:linear-gradient(180deg,#f8fbff 0%,#edf3fb 100%) !important;
    color:#1b3d67 !important;
    border-bottom:1px solid #dfe7f0 !important;
}
#bo_v_file li,
#bo_v_link li {
    padding:13px 18px !important;
}
.bo_v_file_cnt,
.bo_v_link_cnt {
    color:#6c8198 !important;
}

.cmt_btn {
    width:100% !important;
    margin:30px 0 14px !important;
    padding:16px 18px !important;
    border:1px solid #d8e1ec !important;
    border-radius:18px !important;
    background:linear-gradient(135deg,#ffffff 0%,#f6f9fd 55%,#eef4fb 100%) !important;
    color:#173a63 !important;
    font-weight:800 !important;
    box-shadow:0 14px 28px rgba(15,35,70,.08) !important;
    cursor:pointer !important;
}
.cmt_btn::before {
    content:'•';
    display:inline-block;
    margin-right:10px;
    color:#caa85e;
    font-size:18px;
    vertical-align:middle;
}
.cmt_btn,
.cmt_btn_op {
    background-image:none !important;
}

#bo_vc article {
    padding:16px 18px !important;
    margin:18px 0 !important;
}
#bo_vc header,
#bo_vc header a,
#bo_vc .member,
#bo_vc .guest,
#bo_vc .sv_member,
#bo_vc .sv_guest {
    color:#1d3c63 !important;
    font-weight:700 !important;
}
#bo_vc .cmt_contents {
    margin:12px 0 0 !important;
    padding:16px 18px !important;
    border:1px solid #e4ebf3 !important;
    border-radius:16px !important;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%) !important;
    color:#344d67 !important;
    line-height:1.8 !important;
}
#bo_vc .bo_vc_act li a,
.bo_vc_act li a {
    border:1px solid #d7e2ee !important;
    border-radius:999px !important;
    background:#f8fbff !important;
    color:#22476f !important;
    font-weight:700 !important;
}

#bo_vc_w {
    margin-top:16px !important;
    padding:18px !important;
}
#bo_vc_w #wr_content,
#bo_vc_w textarea,
#bo_vc_w .frm_input,
#bo_vc_w input[type='text'],
#bo_vc_w input[type='password'] {
    width:100% !important;
    border:1px solid #d7e1ec !important;
    border-radius:16px !important;
    background:#fbfdff !important;
    color:#223b58 !important;
    box-shadow:inset 0 2px 8px rgba(15,35,70,.04) !important;
}
#bo_vc_w #wr_content,
#bo_vc_w textarea {
    min-height:150px !important;
    padding:16px 18px !important;
}
#bo_vc_w .bo_vc_w_info {
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px !important;
    margin-top:14px !important;
}
#bo_vc_w .btn_submit,
#bo_vc_w #btn_submit {
    min-width:150px !important;
    height:48px !important;
    border:none !important;
    border-radius:14px !important;
    background:linear-gradient(135deg,#163a66 0%,#28588c 65%,#c9a85f 100%) !important;
    color:#fff !important;
    font-weight:800 !important;
    box-shadow:0 16px 28px rgba(22,58,102,.22) !important;
}
#bo_vc_w .btn_submit:hover,
#bo_vc_w #btn_submit:hover {
    transform:translateY(-2px);
}
#bo_vc_w .captcha,
#bo_vc_w #captcha {
    margin-top:14px !important;
}

@media (max-width: 991px) {
    #bo_v_info {
        padding:14px 16px !important;
        border-radius:16px !important;
        gap:8px 10px !important;
    }
    #bo_v_info .if_date {
        margin-left:0 !important;
        width:100%;
        justify-content:flex-start;
    }
    #bo_v_top ul,
    #bo_v_bot ul,
    .bo_v_left,
    .bo_v_com {
        gap:8px !important;
    }
    #bo_v a.btn_b01,
    #bo_v a.btn_b02,
    #bo_v a.btn_admin,
    #bo_v .btn,
    #bo_vc .btn_submit,
    #btn_submit {
        min-height:42px !important;
        padding:0 15px !important;
        border-radius:12px !important;
    }
    #bo_v_act .bo_v_good,
    #bo_v_act .bo_v_nogood,
    #bo_v_act > span.bo_v_good,
    #bo_v_act > span.bo_v_nogood {
        min-width:96px !important;
        height:52px !important;
        padding-left:48px !important;
        background-position:18px 50% !important;
        background-size:20px auto !important;
    }
    #bo_v_file,
    #bo_v_link,
    #bo_vc article,
    #bo_vc_w,
    .cmt_btn {
        border-radius:16px !important;
    }
}

@media (max-width: 767px) {
    #bo_v_act {
        flex-wrap:wrap !important;
        gap:10px !important;
    }
    #bo_v_share .btn,
    #bo_v a.btn_b01,
    #bo_v a.btn_b02,
    #bo_v a.btn_admin,
    #bo_v .btn {
        width:100% !important;
    }
    #bo_vc_w {
        padding:14px !important;
    }
    #bo_vc_w .bo_vc_w_info {
        grid-template-columns:1fr !important;
    }
    #bo_vc article {
        padding:14px !important;
    }
    .cmt_btn {
        padding:14px 16px !important;
        font-size:1.04em !important;
    }
}

/* ===== unified pill reaction buttons final override ===== */
#bo_v_act {
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:center !important;
    gap:12px !important;
    margin:24px 0 18px !important;
}
#bo_v_act .bo_v_act_gng {
    position:relative !important;
    display:inline-flex !important;
}
#bo_v_act .bo_v_good,
#bo_v_act .bo_v_nogood,
#bo_v_act > span.bo_v_good,
#bo_v_act > span.bo_v_nogood {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    min-width:126px !important;
    width:auto !important;
    height:50px !important;
    padding:0 18px 0 46px !important;
    border-radius:999px !important;
    font-style:normal !important;
    font-weight:800 !important;
    font-size:14px !important;
    line-height:1 !important;
    letter-spacing:-0.01em;
    text-decoration:none !important;
    white-space:nowrap !important;
    background-repeat:no-repeat !important;
    background-position:18px 50% !important;
    background-size:18px auto !important;
    box-shadow:0 12px 24px rgba(20,40,80,.08) !important;
    transition:all .2s ease !important;
}
#bo_v_act .bo_v_good,
#bo_v_act > span.bo_v_good {
    border:1px solid #d7e4f0 !important;
    color:#214a76 !important;
    background-image:url('./img/icon_good.png'), linear-gradient(180deg,#ffffff 0%,#f3f8ff 100%) !important;
}
#bo_v_act .bo_v_nogood,
#bo_v_act > span.bo_v_nogood {
    border:1px solid #ecd9d4 !important;
    color:#8a5350 !important;
    background-image:url('./img/icon_bad.png'), linear-gradient(180deg,#ffffff 0%,#fff6f3 100%) !important;
}
#bo_v_act .bo_v_good:hover,
#bo_v_act .bo_v_nogood:hover {
    transform:translateY(-2px) !important;
    box-shadow:0 16px 30px rgba(20,40,80,.12) !important;
}
#bo_v_act .sound_only {
    position:static !important;
    width:auto !important;
    height:auto !important;
    margin:0 !important;
    clip:auto !important;
    clip-path:none !important;
    overflow:visible !important;
    text-indent:0 !important;
    font-size:13px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    color:inherit !important;
}
#bo_v_act strong {
    display:inline-block !important;
    min-width:10px !important;
    font-size:15px !important;
    font-weight:900 !important;
    color:inherit !important;
}
#bo_v_act_good,
#bo_v_act_nogood {
    top:58px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    width:max-content !important;
    max-width:220px !important;
    min-width:unset !important;
    padding:10px 14px !important;
    border-radius:12px !important;
    background:#1f4475 !important;
    color:#fff !important;
    box-shadow:0 14px 24px rgba(31,68,117,.22) !important;
}
@media (max-width: 767px) {
    #bo_v_act {
        gap:10px !important;
    }
    #bo_v_act .bo_v_good,
    #bo_v_act .bo_v_nogood,
    #bo_v_act > span.bo_v_good,
    #bo_v_act > span.bo_v_nogood {
        min-width:112px !important;
        height:46px !important;
        padding:0 16px 0 42px !important;
        background-position:16px 50% !important;
        background-size:16px auto !important;
        font-size:13px !important;
    }
    #bo_v_act .sound_only {
        font-size:12px !important;
    }
    #bo_v_act strong {
        font-size:14px !important;
    }
}

/* ===== unified 3-tier board button system final ===== */
#bo_v_top ul,
#bo_v_bot ul,
.bo_v_left,
.bo_v_com {
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    margin:0 !important;
    padding:0 !important;
    float:none !important;
    align-items:center !important;
}
.bo_v_left li,
.bo_v_com li {
    margin:0 !important;
    float:none !important;
}

#bo_v a.btn_b01,
#bo_vc .btn_b03,
#bo_v_share .btn,
#bo_v .btn_cancel,
#bo_v .btn_b03 {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;
    min-height:42px !important;
    height:42px !important;
    padding:0 16px !important;
    border-radius:12px !important;
    border:1px solid #d6e0ec !important;
    background:linear-gradient(180deg,#ffffff 0%,#f4f8fc 100%) !important;
    color:#24496f !important;
    font-weight:700 !important;
    line-height:1 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
    box-shadow:0 8px 18px rgba(24,48,88,.08) !important;
    transition:all .18s ease !important;
}
#bo_v a.btn_b01 i,
#bo_vc .btn_b03 i,
#bo_v_share .btn i,
#bo_v .btn_cancel i,
#bo_v .btn_b03 i {
    margin:0 !important;
}
#bo_v a.btn_b01:hover,
#bo_vc .btn_b03:hover,
#bo_v_share .btn:hover,
#bo_v .btn_cancel:hover,
#bo_v .btn_b03:hover {
    transform:translateY(-1px) !important;
    border-color:#b9cde3 !important;
    background:linear-gradient(180deg,#ffffff 0%,#ebf3fb 100%) !important;
    color:#173b63 !important;
    box-shadow:0 12px 22px rgba(24,48,88,.12) !important;
}

#bo_v a.btn_b02,
#bo_v .btn_submit,
#bo_vc .btn_submit,
#bo_vc #btn_submit,
.pointshop_buy_form .pointshop_buy_btn,
#bo_v_pointshop .pointshop_buy_btn,
.pointshop_buy_btn {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;
    min-height:44px !important;
    height:44px !important;
    padding:0 18px !important;
    border-radius:12px !important;
    border:1px solid #1d4372 !important;
    background:linear-gradient(135deg,#305f96 0%,#1d4372 100%) !important;
    color:#ffffff !important;
    font-weight:800 !important;
    line-height:1 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
    box-shadow:0 12px 24px rgba(29,67,114,.22) !important;
    transition:all .18s ease !important;
}
#bo_v a.btn_b02:hover,
#bo_v .btn_submit:hover,
#bo_vc .btn_submit:hover,
#bo_vc #btn_submit:hover,
.pointshop_buy_form .pointshop_buy_btn:hover,
#bo_v_pointshop .pointshop_buy_btn:hover,
.pointshop_buy_btn:hover {
    transform:translateY(-1px) !important;
    border-color:#163556 !important;
    background:linear-gradient(135deg,#396aa3 0%,#163556 100%) !important;
    box-shadow:0 16px 28px rgba(29,67,114,.28) !important;
}

#bo_v a.btn_admin,
#bo_v button.btn_admin,
#bo_v .btn_admin,
#bo_v .bo_v_complete_reward_form .btn_complete_reward,
#bo_v .btn_complete_reward_done {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;
    min-height:42px !important;
    height:42px !important;
    padding:0 16px !important;
    border-radius:12px !important;
    border:1px solid #9a7431 !important;
    background:linear-gradient(135deg,#c49a55 0%,#8f6727 100%) !important;
    color:#fff8ea !important;
    font-weight:800 !important;
    line-height:1 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
    box-shadow:0 12px 24px rgba(143,103,39,.22) !important;
    transition:all .18s ease !important;
}
#bo_v a.btn_admin:hover,
#bo_v button.btn_admin:hover,
#bo_v .btn_admin:hover,
#bo_v .bo_v_complete_reward_form .btn_complete_reward:hover,
#bo_v .btn_complete_reward_done:hover {
    transform:translateY(-1px) !important;
    border-color:#7f5b20 !important;
    background:linear-gradient(135deg,#d0a763 0%,#7f5b20 100%) !important;
    box-shadow:0 16px 30px rgba(143,103,39,.28) !important;
}

#bo_v_share .btn {
    padding:0 14px 0 10px !important;
}
#bo_v_share .btn i {
    width:28px !important;
    line-height:28px !important;
    border-radius:8px !important;
    background:rgba(36,73,111,.08) !important;
    color:inherit !important;
}

@media (max-width: 767px) {
    #bo_v_top ul,
    #bo_v_bot ul,
    .bo_v_left,
    .bo_v_com {
        gap:8px !important;
    }
    #bo_v a.btn_b01,
    #bo_v a.btn_b02,
    #bo_v a.btn_admin,
    #bo_vc .btn_b03,
    #bo_v_share .btn,
    #bo_v .btn_cancel,
    #bo_v .btn_submit,
    #bo_vc .btn_submit,
    #bo_vc #btn_submit,
    .pointshop_buy_form .pointshop_buy_btn,
    #bo_v_pointshop .pointshop_buy_btn,
    .pointshop_buy_btn {
        width:100% !important;
        min-height:42px !important;
        height:42px !important;
        justify-content:center !important;
    }
}

/* ===== button row spacing fix: list reply write lower ===== */
#bo_v_top {
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:0 !important;
}
#bo_v_top:after {
    display:none !important;
}
#bo_v_top .bo_v_left,
#bo_v_top .bo_v_com {
    width:100% !important;
    float:none !important;
}
#bo_v_top .bo_v_left {
    margin:0 !important;
}
#bo_v_top .bo_v_com {
    margin:14px 0 0 !important;
    justify-content:flex-start !important;
    align-items:center !important;
}
#bo_v_top .bo_v_left li,
#bo_v_top .bo_v_com li {
    margin:0 !important;
}

@media (max-width: 767px) {
    #bo_v_top .bo_v_com {
        margin-top:10px !important;
    }
}

/* ===== final button alignment patch: top left / bottom right ===== */
#bo_v_top {
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
}
#bo_v_top:after {
    display:none !important;
}
#bo_v_top .bo_v_left,
#bo_v_top .bo_v_com {
    width:100% !important;
    float:none !important;
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    box-sizing:border-box !important;
}
#bo_v_top .bo_v_left {
    justify-content:flex-start !important;
    margin:0 !important;
}
#bo_v_top .bo_v_com {
    justify-content:flex-end !important;
    margin:16px 0 0 !important;
}
#bo_v_top .bo_v_left li,
#bo_v_top .bo_v_com li {
    float:none !important;
    margin:0 !important;
}
#bo_v_top .bo_v_left li {
    margin-right:8px !important;
    margin-bottom:8px !important;
}
#bo_v_top .bo_v_com li {
    margin-left:8px !important;
    margin-bottom:8px !important;
}
#bo_v_top .bo_v_left li:first-child,
#bo_v_top .bo_v_com li:first-child {
    margin-left:0 !important;
}

@media (max-width: 767px) {
    #bo_v_top .bo_v_left,
    #bo_v_top .bo_v_com {
        justify-content:flex-start !important;
    }
    #bo_v_top .bo_v_com {
        margin-top:10px !important;
    }
    #bo_v_top .bo_v_com li {
        margin-left:0 !important;
        margin-right:8px !important;
    }
}
