@charset "utf-8";
/* CSS Document basic*/
.tab_bar { margin-bottom:0;}
#box_search {padding:10px; border-left:1px solid #dadcdc; border-right:1px solid #dadcdc; border-bottom:1px solid #dadcdc;}

#box_body_main { padding-bottom: 45px; }

/* .sub-title(h3) 가 float:left 라서 뒤 본문이 제목 위로 겹치는 현상 방지 — 본문 컨테이너를 float 아래로 내림 */
#box_body_main .box_body_center_content { clear: both; }

/* ============================================================
   FAQ (cd=support&cf=faq) — 모던 디자인
   레거시 #tab_faq dl/dt/dd float 무력화
   ============================================================ */
.faq_wrap {
	font-family: Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
	max-width: 1100px;
	margin: 0 auto;
}
.faq_wrap *,
.faq_wrap *:before,
.faq_wrap *:after { box-sizing: border-box; }

/* 헤더 */
.faq_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px 36px;
	background: linear-gradient(135deg, #00224E 0%, #0046C0 100%);
	border-radius: 14px;
	color: #fff;
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.faq_header_text { flex: 1; min-width: 240px; }
.faq_header_badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	color: #BFDBFE;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 20px;
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}
.faq_header_title {
	margin: 0 0 8px !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	color: #fff !important;
	letter-spacing: -0.02em;
	border: none !important;
	float: none !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	line-height: 1.3 !important;
}
.faq_header_desc {
	margin: 0 !important;
	font-size: 13.5px;
	color: rgba(255,255,255,0.85);
	line-height: 1.5;
}
.faq_header_search {
	position: relative;
	flex: 0 0 360px;
	max-width: 100%;
}
.faq_header_search i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9CA3AF;
	font-size: 14px;
	pointer-events: none;
}
.faq_header_search input {
	width: 100%;
	height: 46px;
	padding: 0 16px 0 42px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.20);
	background: rgba(255,255,255,0.96);
	color: #111827;
	font-size: 14px;
	outline: none;
	transition: box-shadow 0.15s ease;
}
.faq_header_search input:focus {
	background: #fff;
	box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.45);
}

/* 탭 박스 */
.faq_tab_box {
	background: #fff;
	border: 1px solid #E5E7EB;
	padding: 8px 8px 24px;
	margin-bottom: 22px;
}
.faq_tabs.tab_bar {
	display: flex !important;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 !important;
	padding: 8px 12px 0 !important;
	border: none !important;
	background: transparent !important;
}
.faq_tabs.tab_bar > li {
	float: none !important;
	margin: 0 !important;
	list-style: none !important;
}
.faq_tabs.tab_bar > li > a {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	padding: 10px 18px !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	color: #6B7280 !important;
	background: #F9FAFB !important;
	border: 1px solid #E5E7EB !important;
	border-radius: 999px !important;
	text-decoration: none !important;
	transition: all 0.15s ease;
}
.faq_tabs.tab_bar > li > a i { font-size: 12px; }
.faq_tabs.tab_bar > li > a:hover {
	color: #00224E !important;
	background: #EFF6FF !important;
	border-color: #BFDBFE !important;
}
.faq_tabs.tab_bar > li.tc-selected > a {
	color: #fff !important;
	background: #005DFE !important;
	border-color: #005DFE !important;
	font-weight: 600 !important;
	box-shadow: 0 2px 8px rgba(0,93,254,0.20);
}

/* 패널 */
.faq_panels {
	padding: 16px 16px 4px !important;
	background: transparent !important;
	border: none !important;
	margin: 0 !important;
	clear: both;
}
.faq_panels .tc-panel { display: none; }
.faq_panels .tc-panel.tc-selected { display: block; }

