@charset "UTF-8";
/* =============== COLOR =============== */
:root {
	--tit-color: #222;
	--txt-color: #333;
	--sub-color: #444;
	--line-color: #ddd;
	--white-color: #fff;
}

.cke_sc button {
	padding: 0;
	font-size: 14px;
	background: transparent;
	border: none;
}

/* =============== BASE =============== */
/* 사이트 리셋과 별개로, 스킨 안에서만 필요한 최소 정규화 */
#bo_list *,
#bo_list *::before,
#bo_list *::after,
#bo_v *,
#bo_v *::before,
#bo_v *::after,
#bo_w *,
#bo_w *::before,
#bo_w *::after,
#bo_vc *,
#bo_vc *::before,
#bo_vc *::after,
#bo_vc_w *,
#bo_vc_w *::before,
#bo_vc_w *::after,
.cmt_btn *,
.cmt_btn *::before,
.cmt_btn *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#bo_list,
#bo_v,
#bo_w,
#bo_vc,
#bo_vc_w {
	max-width: 1200px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--txt-color);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: -0.02em;
}
#bo_list h2,
#bo_list h3,
#bo_v h2,
#bo_v h3,
#bo_w h2,
#bo_w h3,
#bo_vc h2,
#bo_vc h3,
#bo_vc_w h2,
#bo_vc_w h3 {
	margin: 0;
	font-size: inherit;
	font-weight: 500;
	line-height: inherit;
}
#bo_list p,
#bo_v p,
#bo_w p,
#bo_vc p,
#bo_vc_w p {
	margin: 0;
}
#bo_list ul,
#bo_list ol,
#bo_v ul,
#bo_v ol,
#bo_w ul,
#bo_w ol,
#bo_vc ul,
#bo_vc ol,
#bo_vc_w ul,
#bo_vc_w ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
#bo_list li,
#bo_v li,
#bo_w li,
#bo_vc li,
#bo_vc_w li {
	list-style: none;
}
#bo_list a,
#bo_v a,
#bo_w a,
#bo_vc a,
#bo_vc_w a {
	color: inherit;
	text-decoration: none;
}
#bo_list fieldset,
#bo_v fieldset,
#bo_w fieldset,
#bo_vc fieldset,
#bo_vc_w fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}
#bo_list legend,
#bo_v legend,
#bo_w legend,
#bo_vc legend,
#bo_vc_w legend {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
#bo_list img,
#bo_v img,
#bo_w img,
#bo_vc img,
#bo_vc_w img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
#bo_list button,
#bo_v button,
#bo_w button,
#bo_vc button,
#bo_vc_w button {
	letter-spacing: inherit;
	cursor: pointer;
}
#bo_list input,
#bo_list select,
#bo_list textarea,
#bo_v input,
#bo_v select,
#bo_v textarea,
#bo_w input,
#bo_w select,
#bo_w textarea,
#bo_vc input,
#bo_vc select,
#bo_vc textarea,
#bo_vc_w input,
#bo_vc_w select,
#bo_vc_w textarea {
	letter-spacing: inherit;
}
#bo_list table,
#bo_v table,
#bo_w table,
#bo_vc table,
#bo_vc_w table {
	border-collapse: collapse;
}

.bo_fx::after {
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}

/* =============== FORM =============== */
.frm_input,
.ist-select-01,
.sch_input {
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--txt-color);
	font-size: 15px;
	line-height: 44px;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
.frm_input:focus,
.ist-select-01:focus,
.sch_input:focus {
	border-color: var(--tit-color);
	outline: 0;
}
.frm_input::-webkit-input-placeholder,
.ist-select-01::-webkit-input-placeholder,
.sch_input::-webkit-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_input::-moz-placeholder,
.ist-select-01::-moz-placeholder,
.sch_input::-moz-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_input:-ms-input-placeholder,
.ist-select-01:-ms-input-placeholder,
.sch_input:-ms-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_input::-ms-input-placeholder,
.ist-select-01::-ms-input-placeholder,
.sch_input::-ms-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_input::placeholder,
.ist-select-01::placeholder,
.sch_input::placeholder {
	color: rgba(34, 34, 34, 0.35);
}

.frm_textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--txt-color);
	font-size: 15px;
	line-height: 1.7;
	resize: vertical;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
