.ing_board_list_skin_1 {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.ing_board_list_skin_1 *,
.ing_board_list_skin_1 *::before,
.ing_board_list_skin_1 *::after {
	box-sizing: border-box;
}


/* 상단 전체 건수 및 검색 */
.ing_board_list_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 44px;
	margin: 0 0 18px;
	padding: 0;
	gap: 20px;
	clear: both;
}

.ing_board_list_total {
	display: block;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	line-height: 44px;
	text-align: left;
	white-space: nowrap;
}

.ing_board_list_total strong {
	display: inline-block;
	margin: 0 4px;
	color: #222;
	font-size: 17px;
	font-weight: 700;
	vertical-align: baseline;
}


/* 검색 폼 */
.ing_board_search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	width: auto;
	margin: 0 0 0 auto;
	padding: 0;
	gap: 8px;
	border: 0;
	background: none;
}

.ing_board_search input,
.ing_board_search select,
.ing_board_search button {
	margin: 0;
	font-family: inherit;
	vertical-align: middle;
}


/* 구분 선택 */
.ing_board_search_select {
	display: block;
	flex: 0 0 145px;
	width: 145px;
	height: 44px;
	margin: 0;
	padding: 0 38px 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background-color: #fff;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 42px;
	outline: none;
	cursor: pointer;
}


/* 검색어 */
.ing_board_search_input {
	display: block;
	flex: 0 0 240px;
	width: 240px;
	height: 44px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background-color: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 400;
	line-height: 42px;
	outline: none;
}

.ing_board_search_input::placeholder {
	color: #aaa;
	opacity: 1;
}

.ing_board_search_select:focus,
.ing_board_search_input:focus {
	border-color: #555;
}


/* 검색 버튼 */
.ing_board_search_button {
	display: block;
	flex: 0 0 auto;
	min-width: 78px;
	height: 44px;
	margin: 0;
	padding: 0 20px;
	border: 1px solid #222;
	border-radius: 5px;
	background-color: #222;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 42px;
	text-align: center;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.ing_board_search_button:hover {
	border-color: #444;
	background-color: #444;
}


/* 게시물 목록 */
.ing_board_list_contents {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
}


/* 하단 페이징 및 글쓰기 */
.ing_board_bottom {
	position: relative;
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) 120px;
	align-items: center;
	width: 100%;
	min-height: 44px;
	margin: 28px 0 0;
	padding: 0;
	clear: both;
}

.ing_board_bottom_space {
	display: block;
	width: 100%;
}


/* 페이징 */
.ing_board_paging {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.ing_board_page_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 38px;
	height: 38px;
	padding: 0 9px;
	border: 1px solid #dedede;
	border-radius: 4px;
	background-color: #fff;
	color: #555;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.ing_board_page_button:hover {
	border-color: #555;
	color: #222;
}

.ing_board_page_button.active {
	border-color: #222;
	background-color: #222;
	color: #fff;
	font-weight: 700;
}

.ing_board_page_button.disabled {
	border-color: #eee;
	background-color: #fafafa;
	color: #c8c8c8;
	cursor: default;
}

.ing_board_page_arrow {
	font-family: Arial, sans-serif;
	font-size: 17px;
}


/* 글쓰기 */
.ing_board_write_box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin: 0;
	padding: 0;
}

.ing_board_write_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 42px;
	padding: 0 20px;
	border: 1px solid #222;
	border-radius: 5px;
	background-color: #222;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.ing_board_write_button:hover {
	border-color: #444;
	background-color: #444;
	color: #fff;
}

.ing_board_write_button span {
	display: block;
	line-height: 1;
}


/* 모바일 */
@media (max-width:768px) {
	.ing_board_list_head {
		display: block;
		min-height: 0;
		margin-bottom: 15px;
	}

	.ing_board_list_total {
		margin-bottom: 9px;
		font-size: 13px;
		line-height: 22px;
	}

	.ing_board_list_total strong {
		font-size: 15px;
	}

	.ing_board_search {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 72px;
		width: 100%;
		margin: 0;
		gap: 7px;
	}

	.ing_board_search_select {
		grid-column: 1 / 3;
		width: 100%;
		max-width: none;
		height: 42px;
		line-height: 40px;
	}

	.ing_board_search_input {
		grid-column: 1;
		width: 100%;
		min-width: 0;
		height: 42px;
		line-height: 40px;
	}

	.ing_board_search_button {
		grid-column: 2;
		width: 72px;
		min-width: 72px;
		height: 42px;
		padding: 0 12px;
		line-height: 40px;
	}

	.ing_board_bottom {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		margin-top: 22px;
	}

	.ing_board_bottom_space {
		display: none;
	}

	.ing_board_paging {
		order: 1;
		gap: 4px;
	}

	.ing_board_page_button {
		min-width: 34px;
		height: 34px;
		padding: 0 7px;
		font-size: 12px;
	}

	.ing_board_page_arrow {
		font-size: 15px;
	}

	.ing_board_write_box {
		order: 2;
		justify-content: flex-end;
		margin-top: 14px;
	}

	.ing_board_write_button {
		min-width: 82px;
		height: 40px;
		padding: 0 17px;
		font-size: 13px;
	}
}

/* 게시판 테이블 */
.ing_board_table_wrap {
	width: 100%;
	border-top: 2px solid #202632;
	border-bottom: 1px solid #d9dee7;
}