/* 아코디언 항목 (dl/dt/dd) */
#tab_faq .accordion-block {
	width: 100% !important;
	height: auto !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
	border: 1px solid #E5E7EB !important;
	border-radius: 10px !important;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	float: none !important;
	box-sizing: border-box;
}
#tab_faq .accordion-block:hover { border-color: #BFDBFE; }
#tab_faq dl.accordion-block { display: block !important; }
#tab_faq dl.accordion-block dt {
	display: flex !important;
	align-items: center;
	gap: 12px;
	width: 100% !important;
	height: auto !important;
	min-height: 56px;
	padding: 14px 56px 14px 18px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	color: #111827 !important;
	background: #fff;
	border: none !important;
	border-bottom: 1px solid transparent !important;
	cursor: pointer;
	position: relative;
	float: none !important;
	transition: background 0.15s ease;
}
#tab_faq dl.accordion-block dt:before {
	content: 'Q';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	background: #005DFE;
	border-radius: 50%;
	letter-spacing: 0;
}
#tab_faq dl.accordion-block dt:after {
	content: "\f078"; /* chevron-down */
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #9CA3AF;
	font-size: 12px;
	transition: transform 0.2s ease, color 0.15s ease;
}
#tab_faq dl.accordion-block:hover dt { background: #F9FAFB; }
#tab_faq dl.accordion-block.tc-selected,
#tab_faq dl.accordion-block.tc-opened { border-color: #BFDBFE; }
#tab_faq dl.accordion-block.tc-selected dt,
#tab_faq dl.accordion-block.tc-opened dt {
	background: #EFF6FF;
	color: #00224E !important;
	border-bottom: 1px solid #BFDBFE !important;
}
#tab_faq dl.accordion-block.tc-selected dt:after,
#tab_faq dl.accordion-block.tc-opened dt:after {
	transform: translateY(-50%) rotate(180deg);
	color: #005DFE;
}
#tab_faq dl.accordion-block dd {
	display: block;
	margin: 0 !important;
	padding: 18px 18px 18px 54px !important;
	font-size: 13.5px !important;
	line-height: 1.7 !important;
	color: #4B5563 !important;
	background: #FAFBFC;
	position: relative;
}
#tab_faq dl.accordion-block dd:before {
	content: 'A';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 18px;
	top: 18px;
	width: 24px;
	height: 24px;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	background: #6B7280;
	border-radius: 50%;
}