.frm_textarea:focus {
	border-color: var(--tit-color);
	outline: 0;
}
.frm_textarea::-webkit-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_textarea::-moz-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_textarea:-ms-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_textarea::-ms-input-placeholder {
	color: rgba(34, 34, 34, 0.35);
}
.frm_textarea::placeholder {
	color: rgba(34, 34, 34, 0.35);
}

.ist-select-01 {
	min-width: 130px;
	padding-right: 34px;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #222 50%), linear-gradient(135deg, #222 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 21px,
		calc(100% - 13px) 21px;
	background-size:
		5px 5px,
		5px 5px;
	background-repeat: no-repeat;
}

.frm_file {
	width: 100%;
	font-size: 13px;
	color: var(--sub-color);
}
.frm_file::-webkit-file-upload-button {
	height: 32px;
	margin-right: 10px;
	padding: 0 12px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--sub-color);
	font-size: 13px;
	cursor: pointer;
}
.frm_file::file-selector-button {
	height: 32px;
	margin-right: 10px;
	padding: 0 12px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--sub-color);
	font-size: 13px;
	cursor: pointer;
}
.frm_file::-webkit-file-upload-button:hover {
	border-color: var(--tit-color);
	color: var(--tit-color);
}
.frm_file::file-selector-button:hover {
	border-color: var(--tit-color);
	color: var(--tit-color);
}

.half_input {
	width: 100%;
	max-width: 320px;
}

.full_input {
	width: 100%;
}

.require {
	margin-left: 6px;
	color: var(--tit-color);
	font-size: 12px;
	font-weight: 400;
	vertical-align: 2px;
}

.require::before {
	content: "*";
}

/* =============== BUTTON =============== */
.ist-bt-01,
.btn-dark,
.btn-light,
.btn_b01,
.btn_frmline,
.sch_btn,
.btn_submit {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	height: 44px;
	padding: 0 18px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--txt-color);
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
	transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
}
.ist-bt-01 i,
.btn-dark i,
.btn-light i,
.btn_b01 i,
.btn_frmline i,
.sch_btn i,
.btn_submit i {
	font-size: 13px;
}
.ist-bt-01:disabled,
.btn-dark:disabled,
.btn-light:disabled,
.btn_b01:disabled,
.btn_frmline:disabled,
.sch_btn:disabled,
.btn_submit:disabled {
	opacity: 0.4;
	cursor: default;
}

.btn_b01 {
	width: 44px;
	padding: 0;
}

.btn_bo_user {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.btn_bo_user > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}
.btn_bo_user ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}
.btn_bo_user .btn-r {
	margin-left: auto;
}

.more_opt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

/* =============== CHECKBOX =============== */
.selec_chk {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	outline: 0;
	z-index: -1;
	overflow: hidden;
}

.chk_box {
	position: relative;
}

.chk_box input[type="checkbox"] + label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--txt-color);
	font-weight: 400;
	cursor: pointer;
}
.chk_box input[type="checkbox"] + label span {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	-webkit-transition:
		background 0.2s,
		border-color 0.2s;
	transition:
		background 0.2s,
		border-color 0.2s;
}

.chk_box input[type="checkbox"] + label:hover span {
	border-color: var(--sub-color);
}

.chk_box input[type="checkbox"]:checked + label {
	color: var(--tit-color);
}

.chk_box input[type="checkbox"]:checked + label span {
	border-color: var(--tit-color);
	background: var(--tit-color);
}
.chk_box input[type="checkbox"]:checked + label span::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 5px;
	width: 5px;
	height: 9px;
	border: solid var(--white-color);
	border-width: 0 2px 2px 0;
	rotate: 45deg;
}

/* =============== LIST =============== */
#bo_list {
	position: relative;
	margin-bottom: 20px;
}

#bo_list::after {
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}

#bo_cate {
	margin-bottom: 20px;
}

#bo_cate > h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}

#bo_cate_ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#bo_cate_ul li {
	margin: 0 -1px -1px 0;
}
#bo_cate_ul a {
	display: block;
	padding: 13px 20px;
	border: 1px solid var(--line-color);
	color: var(--sub-color);
	font-size: 14px;
	line-height: 1;
}
#bo_cate_ul a:hover,
#bo_cate_ul li.on a {
	position: relative;
	z-index: 1;
	border-color: var(--tit-color);
	background: var(--tit-color);
	color: var(--white-color);
}

#bo_btn_top {
	margin-bottom: 14px;
	-webkit-transition: height 0.2s;
	transition: height 0.2s;
}