.ing_board_table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.ing_board_table caption {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.ing_board_table th {
	height: 58px;
	padding: 12px 10px;
	border-bottom: 1px solid #cfd5df;
	background: #f7f8fa;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #3e4654;
	text-align: center;
}

.ing_board_table td {
	height: 66px;
	padding: 12px 10px;
	border-bottom: 1px solid #e7eaf0;
	background: #ffffff;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: #646d7c;
	text-align: center;
	vertical-align: middle;
}

.ing_board_table tbody tr:last-child td {
	border-bottom: 0;
}

.ing_board_table tbody tr {
	transition:
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.ing_board_table tbody tr:hover td {
	background: #fafcff;
}

.ing_board_col_number {
	width: 92px;
}

.ing_board_col_subject {
	width: auto;
}

.ing_board_col_writer {
	width: 150px;
}

.ing_board_col_date {
	width: 130px;
}

.ing_board_col_hit {
	width: 100px;
}

.ing_board_subject_td {
	text-align: left !important;
}

.ing_board_subject_link {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 8px;
	color: #252b36;
	transition: color 0.2s ease;
}

.ing_board_subject_link:hover {
	color: #2563eb;
}

.ing_board_subject_text {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

.ing_board_notice_badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 48px;
	height: 25px;
	padding: 0 10px;
	border-radius: 20px;
	background: #202632;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	color: #ffffff;
}

.ing_board_new_badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #2563eb;
	font-family: Arial, sans-serif;
	font-size: 10px;
	line-height: 19px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
}

.ing_board_comment_count {
	flex-shrink: 0;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: #2563eb;
}

.ing_board_secret_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	font-size: 12px;
	color: #777f8e;
}

.ing_board_mobile_meta {
	display: none;
}


/* 게시물이 없을 때 */
.ing_board_empty {
	padding: 85px 20px !important;
	text-align: center !important;
}

.ing_board_empty_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: #f1f3f7;
	font-size: 22px;
	color: #9aa2b0;
}

.ing_board_empty_title {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	color: #555e6c;
}

.ing_board_empty_text {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: #969daa;
}


/* 하단 영역 */
.ing_board_bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.ing_board_bottom_space {
	min-width: 1px;
}

.ing_board_write_box {
	display: flex;
	justify-content: flex-end;
}


/* 페이징 */
.ing_board_paging {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.ing_board_page_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 8px;
	border: 1px solid #dce1e8;
	border-radius: 8px;
	background: #ffffff;
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	color: #717987;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.ing_board_page_button:hover {
	border-color: #9eabc0;
	color: #202632;
	transform: translateY(-1px);
}

.ing_board_page_button.active {
	border-color: #2563eb;
	background: #2563eb;
	font-weight: 700;
	color: #ffffff;
}

.ing_board_page_button.disabled {
	border-color: #eceff3;
	background: #fafbfc;
	color: #c3c8d0;
	cursor: default;
	pointer-events: none;
}

.ing_board_page_arrow {
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
}


/* 글쓰기 버튼 */
.ing_board_write_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 108px;
	height: 44px;
	padding: 0 20px;
	border: 1px solid #202632;
	border-radius: 8px;
	background: #202632;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #ffffff !important;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.ing_board_write_button:hover {
	border-color: #2563eb;
	background: #2563eb;
	transform: translateY(-2px);
}


/* 검색 */
.ing_board_search {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	max-width: 570px;
	margin: 35px auto 0;
}

.ing_board_search_select {
	flex-shrink: 0;
	width: 125px;
	height: 44px;
	padding: 0 34px 0 14px;
	border: 1px solid #d7dce5;
	border-radius: 8px;
	outline: 0;
	background-color: #ffffff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	color: #4f5867;
}

.ing_board_search_input {
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 0 15px;
	border: 1px solid #d7dce5;
	border-radius: 8px;
	outline: 0;
	background: #ffffff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	color: #252b36;
}

.ing_board_search_select:focus,
.ing_board_search_input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.ing_board_search_input::placeholder {
	color: #a3aab6;
}

.ing_board_search_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 76px;
	height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 8px;
	background: #505968;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.ing_board_search_button:hover {
	background: #202632;
	transform: translateY(-1px);
}


/* ==========================================================================
   모바일
   ========================================================================== */