/* 검색결과 없음 */
.faq_empty {
	text-align: center;
	padding: 60px 20px;
	color: #9CA3AF;
}
.faq_empty i { font-size: 36px; margin-bottom: 14px; color: #D1D5DB; }
.faq_empty p { margin: 0; font-size: 13.5px; line-height: 1.6; }

/* 하단 도움 카드 */
.faq_help_card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 26px 30px;
	background: linear-gradient(135deg, #F9FAFB 0%, #EFF6FF 100%);
	border: 1px solid #E5E7EB;
	border-radius: 14px;
	flex-wrap: wrap;
}
.faq_help_ico {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, #EF4444, #B91C1C);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.faq_help_body { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 4px; }
.faq_help_body strong { font-size: 15px; font-weight: 700; color: #111827; letter-spacing: -0.01em; }
.faq_help_body span { font-size: 13px; color: #6B7280; }
.faq_help_actions { display: flex; gap: 8px; flex-wrap: wrap; }
.faq_help_btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 20px;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.15s ease;
	border: 1px solid transparent;
}
.faq_help_btn_primary {
	background: #005DFE;
	color: #fff !important;
	border-color: #005DFE;
}
.faq_help_btn_primary:hover {
	background: #0046C0;
	border-color: #0046C0;
	text-decoration: none;
	color: #fff !important;
}
.faq_help_btn_outline {
	background: #fff;
	color: #00224E !important;
	border-color: #D1D5DB;
}
.faq_help_btn_outline:hover {
	background: #F9FAFB;
	border-color: #00224E;
	text-decoration: none;
}

/* 반응형 */
@media (max-width: 768px) {
	.faq_header { padding: 22px 20px; flex-direction: column; align-items: stretch; }
	.faq_header_search { flex: 1 1 auto; }
	.faq_header_title { font-size: 20px !important; }
	#tab_faq dl.accordion-block dt { font-size: 13.5px !important; padding-right: 44px !important; }
	#tab_faq dl.accordion-block dd { padding-left: 18px !important; padding-top: 38px !important; }
	#tab_faq dl.accordion-block dd:before { top: 12px; left: 18px; }
	.faq_help_card { flex-direction: column; text-align: center; }
}

#wrap_navi .wrap_navi_body { margin: 0 auto; width: 100%; padding-left: 10px; padding-right: 10px;}

#tab_faq .tc-panel {min-height: 400px; }

#tab_pds { border: 1px solid #e7e7e7; background-color: #f3f3f3; color: #333333; padding: 20px; height: auto; clear: both; min-height: 30px; margin-bottom: 20px }
#tab_pds ul { list-style: none; }
#tab_pds li { float: left; padding-right: 40px; }
#tab_pds li a { text-decoration: none; font-size: 20px; color: #666; }
#tab_pds li a:hover { color: #2197D4; }
#tab_pds li.on a{ color: #2197D4 !important; text-decoration: underline;}

#tab_cate ul { list-style: none; }
#tab_cate li { float: left; padding-right: 15px; }
#tab_cate li a { text-decoration: none; font-size: 13px; color: #666; }
#tab_cate li a:hover { color: #2197D4; }
#tab_cate li.on a{ color: #2197D4 !important; text-decoration: underline;}

/* support 리스트 페이지 — 검색폼 + 테이블 */
.list_search_form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.list_search_form .d_form { margin: 0; }

/* tbl_normal 모던 외형 (support 영역) */
.box_body_center .tbl_normal,
.box_body_center_content .tbl_normal {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-top: 2px solid #00224E;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}
.box_body_center .tbl_normal thead th,
.box_body_center_content .tbl_normal thead th {
  padding: 12px 14px;
  background: #F9FAFB;
  color: #374151 !important;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
}
.box_body_center .tbl_normal thead th:last-child,
.box_body_center_content .tbl_normal thead th:last-child { border-right: none; }
.box_body_center .tbl_normal tbody td,
.box_body_center_content .tbl_normal tbody td {
  padding: 10px 14px;
  font-size: 13px;
  color: #1F2937;
  border-bottom: 1px solid #F3F4F6;
  border-right: 1px solid #F3F4F6;
  vertical-align: middle;
}
.box_body_center .tbl_normal tbody td:last-child,
.box_body_center_content .tbl_normal tbody td:last-child { border-right: none; }
.box_body_center .tbl_normal tbody tr:last-child td,
.box_body_center_content .tbl_normal tbody tr:last-child td { border-bottom: none; }
.box_body_center .tbl_normal tbody tr:hover td,
.box_body_center_content .tbl_normal tbody tr:hover td { background: #F9FAFB; }
.tbl_normal .board_title a { color: #1F2937; text-decoration: none; font-weight: 500; }
.tbl_normal .board_title a:hover { color: #00224E; text-decoration: underline; }
.tbl_normal .row_notice td { background: #FFF7ED; }
.tbl_normal .row_notice:hover td { background: #FFEDD5 !important; }
.tbl_normal td.empty { padding: 40px 12px; color: #9CA3AF; font-size: 13px; }

/* 라벨 (중요, NEW 등) */
.label_notice,
.label_new {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
}
.label_notice { background: #F97316; color: #fff; }
.label_new {
  margin-left: 4px;
  padding: 2px 5px;
  background: #DC2626;
  color: #fff;
  font-size: 10px;
}

/* 상태 뱃지 (QnA 진행상황) */
.status_badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
}
.status_badge.status_done {
  color: #15803D;
  background: #DCFCE7;
}
.status_badge.status_wait {
  color: #92400E;
  background: #FEF3C7;
}

/* 하단 버튼 영역 */
.box_btns {
  margin-top: 16px;
  display: flex;
  gap: 6px;
}
.box_btns.a_right { justify-content: flex-end; }
.box_btns.a_center { justify-content: center; }
.box_btns.a_left { justify-content: flex-start; }