#bo_btn_bottom {
	margin-top: 20px;
}

#bo_list_total {
	color: var(--sub-color);
	font-size: 13px;
}

#bo_list_total span {
	margin-right: 8px;
	color: var(--tit-color);
}

.ist-table.normal .th-chk,
.ist-table.normal .td-chk {
	width: 54px;
	text-align: center;
}
.ist-table.normal .th-no,
.ist-table.normal .td-no {
	width: 80px;
}
.ist-table.normal .th-name,
.ist-table.normal .td-name {
	width: 160px;
}
.ist-table.normal .th-hit,
.ist-table.normal .td-hit {
	width: 90px;
}
.ist-table.normal .th-date,
.ist-table.normal .td-date {
	width: 120px;
}
.ist-table.normal > h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
.ist-table.normal .sv_use,
.ist-table.normal .sv_member {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ist-table.normal .tb-hd {
	border-top: 2px solid var(--tit-color);
	border-bottom: 1px solid var(--line-color);
	overflow: hidden;
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
.ist-table.normal .tb-hd ul {
	display: table;
	table-layout: fixed;
	width: 100%;
	text-align: center;
}
.ist-table.normal .tb-hd li {
	display: table-cell;
	padding: 16px 0;
	vertical-align: middle;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}
.ist-table.normal .tb-hd a {
	color: var(--tit-color);
}
.ist-table.normal .tb-hd a:hover {
	text-decoration: underline;
}
.ist-table.normal .tb-hd .th-chk {
	padding: 0;
}
.ist-table.normal .tb-hd .th-chk label {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.ist-table.normal .tb-body ul li {
	display: table;
	table-layout: fixed;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid var(--line-color);
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
}
.ist-table.normal .tb-body ul li:hover {
	background: rgba(34, 34, 34, 0.03);
}
.ist-table.normal .tb-body ul li.bo_notice {
	background: rgba(34, 34, 34, 0.05);
}
.ist-table.normal .tb-body ul li .td {
	display: table-cell;
	padding: 18px 0;
	vertical-align: middle;
	color: var(--sub-color);
	font-size: 14px;
}
.ist-table.normal .tb-body ul li .td-name {
	color: var(--txt-color);
}
.ist-table.normal .tb-body ul li .td-hit,
.ist-table.normal .tb-body ul li .td-date {
	font-size: 13px;
}
.ist-table.normal .tb-body ul li .td-title {
	text-align: left;
	padding: 18px 20px;
}
.ist-table.normal .tb-body ul li .td-title .fa-reply {
	margin-right: 6px;
	color: var(--sub-color);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.ist-table.normal .tb-body ul li .td-title .title-wr {
	display: inline-block;
	max-width: 100%;
}
.ist-table.normal .tb-body ul li .td-title a {
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--tit-color);
	font-size: 15px;
}
.ist-table.normal .tb-body ul li .td-title a:hover {
	text-decoration: underline;
}
.ist-table.normal .tb-body ul li .cate {
	display: inline-block;
	margin-right: 8px;
	padding: 6px 8px;
	border: 1px solid var(--sub-color);
	border-radius: 0;
	background: var(--sub-color);
	color: var(--white-color);
	font-size: 12px;
	line-height: 1;
	text-align: center;
	vertical-align: 2px;
}
.ist-table.normal .tb-body li.empty_table {
	display: block;
	padding: 70px 0;
	border-bottom: 1px solid var(--line-color);
	color: var(--sub-color);
	text-align: center;
}
.ist-table.normal .notice_icon {
	display: inline-block;
	padding: 5px 8px;
	background: var(--tit-color);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
}
.ist-table.normal .bo_current {
	display: inline-block;
	padding: 5px 8px;
	border: 1px solid var(--line-color);
	color: var(--tit-color);
	font-size: 12px;
	line-height: 1;
}

/* =============== SEARCH =============== */
.bo_sch_wrap {
	margin-top: 30px;
	padding: 24px 0;
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
}

.bo_sch form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
.bo_sch .sch_input {
	width: 100%;
	max-width: 300px;
}
.bo_sch .sch_btn {
	min-width: 96px;
	border-color: var(--tit-color);
	background: var(--tit-color);
	color: var(--white-color);
}
.bo_sch .sch_btn:hover {
	background: var(--white-color);
	color: var(--tit-color);
}

/* =============== VIEW =============== */
#bo_v {
	margin-bottom: 20px;
	background: var(--white-color);
}

#bo_v_table {
	position: absolute;
	top: 0;
	right: 16px;
	height: 26px;
	padding: 0 8px;
	background: var(--tit-color);
	color: var(--white-color);
	font-size: 12px;
	line-height: 26px;
}

#bo_v_title {
	margin: 0 0 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--tit-color);
}