@media (max-width:768px) {

	.ing_board_list_skin_1 {
		padding: 10px 15px 55px;
	}

	.ing_board_list_head {
		display: block;
		margin-bottom: 16px;
	}

	.ing_board_list_title {
		font-size: 24px;
	}

	.ing_board_list_description {
		margin-top: 6px;
		font-size: 13px;
	}

	.ing_board_list_total {
		margin-top: 15px;
		font-size: 12px;
	}

	.ing_board_table_wrap {
		border-top: 2px solid #202632;
		border-bottom: 0;
	}

	.ing_board_table {
		display: block;
	}

	.ing_board_table thead {
		display: none;
	}

	.ing_board_table tbody {
		display: block;
	}

	.ing_board_table tr {
		display: block;
		margin: 12px 0 0;
		border: 1px solid #e0e4eb;
		border-radius: 12px;
		background: #ffffff;
		box-shadow: 0 4px 15px rgba(31, 38, 50, 0.045);
		overflow: hidden;
	}

	.ing_board_table tbody tr:hover td {
		background: transparent;
	}

	.ing_board_table td {
		display: none;
		height: auto;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.ing_board_table .ing_board_subject_td {
		display: block;
		padding: 17px 16px 15px;
	}

	.ing_board_subject_link {
		display: block;
	}

	.ing_board_subject_top {
		display: flex;
		align-items: center;
		gap: 6px;
		margin-bottom: 8px;
	}

	.ing_board_subject_text {
		display: -webkit-box;
		overflow: hidden;
		white-space: normal;
		word-break: keep-all;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		font-size: 15px;
		line-height: 1.55;
		font-weight: 700;
		letter-spacing: -0.035em;
		color: #252b36;
	}

	.ing_board_notice_badge {
		min-width: 44px;
		height: 23px;
		padding: 0 9px;
		font-size: 10px;
	}

	.ing_board_new_badge {
		width: 18px;
		height: 18px;
		font-size: 9px;
		line-height: 18px;
	}

	.ing_board_mobile_meta {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 7px 13px;
		margin-top: 12px;
		font-size: 11px;
		line-height: 1.5;
		font-weight: 400;
		color: #89919e;
	}

	.ing_board_mobile_meta span {
		position: relative;
	}

	.ing_board_mobile_meta span + span::before {
		content: "";
		position: absolute;
		top: 50%;
		left: -7px;
		width: 1px;
		height: 9px;
		margin-top: -4px;
		background: #dfe3e9;
	}

	.ing_board_empty {
		display: block !important;
		margin-top: 12px;
		padding: 55px 15px !important;
	}

	.ing_board_empty_title {
		font-size: 15px;
	}

	.ing_board_bottom {
		display: flex;
		flex-direction: column;
		gap: 18px;
		margin-top: 24px;
	}

	.ing_board_bottom_space {
		display: none;
	}

	.ing_board_paging {
		order: 2;
		width: 100%;
		gap: 4px;
	}

	.ing_board_write_box {
		order: 1;
		justify-content: flex-end;
		width: 100%;
	}

	.ing_board_page_button {
		min-width: 34px;
		height: 34px;
		padding: 0 6px;
		border-radius: 7px;
		font-size: 12px;
	}

	.ing_board_write_button {
		min-width: 96px;
		height: 40px;
		padding: 0 17px;
		font-size: 13px;
	}

	.ing_board_search {
		width: 100%;
		margin-top: 28px;
		flex-wrap: wrap;
	}

	.ing_board_search_select {
		width: 105px;
		height: 42px;
		padding-left: 11px;
		font-size: 12px;
	}

	.ing_board_search_input {
		width: calc(100% - 112px);
		height: 42px;
		font-size: 12px;
	}

	.ing_board_search_button {
		width: 100%;
		height: 42px;
		margin-top: 1px;
	}

}





/*
|--------------------------------------------------------------------------
| 갤러리 게시판 목록
|--------------------------------------------------------------------------
*/

.ing_board_gallery_wrap {
	width: 100%;
	margin-top: 24px;
}

.ing_board_gallery {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 34px 20px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ing_board_gallery_item {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.ing_board_gallery_link {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| 이미지 영역
|--------------------------------------------------------------------------
*/

.ing_board_gallery_image {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 75%;
	overflow: hidden;
	border-radius: 12px;
	background: #f2f2f2;
}

.ing_board_gallery_image img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
}

.ing_board_gallery_link:hover .ing_board_gallery_image img {
	opacity: 0.92;
	transform: scale(1.045);
}


/*
|--------------------------------------------------------------------------
| 게시글 정보
|--------------------------------------------------------------------------
*/

.ing_board_gallery_contents {
	padding: 15px 3px 0;
}

.ing_board_gallery_title_line {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 7px;
}

.ing_board_gallery_title {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: #222;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.ing_board_gallery_link:hover .ing_board_gallery_title {
	color: #666;
}

.ing_board_notice_badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 4px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 22px;
	background: #222;
	box-sizing: border-box;
}


/*
|--------------------------------------------------------------------------
| 날짜 및 조회수
|--------------------------------------------------------------------------
*/

.ing_board_gallery_meta {
	display: flex;
	align-items: center;
	margin-top: 9px;
	color: #999;
	font-size: 13px;
	line-height: 1;
}

.ing_board_gallery_meta_line {
	display: inline-block;
	flex: 0 0 auto;
	width: 1px;
	height: 10px;
	margin: 0 9px;
	background: #ddd;
}


/*
|--------------------------------------------------------------------------
| 등록된 게시글 없음
|--------------------------------------------------------------------------
*/

.ing_board_gallery_empty {
	padding: 90px 20px;
	border-top: 1px solid #222;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
}

.ing_board_gallery_empty_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 auto 15px;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #aaa;
	font-size: 18px;
	font-weight: 700;
}

.ing_board_gallery_empty_title {
	margin: 0;
	color: #444;
	font-size: 16px;
	font-weight: 600;
}

.ing_board_gallery_empty_text {
	margin: 8px 0 0;
	color: #999;
	font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| 모바일
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

	.ing_board_gallery_wrap {
		margin-top: 18px;
	}

	.ing_board_gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 25px 12px;
	}

	.ing_board_gallery_image {
		padding-bottom: 75%;
		border-radius: 8px;
	}

	.ing_board_gallery_contents {
		padding: 11px 2px 0;
	}

	.ing_board_gallery_title_line {
		gap: 5px;
	}

	.ing_board_gallery_title {
		font-size: 14px;
		line-height: 1.4;
	}

	.ing_board_notice_badge {
		height: 19px;
		padding: 0 6px;
		font-size: 10px;
		line-height: 19px;
	}

	.ing_board_gallery_meta {
		margin-top: 7px;
		font-size: 11px;
	}

	.ing_board_gallery_meta_line {
		height: 9px;
		margin: 0 7px;
	}

	.ing_board_gallery_empty {
		padding: 65px 15px;
	}
}















