#bk_faq_list {
	width: calc(100% - 40px);
	max-width: none;
	margin: 120px auto 140px;
	color: #1a1a1a;
	font-family: "Pretendard", sans-serif;
	letter-spacing: 0;
}

.faq_breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	height: 22px;
	margin-bottom: 40px;
	color: #2e1700;
	font-size: 16px;
	line-height: 1.4;
}

.faq_breadcrumb a {
	display: inline-flex;
	align-items: center;
	color: inherit;
}

.faq_breadcrumb a + a::before {
	content: ">";
	margin-right: 9px;
}

.faq_breadcrumb .home_icon,
.faq_breadcrumb .home_icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.faq_inner {
	width: 100%;
	margin: 0 auto;
}

.faq_tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 80px;
}

.faq_tabs a {
	display: inline-flex;
	width: 200px;
	height: 39px;
	align-items: center;
	justify-content: center;
	border: 0.3px solid #1a1a1a;
	border-radius: 4px;
	background: #fff;
	color: #1a1a1a;
	font-size: 19px;
	font-weight: 400;
}

.faq_tabs a.active {
	border-color: #2e1700;
	background: #2e1700;
	color: #fff;
}

.faq_tabs a.active.tone_navy {
	border-color: #172341;
	background: #172341;
}

.faq_tabs a.active.tone_brown {
	border-color: #604B42;
	background: #604B42;
}

.faq_tabs a.active.tone_green {
	border-color: #105050;
	background: #105050;
}

.faq_admin_tools {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	margin: -60px 0 15px;
}

.faq_admin_tools a,
.faq_admin_tools button,
.faq_admin_selection button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 14px;
	border: 1px solid #cfc7bf;
	background: #fff;
	color: #5e5e5e;
	font-size: 12px;
	cursor: pointer;
}

.faq_admin_tools .faq_write_button {
	border-color: #2e1700;
	background: #2e1700;
	color: #fff;
}

.faq_admin_selection {
	display: none;
	justify-content: flex-end;
	gap: 6px;
	margin-bottom: 15px;
}

.faq_admin_selection.active {
	display: flex;
}

.faq_accordion {
	display: flex;
	width: 100%;
	max-width: 860px;
	flex-direction: column;
	gap: 20px;
	margin-right: auto;
	margin-left: auto;
}

.faq_item {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	min-height: 80px;
	padding: 24px 20px;
	border: 1px solid #aaa9a9;
	background: #fff;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, .2);
}

.faq_question {
	display: grid;
	width: 100%;
	min-height: 30px;
	grid-template-columns: 27px minmax(0, 1fr) 31px;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #1a1a1a;
	text-align: left;
	cursor: pointer;
}

.faq_user_icon {
	display: flex;
	width: 27px;
	height: 29px;
	align-items: center;
	justify-content: center;
}

.faq_user_icon img {
	display: block;
	width: 19px;
	height: 20px;
}

.faq_question strong {
	overflow: hidden;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.faq_item.open .faq_question {
	align-items: flex-start;
}

.faq_item.open .faq_question strong {
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
	word-break: keep-all;
}

.faq_toggle_icon {
	position: relative;
	display: block;
	width: 31px;
	height: 31px;
}

.faq_toggle_icon img {
	position: absolute;
	inset: 0;
	display: block;
	width: 31px;
	height: 31px;
	transition: opacity .18s ease;
}

.faq_toggle_open {
	opacity: 0;
}

.faq_item.open .faq_toggle_closed {
	opacity: 0;
}

.faq_item.open .faq_toggle_open {
	opacity: 1;
}

.faq_answer {
	padding: 20px 43px 0 35px;
}

.faq_answer[hidden] {
	display: none;
}

.faq_answer p {
	margin: 0;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	word-break: keep-all;
}

.faq_item_check {
	display: none;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.selection_active .faq_item_check {
	display: flex;
}

.faq_edit {
	position: absolute;
	right: 60px;
	bottom: 6px;
	color: #888;
	font-size: 11px;
}

.faq_empty {
	padding: 70px 0;
	text-align: center;
}

#bk_faq_list .pg_wrap {
	display: flex;
	justify-content: center;
	margin: 50px 0 0;
}

#bk_faq_list .pg {
	display: flex;
	gap: 5px;
}

#bk_faq_list .pg_page,
#bk_faq_list .pg_current {
	display: flex;
	width: 25px;
	min-width: 25px;
	height: 25px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 1px solid #d4d4d4;
	border-radius: 0;
	background: #fff;
	color: #5e5e5e;
	font-size: 12px;
	line-height: 1;
}

#bk_faq_list .pg_current {
	border-color: #2e1700;
	background: #2e1700;
	color: #fff;
}

#bk_faq_list .pg_start,
#bk_faq_list .pg_end {
	display: none;
}

#bk_faq_list .pg_prev,
#bk_faq_list .pg_next {
	min-width: 25px;
	padding: 0;
	font-size: 0;
}

#bk_faq_list .pg_prev::after,
#bk_faq_list .pg_next::after {
	font-size: 12px;
	line-height: 23px;
}

@media (max-width: 1240px) {
	#bk_faq_list {
		width: calc(100% - 40px);
	}
}

@media (max-width: 900px) {
	.faq_inner,
	.faq_item {
		width: 100%;
	}

	.faq_tabs a {
		width: calc(25% - 15px);
	}
}

@media (max-width: 768px) {
	#bk_faq_list {
		width: 100%;
		margin: 0;
		padding: 35px 40px;
		background: #fff;
		box-sizing: border-box;
	}

	.sub_section.sub_contact_area > .inner {padding-bottom: 0 !important;}
	.faq_breadcrumb {display: none !important;}
	.faq_inner {width: 100%;}

	.faq_tabs {
		flex-wrap: nowrap;
		gap: 10.27px;
		width: calc(100% - 40px);
		max-width: 314.8px;
		margin: 0 auto 35px;
	}

	.faq_tabs a {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		height: 32px;
		padding: 6px 0;
		border: .26px solid #1a1a1a;
		border-radius: 2.05px;
		font-size: 14px;
		line-height: 1.4;
		white-space: nowrap;
	}

	.faq_admin_tools {
		margin-top: -25px;
	}

	.faq_accordion {
		gap: 15px;
	}

	.faq_item {
		width: 100%;
		min-height: 50px;
		padding: 16px 20px;
		box-shadow: 3px 4px 6px rgba(0,0,0,.18);
	}

	.faq_question {
		min-height: 17px;
		grid-template-columns: 17px minmax(0, 1fr) 15px;
		gap: 8px;
	}
	.faq_user_icon {
		width: 17px;
		height: 17px;
	}
	.faq_user_icon img {
		width: 12px;
		height: 13px;
	}

	.faq_question strong {
		font-size: 16px;
		line-height: 1.3;
	}

	.faq_item.open .faq_question {
		align-items: flex-start;
	}

	.faq_toggle_icon {
		width: 15px;
		height: 15px;
	}
	.faq_toggle_icon img {
		width: 15px;
		height: 15px;
	}

	.faq_answer {
		padding: 20px 23px 0;
	}

	.faq_answer p {
		font-size: 16px;
		line-height: 1.55;
	}
	#bk_faq_list .pg_page,
	#bk_faq_list .pg_current {font-size: 12px;}
	#bk_faq_list .pg_prev::after,
	#bk_faq_list .pg_next::after {font-size: 12px;}
	.faq_item.open {min-height: 176px;}
}