#bo_v_title .bo_v_cate {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 10px;
	background: var(--sub-color);
	color: var(--white-color);
	font-size: 12px;
	line-height: 1;
}

#bo_v_title .bo_v_tit {
	display: block;
	color: var(--tit-color);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	word-break: break-all;
}

#bo_v_info {
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line-color);
	color: var(--sub-color);
}
#bo_v_info > h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#bo_v_info .profile_info {
	margin: 0;
}
#bo_v_info .pf_img {
	display: none;
}
#bo_v_info .profile_info_ct {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 16px;
	padding: 5px 0;
	font-size: 13px;
}
#bo_v_info .v-name {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	color: var(--tit-color);
	font-weight: 500;
}
#bo_v_info strong {
	display: inline-block;
	margin: 0;
	font-weight: 400;
}
#bo_v_info strong i {
	margin-right: 5px;
}
#bo_v_info .fa-commenting-o {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
#bo_v_info .if_date {
	color: var(--sub-color);
}
#bo_v_info a {
	color: inherit;
}
#bo_v_info a:hover {
	text-decoration: underline;
}

.view-wr {
	padding: 30px;
	border: 1px solid var(--line-color);
	border-radius: 0;
}

#bo_v_atc {
	min-height: 200px;
	font-size: 15px;
}

#bo_v_atc_title {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}

#bo_v_atc > ul > li {
	padding: 18px 0;
	border-bottom: 1px dashed var(--line-color);
	word-break: break-all;
}
#bo_v_atc > ul > li strong {
	display: block;
	margin-bottom: 8px;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 700;
}
#bo_v_atc > ul > li img {
	max-width: 100%;
	height: auto;
}
#bo_v_atc > ul > li a.view_image {
	display: inline-block;
}

#bo_v_atc > ul > li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

#bo_v_act {
	margin: 30px 0 0;
	text-align: center;
}

#bo_v_act .bo_v_act_gng {
	position: relative;
	display: inline-block;
}

#bo_v_act i {
	margin-right: 5px;
	font-size: 1.2em;
}

#bo_v_act .bo_v_good,
#bo_v_act .bo_v_nogood {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	min-width: 92px;
	height: 46px;
	margin-right: 5px;
	padding: 0 16px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	color: var(--sub-color);
	-webkit-transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
	transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
}

#bo_v_act a:hover {
	border-color: var(--tit-color);
	background: var(--tit-color);
	color: var(--white-color);
}

#bo_v_act_good,
#bo_v_act_nogood {
	display: none;
	position: absolute;
	top: 52px;
	left: 0;
	z-index: 999;
	width: 165px;
	padding: 10px 0;
	background: var(--tit-color);
	color: var(--white-color);
	font-size: 13px;
	text-align: center;
}

#bo_v_file,
#bo_v_link {
	margin-top: 20px;
}

#bo_v_file > h2,
#bo_v_link > h2 {
	margin-bottom: 10px;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 500;
}

#bo_v_file li,
#bo_v_link li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	position: relative;
	margin-top: -1px;
	padding: 16px 18px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
#bo_v_file li i,
#bo_v_link li i {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	color: var(--sub-color);
	font-size: 1.5em;
}
#bo_v_file li a,
#bo_v_link li a {
	display: block;
	color: var(--txt-color);
	word-wrap: break-word;
}
#bo_v_file li strong,
#bo_v_link li strong {
	font-weight: 500;
}
#bo_v_file li .bo_v_file_cnt,
#bo_v_file li .bo_v_link_cnt,
#bo_v_link li .bo_v_file_cnt,
#bo_v_link li .bo_v_link_cnt {
	color: var(--sub-color);
	font-size: 13px;
}
#bo_v_file li:hover,
#bo_v_link li:hover {
	position: relative;
	z-index: 1;
	border-color: var(--tit-color);
}
#bo_v_file li:hover a,
#bo_v_link li:hover a {
	color: var(--tit-color);
	text-decoration: underline;
}