.board_write_page {
	width: 100%;
	padding:0;
	box-sizing: border-box;
}

.board_write_page * {
	box-sizing: border-box;
}

.board_write_inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.board_write_heading {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.board_write_heading_text {
	min-width: 0;
}

.board_write_eyebrow {
	display: block;
	margin-bottom: 8px;
	color: #9c7b61;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.18em;
}

.board_write_heading h2 {
	margin: 0;
	color: #191919;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.045em;
}

.board_write_heading p {
	margin:5px 0 0;
	color: #777;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.025em;
}

.board_write_heading_line {
	width: 110px;
	height: 1px;
	margin-bottom: 10px;
	background: #c9b8aa;
}

.board_write_form {
	overflow: hidden;
	border: 1px solid #e3e5e8;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 50px rgba(27, 32, 38, 0.055);
}

.board_write_row {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	border-bottom: 1px solid #eceef0;
}

.board_write_row:last-child {
	border-bottom: 0;
}

.board_write_label {
	padding: 32px 28px;
	background: #fafafa;
	border-right: 1px solid #eceef0;
}

.board_write_label label,
.board_write_label > span {
	display: block;
	color: #222;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.025em;
}

.board_write_required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	margin-left: 5px;
	padding: 0 7px;
	border-radius: 20px;
	background: #fff0ec;
	color: #d8543f;
	font-size: 10px;
	font-weight: 700;
	line-height: 20px;
	vertical-align: 1px;
}

.board_write_field {
	min-width: 0;
	padding: 27px 32px 32px;
}

.board_write_input {
	display: block;
	width: 100%;
	height: 56px;
	padding: 0 18px;
	border: 1px solid #dcdfe3;
	border-radius: 10px;
	outline: none;
	background: #fff;
	color: #222;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 54px;
	letter-spacing: -0.025em;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.board_write_input::placeholder {
	color: #a5a8ad;
	font-weight: 400;
}

.board_write_input:hover {
	border-color: #c8cbd0;
}

.board_write_input:focus {
	border-color: #9c7b61;
	box-shadow: 0 0 0 4px rgba(156, 123, 97, 0.1);
}

.board_write_input.is_error {
	border-color: #dc5e51;
	background: #fffafa;
	box-shadow: 0 0 0 4px rgba(220, 94, 81, 0.08);
}
.board_search_select{
	height:45px;
	padding:0 10px;
	border:1px solid #ccc;
	border-radius: 10px;
}

.board_write_field_info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 10px;
	color: #92969b;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.board_write_length {
	flex-shrink: 0;
	color: #a0a4aa;
	font-variant-numeric: tabular-nums;
}

.board_write_length strong {
	color: #555;
	font-weight: 700;
}

.board_write_contents_row .board_write_field {
	padding-top: 32px;
}

.board_write_contents_row .simple-editor {
	width: 100%;
	min-width: 0;
}

.board_write_editor_notice {
	position: relative;
	margin: 12px 0 0;
	padding-left: 16px;
	color: #8a8e94;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02em;
}

.board_write_editor_notice::before {
	content: "!";
	position: absolute;
	top: 1px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	border: 1px solid #aaaeb3;
	border-radius: 50%;
	color: #8d9196;
	font-family: Arial, sans-serif;
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
}

.board_privacy_box {
	overflow: hidden;
	border: 1px solid #e0e2e5;
	border-radius: 12px;
	background: #fafafa;
}

.board_privacy_box_heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 20px;
	border-bottom: 1px solid #e8e9eb;
	background: #f4f4f4;
}

.board_privacy_box_heading strong {
	color: #292929;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.025em;
}

.board_privacy_box_heading span {
	color: #8c9095;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.board_privacy_contents {
	max-height: 220px;
	overflow-y: auto;
	padding: 21px 22px;
	color: #666;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: -0.025em;
}

.board_privacy_contents dl {
	margin: 0;
}

.board_privacy_contents dl > div {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 15px;
	margin-bottom: 8px;
}

.board_privacy_contents dt {
	color: #333;
	font-weight: 700;
}

.board_privacy_contents dd {
	margin: 0;
	color: #6f7378;
}

.board_privacy_contents p {
	margin: 16px 0 0;
	padding-top: 15px;
	border-top: 1px dashed #d9dbde;
	color: #85898e;
}

.board_privacy_choice {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.board_privacy_option {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 15px 18px;
	border: 1px solid #dfe1e4;
	border-radius: 11px;
	background: #fff;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.board_privacy_option:hover {
	border-color: #c7cacf;
	background: #fcfcfc;
}

.board_privacy_option input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.board_privacy_radio {
	position: relative;
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	margin-right: 12px;
	border: 1px solid #c6c9cd;
	border-radius: 50%;
	background: #fff;
	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}

.board_privacy_radio::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.2s ease;
}

.board_privacy_option input:checked + .board_privacy_radio {
	border-color: #9c7b61;
	background: #9c7b61;
}

.board_privacy_option input:checked + .board_privacy_radio::after {
	transform: translate(-50%, -50%) scale(1);
}

.board_privacy_option:has(input:checked) {
	border-color: #b79b86;
	background: #fffaf6;
	box-shadow: 0 0 0 3px rgba(156, 123, 97, 0.08);
}

