@charset "utf-8";

#bk_news_list {
	--news-color: #172341;
	width: calc(100% - 320px);
	max-width: 1600px;
	margin: 120px auto;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	letter-spacing: 0;
	color: #1a1a1a;
}
#bk_news_list.tone_brown {--news-color: #6d574e;}
#bk_news_list.tone_green {--news-color: #0f625c;}
#bk_news_list * {box-sizing: border-box;}
.news_breadcrumb {
	display: flex;
	align-items: center;
	min-height: 22px;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #2e1700;
}
.news_breadcrumb > * + *::before {
	content: '>';
	display: inline-block;
	margin: 0 9px;
	color: #9a9088;
}
.news_breadcrumb .home_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 18px;
}
.news_breadcrumb .home_icon img {
	display: block;
	width: 16px;
	height: 18px;
	object-fit: contain;
	opacity: 1;
}
.news_page_title {
	margin: 0 0 60px;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	color: #2e1700;
	text-align: center;
}
.news_field_tabs {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-bottom: 60px;
}
.news_field_tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 39px;
	border: .5px solid #1a1a1a;
	border-radius: 4px;
	background: #fff;
	font-size: 19.1366px;
	font-weight: 400;
	line-height: 1.4;
	color: #1a1a1a;
}
.news_field_tabs a.active {
	border-color: var(--news-color);
	background: var(--news-color);
	font-weight: 400;
	color: #fff;
}
.news_admin_tools {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: -38px 0 20px;
}
.news_admin_tools a,
.news_admin_tools button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 82px;
	height: 36px;
	padding: 0 16px;
	border: 1px solid #c8c8c8;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #4f4f4f;
	cursor: pointer;
}
.news_admin_tools .news_write_button {
	border-color: #2e1700;
	background: #2e1700;
	color: #fff;
}
.news_admin_selection {
	display: none;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.news_admin_selection.active {display: flex;}
.news_admin_selection button {
	height: 32px;
	padding: 0 12px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 12px;
	cursor: pointer;
}
.news_card_grid {
	display: grid;
	width: 1250px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(3, 387.42px);
	justify-content: space-between;
	gap: 50px 0;
}
.news_card {
	position: relative;
	min-width: 0;
	width: 387.42px;
	height: 405px;
	padding: 20px;
	border: .5px solid #aaa9a9;
	background: #fff;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, .2);
}
.news_card_check {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	display: none;
	padding: 5px;
	border-radius: 2px;
	background: rgba(255,255,255,.9);
}
.news_admin_selection.active ~ .news_card_grid .news_card_check {display: block;}
.news_card_link {
	display: flex;
	flex-direction: column;
	gap: 15px;
	height: 100%;
}
.news_card_image {
	position: relative;
	width: 347px;
	height: 253px;
	overflow: hidden;
	background: #f2f2f2;
}
.news_card_image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: initial;
	transform: none;
	transition: transform .25s ease;
}
.news_card:hover .news_card_image img {transform: scale(1.05);}
.news_card_meta {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	width: 347.42px;
	height: 97px;
	min-height: 97px;
	padding: 10px 0 13px;
	border-top: .5px solid #1a1a1a;
	border-bottom: .5px solid #1a1a1a;
}
.news_card_text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	width: 340px;
	min-height: 50px;
}
.news_card_badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 23px;
	padding: 0 15px;
	border-radius: 2.56px;
	background: #2e1700;
	font-size: 12.267px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
}
.news_card_title {
	display: block;
	width: 340px;
	overflow: hidden;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #1a1a1a;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news_card_date {
	display: block;
	margin-top: 10px;
	width: 340px;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.4;
	color: #5e5e5e;
}
.news_empty {
	grid-column: 1 / -1;
	padding: 100px 0;
	font-size: 16px;
	color: #777;
	text-align: center;
}
#bk_news_list .pg_wrap {
	margin: 0;
	text-align: center;
}
#bk_news_list .pg {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
#bk_news_list .pg_page,
#bk_news_list .pg_current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	min-width: 25px;
	height: 25px;
	padding: 0;
	border: .5px solid #b8b8b8;
	border-radius: 0;
	background: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: #5e5e5e;
}
#bk_news_list .pg_current {
	border-color: #2e1700;
	background: #2e1700;
	color: #fff;
}
#bk_news_list .pg_start,
#bk_news_list .pg_end {
	display: none;
}
#bk_news_list .pg_prev,
#bk_news_list .pg_next {
	position: relative;
	min-width: 25px;
	padding: 0;
	overflow: hidden;
	font-size: 0;
}
#bk_news_list .pg_prev::after,
#bk_news_list .pg_next::after {
	font-size: 12px;
	font-weight: 400;
	line-height: 23px;
	color: #5e5e5e;
}
#bk_news_list .pg_prev::after {
	content: "<";
}
#bk_news_list .pg_next::after {
	content: ">";
}

@media (max-width: 1240px) {
	#bk_news_list {width: calc(100% - 40px);}
	.news_card_grid {grid-template-columns: repeat(3, minmax(0, 1fr));gap: 40px 20px;}
	.news_card {width: 100%;height: auto;}
	.news_card_image {width: 100%;aspect-ratio: 347 / 253;height: auto;}
	.news_card_meta,
	.news_card_text,
	.news_card_title,
	.news_card_date {width: 100%;}
}

@media (max-width: 900px) {
	.news_card_grid {grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 768px) {
	#bk_news_list {
		width: 100%;
		margin: 0;
		padding: 35px 40px;
		background: #fff;
		box-sizing: border-box;
	}
	.sub_section.sub_news_area > .inner {padding-bottom: 0 !important;}
	.news_breadcrumb,
	.news_page_title {display: none !important;}
	.news_field_tabs {
		gap: 10px;
		margin-bottom: 35px;
	}
	.news_field_tabs a {
		width: calc((100% - 20px) / 3);
		height: 27px;
		border-radius: 4;
		font-size: 14px;
	}
	.news_admin_tools {margin: -20px 0 15px;}
	.news_card_grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.news_card {
		width: 100%;
		height: auto;
		padding: 16px;
		box-shadow: 3px 4px 6px rgba(0,0,0,.18);
	}
	.news_card_link {gap: 12px;}
	.news_card_image {
		width: 100%;
		height: auto;
		aspect-ratio: 288 / 210;
	}
	.news_card_meta {
		min-height: 104px;
		padding: 8px 0 11px;
	}
	.news_card_text {gap: 4px;}
	.news_card_badge {height: 20px;padding: 0 9px;font-size: 12px;}
	.news_card_title {font-size: 20px;}
	.news_card_date {margin-top: 7px;font-size: 10px;}
	#bk_news_list .pg_wrap {margin-top: 35px;}
	#bk_news_list .pg {gap: 4px;}
	#bk_news_list .pg_page,
	#bk_news_list .pg_current {
		width: 18px;
		min-width: 18px;
		height: 18px;
		padding: 0 1px;
		font-size: 12px;
	}
	#bk_news_list .pg_prev::after,
	#bk_news_list .pg_next::after {
		font-size: 12px;
		line-height: 16px;
	}

	.news_card_badge {font-size: 10px;}
	.news_card_date {font-size: 10px;}
	#bk_news_list .pg_page,
	#bk_news_list .pg_current {font-size: 9px;}
	#bk_news_list .pg_prev::after,
	#bk_news_list .pg_next::after {font-size: 9px;}
}