.bo_v_nb {
	margin-top: 20px;
	border-top: 1px solid var(--line-color);
}
.bo_v_nb li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 16px 4px;
	border-bottom: 1px solid var(--line-color);
}
.bo_v_nb .nb_tit {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 92px;
	color: var(--tit-color);
	font-size: 13px;
}
.bo_v_nb .nb_tit i {
	margin-left: 4px;
}
.bo_v_nb .nb_date {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	color: var(--sub-color);
	font-size: 13px;
}
.bo_v_nb a {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--txt-color);
}
.bo_v_nb a:hover {
	color: var(--tit-color);
	text-decoration: underline;
}

#bo_v_top {
	margin-top: 24px;
}

#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 {
	word-break: break-all;
}

#bo_v_bot {
	margin-top: 20px;
}

#bo_v_bot::after {
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}

/* =============== WRITE =============== */
#bo_w > h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#bo_w form {
	width: 100% !important;
}
#bo_w label {
	display: block;
	margin-bottom: 8px;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 500;
}
#bo_w label em {
	display: block;
	margin-top: 4px;
	color: var(--sub-color);
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
}
#bo_w .write_div + .write_div {
	margin-top: 26px;
}
#bo_w .bo_w_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--line-color);
}
#bo_w .bo_w_info .write_div {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 220px;
	flex: 1 1 220px;
	margin-top: 0;
}
#bo_w .bo_w_info .frm_input {
	width: 100%;
	max-width: none;
}
#bo_w .bo_w_info select {
	width: 100%;
}
#bo_w .bo_w_select select {
	width: 100%;
	height: 46px;
	padding: 0 34px 0 14px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--txt-color);
	font-size: 15px;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #222 50%), linear-gradient(135deg, #222 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 21px,
		calc(100% - 13px) 21px;
	background-size:
		5px 5px,
		5px 5px;
	background-repeat: no-repeat;
}
#bo_w .bo_w_select select:focus {
	border-color: var(--tit-color);
	outline: 0;
}
#bo_w .bo_w_tit {
	margin-top: 26px;
}
#bo_w .bo_w_tit .title-wr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
#bo_w .bo_w_tit .title-wr > label {
	margin-bottom: 0;
}
#bo_w .bo_v_option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}
#bo_w .bo_v_option label {
	margin-bottom: 0;
	font-weight: 400;
}
#bo_w #autosave_wrapper {
	position: relative;
	margin-top: 12px;
}
#bo_w #btn_autosave {
	margin-top: 8px;
}
#bo_w .bo_w_link .frm_input {
	width: 100%;
}
#bo_w {
	/* 썸네일 이미지 업로드 영역 */
}
#bo_w .bo_w_flie .file_wr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-top: 0;
}
#bo_w .bo_w_flie .lb_icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	height: 46px;
	margin: 0;
	padding: 0 16px;
	border: 1px dashed var(--line-color);
	color: var(--sub-color);
	font-weight: 400;
	cursor: pointer;
	-webkit-transition:
		border-color 0.2s,
		color 0.2s;
	transition:
		border-color 0.2s,
		color 0.2s;
}
#bo_w .bo_w_flie .lb_icon:hover {
	border-color: var(--tit-color);
	color: var(--tit-color);
}
#bo_w .bo_w_flie .file-size {
	font-size: 12px;
}
#bo_w .bo_w_flie .frm_file {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	min-width: 0;
}
#bo_w .bo_w_flie .frm_input {
	width: 100%;
	margin-top: 10px;
}
#bo_w .bo_w_flie .file_del {
	display: block;
	margin-top: 10px;
	font-size: 13px;
}
#bo_w .bo_w_flie .file_del label {
	display: inline;
	margin: 0;
	color: var(--sub-color);
	font-weight: 400;
}
#bo_w .btn_confirm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--line-color);
}
#bo_w .btn_confirm .btn-cancel,
#bo_w .btn_confirm .btn-submit {
	min-width: 150px;
	height: 52px;
}

#char_cnt {
	display: block;
	margin-top: 8px;
	color: var(--sub-color);
	font-size: 13px;
	font-weight: 400;
	text-align: right;
}

#char_count {
	color: var(--tit-color);
	font-weight: 500;
}

#char_count_desc {
	display: block;
	margin-bottom: 5px;
}

#char_count_wrap {
	margin-top: 5px;
	text-align: right;
}