/*
	구형 브라우저에서 :has를 지원하지 않아도
	JavaScript의 is_checked 클래스로 동일하게 표시됩니다.
*/
.board_privacy_option.is_checked {
	border-color: #b79b86;
	background: #fffaf6;
	box-shadow: 0 0 0 3px rgba(156, 123, 97, 0.08);
}

.board_privacy_text {
	min-width: 0;
}

.board_privacy_text strong {
	display: block;
	color: #333;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.025em;
}

.board_privacy_text em {
	display: block;
	margin-top: 3px;
	color: #96999e;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.board_privacy_choice.is_error {
	padding: 6px;
	margin-right: -6px;
	margin-left: -6px;
	border-radius: 14px;
	background: #fff4f2;
}

.board_write_error {
	display: none;
	margin: 10px 0 0;
	color: #d65347;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.board_write_error.is_show {
	display: block;
}

.board_write_button_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.board_write_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	border: 0;
	border-radius: 9px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.22s ease,
		border-color 0.22s ease,
		color 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.board_write_button:hover {
	transform: translateY(-2px);
}

.board_write_cancel {
	width: 130px;
	border: 1px solid #d9dbde;
	background: #fff;
	color: #555;
}

.board_write_cancel:hover {
	border-color: #bfc2c6;
	background: #f7f7f7;
	color: #222;
}

.board_write_submit {
	gap: 22px;
	width: 190px;
	padding: 0 22px;
	background: #282523;
	color: #fff;
	box-shadow: 0 10px 25px rgba(32, 29, 27, 0.14);
}

.board_write_submit:hover {
	background: #9c7b61;
	box-shadow: 0 12px 28px rgba(156, 123, 97, 0.24);
}

.board_write_submit i {
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	transition: transform 0.22s ease;
}

.board_write_submit:hover i {
	transform: translateX(4px);
}

.board_write_submit.is_loading {
	opacity: 0.7;
	pointer-events: none;
}

/* 모바일 */
@media screen and (max-width: 768px) {

	.board_write_page {
		padding:5px;
	}

	.board_write_heading {
		display: block;
		padding:15px 15px 0 15px;
	}

	.board_write_heading h2 {
		font-size:16px;
	}

	.board_write_heading p {
		margin-top:4px;
		font-size:11px;
	}

	.board_write_heading_line {
		display: none;
	}

	.board_write_form {
		border-radius: 13px;
	}

	.board_write_row {
		display: block;
	}

	.board_write_label {
		padding: 20px 18px 9px;
		border-right: 0;
		background: #fff;
	}

	.board_write_label label,
	.board_write_label > span {
		font-size: 14px;
	}

	.board_write_field {
		padding: 8px 18px 24px;
	}

	.board_write_input {
		height: 52px;
		padding: 0 15px;
		font-size: 14px;
		line-height: 50px;
	}

	.board_write_field_info {
		align-items: flex-start;
		gap: 10px;
		font-size: 11px;
	}

	.board_write_field_info > span:first-child {
		flex: 1;
	}

	.board_write_contents_row .board_write_field {
		padding-top: 8px;
	}

	.board_privacy_box_heading {
		display: block;
		padding: 15px 16px;
	}

	.board_privacy_box_heading span {
		display: block;
		margin-top: 4px;
	}

	.board_privacy_contents {
		max-height: 250px;
		padding: 17px 16px;
		font-size: 12px;
	}

	.board_privacy_contents dl > div {
		display: block;
		margin-bottom: 12px;
	}

	.board_privacy_contents dt {
		margin-bottom: 2px;
	}

	.board_privacy_choice {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.board_privacy_option {
		min-height: 68px;
		padding: 13px 15px;
	}

	.board_write_button_area {
		gap: 8px;
		margin-top: 20px;
	}

	.board_write_button {
		height: 53px;
	}

	.board_write_cancel {
		width: 34%;
	}

	.board_write_submit {
		flex: 1;
		width: auto;
		gap: 15px;
	}

}






/*
|--------------------------------------------------------------------------
| 동영상 게시판 목록
|--------------------------------------------------------------------------
*/

.ing_board_video_wrap {
	width: 100%;
	margin-top: 24px;
}

.ing_board_video {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px 22px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ing_board_video_item {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.ing_board_video_link {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| 썸네일 영역
|--------------------------------------------------------------------------
*/

.ing_board_video_thumbnail {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	border-radius: 14px;
	background: #ededed;
}

.ing_board_video_thumbnail::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 45%,
		rgba(0, 0, 0, 0.2) 100%
	);
	pointer-events: none;
}

.ing_board_video_thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
}

.ing_board_video_link:hover .ing_board_video_thumbnail img {
	opacity: 0.9;
	transform: scale(1.045);
}


/*
|--------------------------------------------------------------------------
| 재생 버튼
|--------------------------------------------------------------------------
*/

.ing_board_video_play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.52);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	box-sizing: border-box;
	transform: translate(-50%, -50%);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
	pointer-events: none;
}

.ing_board_video_play i {
	display: block;
	width: 0;
	height: 0;
	margin: 0 0 0 4px;
	padding: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
	font-size: 0;
	line-height: 0;
}

.ing_board_video_link:hover .ing_board_video_play {
	border-color: #fff;
	background: rgba(0, 0, 0, 0.72);
	transform:
		translate(-50%, -50%)
		scale(1.08);
}


/*
|--------------------------------------------------------------------------
| 영상 정보
|--------------------------------------------------------------------------
*/

.ing_board_video_contents {
	padding: 16px 3px 0;
}

.ing_board_video_title_line {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 7px;
}

.ing_board_video_title {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: #222;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.ing_board_video_link:hover .ing_board_video_title {
	color: #666;
}

.ing_board_notice_badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 4px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 22px;
	background: #222;
	box-sizing: border-box;
}

.ing_board_video_meta {
	display: flex;
	align-items: center;
	margin-top: 10px;
	color: #999;
	font-size: 13px;
	line-height: 1;
}

.ing_board_video_writer {
	display: block;
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ing_board_video_meta_line {
	display: inline-block;
	flex: 0 0 auto;
	width: 1px;
	height: 10px;
	margin: 0 9px;
	background: #ddd;
}


/*
|--------------------------------------------------------------------------
| 등록된 영상 없음
|--------------------------------------------------------------------------
*/

.ing_board_video_empty {
	padding: 90px 20px;
	border-top: 1px solid #222;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
}

.ing_board_video_empty_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 auto 15px;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #aaa;
	font-size: 18px;
	font-weight: 700;
}

.ing_board_video_empty_title {
	margin: 0;
	color: #444;
	font-size: 16px;
	font-weight: 600;
}

.ing_board_video_empty_text {
	margin: 8px 0 0;
	color: #999;
	font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| 모바일
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

	.ing_board_video_wrap {
		margin-top: 18px;
	}

	.ing_board_video {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 12px;
	}

	.ing_board_video_thumbnail {
		border-radius: 9px;
	}

	.ing_board_video_play {
		width: 44px;
		height: 44px;
	}

	.ing_board_video_play i {
		margin-left: 3px;
		border-top-width: 6px;
		border-bottom-width: 6px;
		border-left-width: 10px;
	}

	.ing_board_video_contents {
		padding: 11px 2px 0;
	}

	.ing_board_video_title_line {
		gap: 5px;
	}

	.ing_board_video_title {
		font-size: 14px;
		line-height: 1.4;
	}

	.ing_board_notice_badge {
		height: 19px;
		padding: 0 6px;
		font-size: 10px;
		line-height: 19px;
	}

	.ing_board_video_meta {
		margin-top: 7px;
		font-size: 11px;
	}

	.ing_board_video_writer {
		max-width: 70px;
	}

	.ing_board_video_meta_line {
		height: 9px;
		margin: 0 7px;
	}

	.ing_board_video_empty {
		padding: 65px 15px;
	}
}














/*
|--------------------------------------------------------------------------
| FAQ 게시판 목록
|--------------------------------------------------------------------------
*/

.ing_board_faq_wrap {
	width: 100%;
	margin-top: 24px;
}

.ing_board_faq_list {
	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 2px solid #222;
	list-style: none;
}

.ing_board_faq_item {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
}


/*
|--------------------------------------------------------------------------
| 질문 영역
|--------------------------------------------------------------------------
*/

.ing_board_faq_question {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 76px;
	margin: 0;
	padding: 18px 24px;
	border: 0;
	outline: 0;
	background: #fff;
	color: #222;
	font-family: inherit;
	text-align: left;
	box-sizing: border-box;
	cursor: pointer;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.ing_board_faq_question:hover {
	background: #fafafa;
}

.ing_board_faq_question:focus {
	background: #fafafa;
}

.ing_board_faq_item.active .ing_board_faq_question {
	background: #f7f8fa;
}


/*
|--------------------------------------------------------------------------
| Q / A 아이콘
|--------------------------------------------------------------------------
*/

.ing_board_faq_q,
.ing_board_faq_a {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	box-sizing: border-box;
}

.ing_board_faq_q {
	margin-right: 18px;
	background: #222;
	color: #fff;
}

.ing_board_faq_a {
	margin-right: 18px;
	background: #e9edf2;
	color: #222;
}


/*
|--------------------------------------------------------------------------
| 질문 제목
|--------------------------------------------------------------------------
*/

.ing_board_faq_subject {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 8px;
}

.ing_board_faq_subject strong {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: #222;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ing_board_faq_item.active .ing_board_faq_subject strong {
	color: #111;
}


/*
|--------------------------------------------------------------------------
| 공지 표시
|--------------------------------------------------------------------------
*/

.ing_board_faq_subject .ing_board_notice_badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 4px;
	background: #222;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 22px;
	box-sizing: border-box;
}


/*
|--------------------------------------------------------------------------
| 열기·닫기 아이콘
|--------------------------------------------------------------------------
*/

.ing_board_faq_arrow {
	position: relative;
	flex: 0 0 auto;
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 20px;
}

.ing_board_faq_arrow::before,
.ing_board_faq_arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 13px;
	height: 2px;
	background: #555;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
}

.ing_board_faq_arrow::before {
	transform: translate(-50%, -50%);
}

.ing_board_faq_arrow::after {
	transform:
		translate(-50%, -50%)
		rotate(90deg);
}

.ing_board_faq_item.active .ing_board_faq_arrow::before,
.ing_board_faq_item.active .ing_board_faq_arrow::after {
	background: #222;
}

.ing_board_faq_item.active .ing_board_faq_arrow::after {
	transform:
		translate(-50%, -50%)
		rotate(0deg);
}


/*
|--------------------------------------------------------------------------
| 답변 영역
|--------------------------------------------------------------------------
*/