#autosave_pop {
	display: none;
	z-index: 10;
	position: absolute !important;
	top: 52px;
	right: 0;
	width: 350px;
	max-height: 190px;
	border: 1px solid var(--tit-color);
	border-radius: 0;
	background: var(--white-color);
}
#autosave_pop strong {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#autosave_pop ul {
	height: 130px;
	padding: 14px;
	overflow-y: auto;
	border-bottom: 1px solid var(--line-color);
}
#autosave_pop li {
	padding: 9px 5px;
	border-bottom: 1px solid var(--line-color);
	font-size: 13px;
}
#autosave_pop li::after {
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}
#autosave_pop a {
	display: block;
	float: left;
	color: var(--txt-color);
}
#autosave_pop a:hover {
	text-decoration: underline;
}
#autosave_pop span {
	display: block;
	float: right;
	color: var(--sub-color);
	font-size: 12px;
}
#autosave_pop div {
	margin: 0 !important;
	text-align: center;
}
#autosave_pop button {
	margin: 0;
	padding: 0;
	border: 0;
}

.autosave_close {
	width: 100%;
	height: 36px;
	border: 0;
	background: none;
	color: var(--sub-color);
	font-size: 13px;
	cursor: pointer;
}

.autosave_close:hover {
	background: var(--tit-color);
	color: var(--white-color);
}

.autosave_content {
	display: none;
}

.autosave_del {
	width: 20px;
	height: 20px;
	border: 0;
	background: none;
	overflow: hidden;
	text-indent: -999px;
	cursor: pointer;
}

/* =============== COMMENT =============== */
.cmt_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 52px;
	margin-top: 30px;
	padding: 0 18px;
	border: 1px solid var(--line-color);
	border-radius: 0;
	background: var(--white-color);
	color: var(--tit-color);
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
.cmt_btn .total b {
	font-weight: 500;
}
.cmt_btn .total i {
	margin: 0 6px 0 4px;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.cmt_btn .cmt_more i {
	display: block;
	-webkit-transition: rotate 0.2s;
	transition: rotate 0.2s;
}
.cmt_btn.cmt_btn_op .cmt_more i {
	rotate: 180deg;
}
.cmt_btn:hover {
	border-color: var(--tit-color);
}

#bo_vc > h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#bo_vc article {
	padding: 20px 18px;
	border: 1px solid var(--line-color);
	border-top: 0;
}
#bo_vc .cm_wrap > header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 500;
}
#bo_vc .cm_wrap > header h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#bo_vc .cm_wrap > header .fa-reply {
	color: var(--sub-color);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
#bo_vc .cm_wrap > header .bo_vc_hdinfo {
	margin-left: auto;
	color: var(--sub-color);
	font-size: 13px;
	font-weight: 400;
}
#bo_vc .cm_wrap > header .bo_vc_hdinfo i {
	margin-right: 4px;
}
#bo_vc .cmt_contents p {
	color: var(--txt-color);
	line-height: 1.7;
	word-break: break-all;
}
#bo_vc .cmt_contents .fa-lock {
	margin-right: 6px;
	color: var(--sub-color);
}
#bo_vc .bo_vl_opt {
	margin-top: 12px;
}
#bo_vc .bo_vc_act {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 6px;
}
#bo_vc .bo_vc_act a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 32px;
	padding: 0 12px;
	border: 1px solid var(--line-color);
	color: var(--sub-color);
	font-size: 13px;
	line-height: 1;
	-webkit-transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
	transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
}
#bo_vc .bo_vc_act a:hover {
	border-color: var(--tit-color);
	background: var(--tit-color);
	color: var(--white-color);
}
#bo_vc #bo_vc_empty {
	padding: 50px 0;
	border: 1px solid var(--line-color);
	border-top: 0;
	color: var(--sub-color);
	text-align: center;
}

aside#bo_vc_w {
	margin-top: 20px;
}
aside#bo_vc_w > h2 {
	margin-bottom: 10px;
	color: var(--tit-color);
	font-size: 14px;
	font-weight: 500;
}

/* 답변·수정 시 form 이 이동하는 자리 */
span.bo_vc_w {
	display: block;
	margin-top: 14px;
}

span.bo_vc_w:empty {
	display: none;
	margin: 0;
}