.ing_board_faq_answer {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	background: #fafafa;
	opacity: 0;
	box-sizing: border-box;
	transition:
		max-height 0.38s ease,
		opacity 0.25s ease;
}

.ing_board_faq_item.active .ing_board_faq_answer {
	opacity: 1;
}

.ing_board_faq_answer_inner {
	display: flex;
	align-items: flex-start;
	width: 100%;
	padding: 28px 70px 32px 78px;
	border-top: 1px solid #eeeeee;
	box-sizing: border-box;
}

.ing_board_faq_contents {
	flex: 1 1 auto;
	min-width: 0;
	color: #555;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.85;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.ing_board_faq_contents::after {
	content: "";
	display: block;
	clear: both;
}

.ing_board_faq_contents p {
	margin: 0 0 14px;
}

.ing_board_faq_contents p:last-child {
	margin-bottom: 0;
}

.ing_board_faq_contents img {
	max-width: 100%;
	height: auto;
}

.ing_board_faq_contents iframe {
	max-width: 100%;
}

.ing_board_faq_contents table {
	max-width: 100%;
}


/*
|--------------------------------------------------------------------------
| 등록된 FAQ 없음
|--------------------------------------------------------------------------
*/

.ing_board_faq_empty {
	padding: 90px 20px;
	border-top: 2px solid #222;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
}

.ing_board_faq_empty_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 auto 15px;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #aaa;
	font-size: 18px;
	font-weight: 700;
}

.ing_board_faq_empty_title {
	margin: 0;
	color: #444;
	font-size: 16px;
	font-weight: 600;
}

.ing_board_faq_empty_text {
	margin: 8px 0 0;
	color: #999;
	font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| 모바일
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

	.ing_board_faq_wrap {
		margin-top: 18px;
	}

	.ing_board_faq_question {
		min-height: 64px;
		padding: 14px 12px;
	}

	.ing_board_faq_q,
	.ing_board_faq_a {
		width: 30px;
		height: 30px;
		font-size: 13px;
	}

	.ing_board_faq_q {
		margin-right: 11px;
	}

	.ing_board_faq_a {
		margin-right: 12px;
	}

	.ing_board_faq_subject {
		gap: 5px;
	}

	.ing_board_faq_subject strong {
		font-size: 14px;
		line-height: 1.5;
		text-overflow: clip;
		white-space: normal;
		word-break: keep-all;
	}

	.ing_board_faq_subject .ing_board_notice_badge {
		height: 19px;
		padding: 0 6px;
		font-size: 10px;
		line-height: 19px;
	}

	.ing_board_faq_arrow {
		width: 18px;
		height: 18px;
		margin-left: 10px;
	}

	.ing_board_faq_arrow::before,
	.ing_board_faq_arrow::after {
		width: 11px;
	}

	.ing_board_faq_answer_inner {
		padding: 22px 14px 24px 12px;
	}

	.ing_board_faq_contents {
		font-size: 14px;
		line-height: 1.75;
		word-break: normal;
	}

	.ing_board_faq_empty {
		padding: 65px 15px;
	}
}









/* 게시판 상단: 전체 건수 좌측 / 검색 영역 우측 */
.ing_board_list_skin_1 .ing_board_list_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 0 18px;
	padding: 0;
	gap: 20px;
	box-sizing: border-box;
}

/* 전체 건수 좌측 */
.ing_board_list_skin_1 .ing_board_list_total {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	text-align: left;
	white-space: nowrap;
}

/* 검색 폼 전체를 오른쪽으로 밀기 */
.ing_board_list_skin_1 .ing_board_search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	margin: 0 0 0 auto;
	padding: 0;
	gap: 7px;
	text-align: right;
}

/* select */
.ing_board_list_skin_1 .ing_board_search_select {
	display: block;
	flex: 0 0 125px;
	width: 125px;
	height: 44px;
	margin: 0;
}

/* input */
.ing_board_list_skin_1 .ing_board_search_input {
	display: block;
	flex: 0 0 240px;
	width: 240px;
	min-width: 0;
	height: 44px;
	margin: 0;
}

/* 버튼 */
.ing_board_list_skin_1 .ing_board_search_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	min-width: 76px;
	height: 44px;
	margin: 0;
}


/* 모바일 */
@media (max-width:768px) {
	.ing_board_list_skin_1 .ing_board_list_head {
		display: block;
		width: 100%;
	}

	.ing_board_list_skin_1 .ing_board_list_total {
		margin-bottom: 9px;
		text-align: left;
	}

	.ing_board_list_skin_1 .ing_board_search {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 72px;
		width: 100%;
		max-width: none;
		margin: 0;
		gap: 7px;
	}

	.ing_board_list_skin_1 .ing_board_search_select {
		grid-column: 1 / 3;
		width: 100%;
	}

	.ing_board_list_skin_1 .ing_board_search_input {
		grid-column: 1;
		width: 100%;
	}

	.ing_board_list_skin_1 .ing_board_search_button {
		grid-column: 2;
		width: 72px;
		min-width: 72px;
	}
}








.ing_board_view {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	color: #222;
	font-family:
		"Pretendard",
		"Noto Sans KR",
		"Malgun Gothic",
		sans-serif;
	box-sizing: border-box;
}

.ing_board_view *,
.ing_board_view *::before,
.ing_board_view *::after {
	box-sizing: border-box;
}