#fviewcomment {
	padding: 20px 18px;
	border: 1px solid var(--line-color);
}
#fviewcomment .bo_vc_w_wr {
	margin-bottom: 10px;
}
#fviewcomment .bo_vc_w_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
#fviewcomment .bo_vc_w_info .frm_input {
	width: 180px;
}
#fviewcomment .bo_vc_w_info .secret_cm {
	margin-left: auto;
}
#fviewcomment #bo_vc_send_sns {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}
#fviewcomment .frm_textarea {
	min-height: 120px;
}
#fviewcomment .btn_confirm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
}
#fviewcomment .btn_confirm.is_guest {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#fviewcomment .btn_submit {
	min-width: 130px;
}

/* =============== 1230 =============== */
@media screen and (max-width: 1230px) {
	.ist-table.normal .th-no,
	.ist-table.normal .td-no {
		width: 60px;
	}
	.ist-table.normal .th-name,
	.ist-table.normal .td-name {
		width: 120px;
	}
	.ist-table.normal .th-hit,
	.ist-table.normal .td-hit {
		width: 80px;
	}
	.ist-table.normal .th-date,
	.ist-table.normal .td-date {
		width: 90px;
	}
}
/* =============== 768 =============== */
@media screen and (max-width: 768px) {
	#bo_btn_top {
		height: 0;
		margin: 0;
		overflow: hidden;
	}
	.ist-table.normal .tb-hd {
		height: 0;
		border-bottom: 0;
		overflow: hidden;
	}
	.ist-table.normal .tb-body ul li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		position: relative;
		padding: 16px 4px;
	}
	.ist-table.normal .tb-body ul li .td {
		display: inline-block;
		width: auto;
		padding: 0;
		line-height: 1.4;
	}
	.ist-table.normal .tb-body ul li .td-chk {
		position: absolute;
		top: 16px;
		left: 0;
	}
	.ist-table.normal .tb-body ul li .td-no.is_admin {
		position: absolute;
		top: 16px;
		left: 30px;
	}
	.ist-table.normal .tb-body ul li .td-no .notice_icon {
		line-height: 1 !important;
	}
	.ist-table.normal .tb-body ul li .td-no .sound_only {
		position: relative;
		top: 1px;
		width: auto;
		height: auto;
		margin: 0;
		clip: auto;
		color: var(--sub-color);
		font-size: 13px;
		line-height: 1em;
		padding-right: 5px !important;
	}
	.ist-table.normal .tb-body ul li .td-title {
		width: 100%;
		padding: 14px 0;
	}
	.ist-table.normal .tb-body ul li .td-title a {
		white-space: normal;
	}
	.ist-table.normal .tb-body ul li .td-name {
		position: absolute;
		top: 16px;
		right: 0;
		font-size: 13px;
	}
	.ist-table.normal .tb-body ul li .td-hit .sound_only,
	.ist-table.normal .tb-body ul li .td-date .sound_only {
		position: relative;
		top: 1px;
		width: auto;
		height: auto;
		margin: 0;
		clip: auto;
		color: var(--sub-color);
		font-size: 13px;
		line-height: 1em;
		padding-right: 5px !important;
		margin-right: 5px !important;
		padding-right: 8px !important;
		border-right: 1px solid var(--line-color) !important;
	}
	.view-wr {
		padding: 20px;
	}
	#bo_v_title .bo_v_tit {
		font-size: 20px;
	}
	.bo_v_nb li {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 8px;
	}
	.bo_v_nb a {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
	#bo_w .bo_w_info {
		gap: 16px;
	}
	#bo_w .bo_w_info .write_div {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
	#bo_w .bo_w_tit .title-wr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}
	#bo_w .btn_confirm .btn-cancel,
	#bo_w .btn_confirm .btn-submit {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		min-width: 0;
	}
	#bo_w .bo_w_flie .file_wr {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#autosave_pop {
		width: 100%;
	}
	#fviewcomment .bo_vc_w_info .frm_input {
		width: 100%;
	}
	#fviewcomment .bo_vc_w_info .secret_cm {
		margin-left: 0;
	}
}
/* =============== 570 =============== */
@media screen and (max-width: 570px) {
	#bo_v_info .profile_info_ct {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#bo_v_info .profile_info_ct .v-name {
		width: 100%;
	}
	.bo_sch form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.bo_sch .sch_input {
		max-width: none;
	}
	.ist-select-01 {
		width: 100%;
	}
	#fviewcomment .btn_confirm.is_guest {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	#fviewcomment .btn_submit {
		width: 100%;
	}
}
/* =============== INBLOG TYPE =============== */
#bo_w {
	padding: 50px 0 80px;
}
#bo_w #fwrite {
	max-width: 900px;
	margin: 0 auto;
}
#bo_w .write_div {
	margin-bottom: 28px;
}
#bo_w .write_div > label,
#bo_w .title-wr > label {
	display: block;
	margin-bottom: 10px;
	color: var(--tit-color);
	font-size: 15px;
	font-weight: 700;
}
#bo_w .write_div label em,
#bo_w .title-wr label em {
	margin-left: 8px;
	color: #888;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
}
#bo_w .half_input {
	max-width: none;
}
#bo_w #wr_subject {
	height: 58px;
	padding: 0 18px;
	font-size: 18px;
	font-weight: 600;
}
#bo_w .blog-content-field {
	padding-top: 10px;
}
#bo_w .wr_content_wrap {
	min-height: 360px;
}
#bo_w #wr_content {
	min-height: 360px;
}
#bo_w .bo_w_flie {
	padding: 22px;
	border: 1px solid var(--line-color);
	background: #fafafa;
}
#bo_w .btn_confirm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 20px;
	border-top: 1px solid var(--line-color);
}

.blog-list-wrap {
	padding: 32px 0 60px;
}

.blog-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 24px;
}

.blog-card {
	position: relative;
	min-width: 0;
	background: transparent;
	-webkit-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.05);
}

.blog-card-check {
	position: absolute;
	z-index: 3;
	top: 12px;
	left: 12px;
}

.blog-card-link {
	display: block;
	height: 100%;
}

/* 목록 썸네일 이미지 */
.blog-card-thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: #f2f2f2;
}

.blog-card-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.45s ease;
	transition: -webkit-transform 0.45s ease;
	transition: transform 0.45s ease;
	transition:
		transform 0.45s ease,
		-webkit-transform 0.45s ease;
}

.blog-card:hover .blog-card-thumb img {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
}

.blog-no-image {
	position: absolute;
	inset: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #aaa;
	font-size: 12px;
	letter-spacing: 0.12em;
}

.blog-card-content {
	padding: 16px;
}

.blog-card-meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	color: #999;
	font-size: 13px;
}

.blog-category {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 26px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #f3f3f3;
	color: #555;
	font-size: 12px;
}

.blog-card h3 {
	overflow: hidden;
	display: -webkit-box;
	margin: 0 0 10px;
	color: #202020;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.blog-read-more {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
	margin-top: 20px;
	color: #333;
	font-size: 13px;
	font-weight: 600;
}

#bo_v > header {
	margin: 0 auto;
	padding: 64px 0 28px;
	text-align: center;
}

#bo_v_title .bo_v_tit {
	color: #1f1f1f;
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.045em;
}

#bo_v .view-wr {
	margin: 0 auto;
}

.blog-view-meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 34px;
	color: #999;
	font-size: 13px;
}

.blog-view-meta > * + *::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 10px;
	margin-right: 15px;
	background: #ddd;
}

/* 상세페이지 썸네일 이미지 */
.blog-view-cover {
	overflow: hidden;
	margin: 0 0 48px;
	aspect-ratio: 16/9;
	background: #f4f4f4;
}

.blog-view-cover img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-view-content {
	color: #333;
	font-size: 17px;
	line-height: 1.9;
	word-break: keep-all;
}

.blog-view-content img {
	display: block;
	max-width: unset !important;
	width: 100% !important;
	height: auto;
	margin: 32px auto;
}

.blog-view-content h2,
.blog-view-content h3,
.blog-view-content h4 {
	margin: 1.8em 0 0.7em;
	color: #222;
	line-height: 1.4;
}

.blog-view-content p {
	margin: 0 0 1.4em;
}

@media (max-width: 900px) {
	.blog-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	#bo_v > header,
	#bo_v .view-wr,
	#bo_w #fwrite {
		width: calc(100% - 40px);
	}
}
@media (max-width: 640px) {
	.blog-card-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.blog-list-wrap {
		padding-top: 20px;
	}
	#bo_v > header {
		padding-top: 42px;
	}
	#bo_v_title .bo_v_tit {
		font-size: 30px;
	}
	.blog-view-meta {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 24px;
	}
	.blog-view-cover {
		margin-bottom: 32px;
	}
	.blog-view-content {
		font-size: 16px;
	}
} /*# sourceMappingURL=style.css.map */