/* 게시글 상단 */
.ing_board_view_header {
	padding: 34px 30px 25px;
	border-top: 2px solid #222;
	border-bottom: 1px solid #dedede;
	background: #fff;
}

.ing_board_view_title {
	margin: 0;
	color: #202020;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.04em;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.ing_board_view_info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px 0;
	margin-top: 17px;
	color: #777;
	font-size: 14px;
	line-height: 1.5;
}

.ing_board_view_info span {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.ing_board_view_info span + span {
	margin-left: 18px;
	padding-left:20px;
}

.ing_board_view_info span + span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 11px;
	background: #d8d8d8;
	transform: translateY(-50%);
	content: "";
}

.ing_board_view_info strong {
	margin-right:20px;
	color: #444;
	font-weight: 600;
}
.ing_board_view_date {
	padding-left:20px;
}
.ing_board_view_hit {
	padding-left:20px;
}

.ing_board_view_date span {
	display:none;
}
.ing_board_view_hit span {
	display:none;
}


/* 게시글 내용 */
.ing_board_view_contents {
	min-height: 350px;
	padding: 45px 30px 65px;
	border-bottom: 1px solid #dedede;
	color: #444;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: -0.025em;
	word-break: normal;
	overflow-wrap: break-word;
}

.ing_board_view_contents p {
	margin: 0 0 20px;
}

.ing_board_view_contents p:last-child {
	margin-bottom: 0;
}

.ing_board_view_contents img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 20px auto;
}

.ing_board_view_contents iframe,
.ing_board_view_contents video {
	max-width: 100%;
}

/* 버튼 */
.ing_board_view_buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0 45px;
}

.ing_board_view_buttons_left,
.ing_board_view_buttons_right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ing_board_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 44px;
	padding: 0 20px;
	border: 1px solid #d4d4d4;
	border-radius: 3px;
	background: #fff;
	color: #444;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.ing_board_button_light:hover {
	border-color: #555;
	color: #111;
}

.ing_board_button_delete {
	color: #d14d4d;
}

.ing_board_button_delete:hover {
	border-color: #d14d4d;
	background: #d14d4d;
	color: #fff;
}

.ing_board_button_list {
	min-width: 105px;
	border-color: #222;
	background: #222;
	color: #fff;
}

.ing_board_button_list:hover {
	border-color: #444;
	background: #444;
}

/* 이전글 / 다음글 */
.ing_board_view_navigation {
	border-top: 1px solid #222;
	border-bottom: 1px solid #222;
}

.ing_board_view_navigation_item {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 66px;
	padding: 15px 22px;
	color: #444;
	text-decoration: none;
	transition: background 0.2s ease;
}

a.ing_board_view_navigation_item:hover {
	background: #fafafa;
}

.ing_board_view_navigation_item + .ing_board_view_navigation_item {
	border-top: 1px solid #e4e4e4;
}

.ing_board_view_navigation_label {
	flex: 0 0 100px;
	display: inline-flex;
	align-items: center;
	color: #555;
	font-size: 14px;
	font-weight: 600;
}

.ing_board_view_navigation_label i {
	margin-right: 10px;
	color: #999;
	font-family: Arial, sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
}

.ing_board_view_navigation_title {
	flex: 1;
	min-width: 0;
	color: #333;
	font-size: 15px;
	line-height: 1.5;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ing_board_view_navigation_date {
	flex: 0 0 auto;
	margin-left: 25px;
	color: #999;
	font-size: 13px;
}

.ing_board_view_navigation_empty .ing_board_view_navigation_title {
	color: #aaa;
}

/* 모바일 */
@media (max-width: 768px) {
	.ing_board_view {
		padding: 0 15px;
	}

	.ing_board_view_header {
		padding: 24px 5px 20px;
	}

	.ing_board_view_title {
		font-size: 20px;
		line-height: 1.5;
	}

	.ing_board_view_info {
		margin-top: 14px;
		font-size: 13px;
	}

	.ing_board_view_info span + span {
		margin-left: 10px;
		padding-left: 10px;
	}

	.ing_board_view_info strong {
		display: none;
	}
	.ing_board_view_date {
		padding:0;
	}
	.ing_board_view_hit {
		padding:0;
	}

	.ing_board_view_writer strong {
		display:none;
	}
	.ing_board_view_date strong {
		display:none;
	}
	.ing_board_view_date span {
		display:inline;
		color:#ccc;
	}
	.ing_board_view_hit strong {
		display:none;
	}
	.ing_board_view_hit span {
		display:inline;
		color:#ccc;
	}

	.ing_board_view_contents {
		min-height: 260px;
		padding: 32px 5px 45px;
		font-size: 15px;
		line-height: 1.8;
	}

	.ing_board_view_buttons {
		padding: 20px 0 35px;
	}

	.ing_board_view_buttons_left,
	.ing_board_view_buttons_right {
		gap: 5px;
	}

	.ing_board_button {
		min-width: 62px;
		height: 41px;
		padding: 0 14px;
		font-size: 13px;
	}

	.ing_board_button_list {
		min-width: 76px;
	}

	.ing_board_view_navigation_item {
		min-height: 62px;
		padding: 13px 8px;
	}

	.ing_board_view_navigation_label {
		flex-basis: 75px;
		font-size: 13px;
	}

	.ing_board_view_navigation_label i {
		margin-right: 6px;
	}

	.ing_board_view_navigation_title {
		font-size: 14px;
	}

	.ing_board_view_navigation_date {
		display: none;
	}
}