@charset "UTF-8";
/*
 * 메인 Notice FOUC 방지
 * main.css·style.css 로드 전 첫 페인트에서 탭 3개가 동시에 보이거나 리스트가 세로로 뭉개지는 현상 완화.
 * 상세 스타일은 main.css가 후행으로 덮어씀.
 */

.news_sec_notice .tab-content {
	display: none !important;
}
.news_sec_notice .tab-content.current {
	display: block !important;
}

.news.news_sec_notice .news_sec_body {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 40px 48px;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.news_sec_notice .news_sec_nav ul.mtab_w,
.news_sec_nav_list.mtab_w {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 10px;
	min-width: 132px;
	box-sizing: border-box;
}

.news_sec_notice .news_sec_nav ul.mtab_w li {
	display: block;
	margin: 0;
	padding: 0;
}

.news_sec_notice .news_sec_nav ul.mtab_w li a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 12px 18px;
	font-size: 16px;
	font-weight: 600;
	color: #4b5563;
	text-decoration: none;
	text-align: center;
	border-radius: 999px;
	background: #f3f4f6;
}

.news_sec_notice .news_sec_nav ul.mtab_w li.current a {
	background: #111;
	color: #fff;
}

.news_sec_notice .news_sec_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news_sec_notice .news_sec_list > li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e8eaed;
}

.news_sec_notice .news_sec_list > li > a {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 14px 20px;
	padding: 16px 4px 16px 0;
	font-size: 16px;
	font-weight: 400;
	color: #111;
	text-decoration: none;
	box-sizing: border-box;
}

.news_sec_notice .news_sec_list > li > a:link,
.news_sec_notice .news_sec_list > li > a:visited {
	color: #111;
}

.news_sec_notice .news_row_title {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	color: #111;
}

.news_sec_notice .news_row_date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	font-size: 13px;
	color: #888;
	white-space: nowrap;
}

.news_row_cat {
	flex-shrink: 0;
	min-width: 3.25em;
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
}

.news_row_cat--notice {
	color: #2563eb;
}

.news_row_cat--press {
	color: #65a30c;
}

@media all and (max-width: 900px) {
	.news.news_sec_notice .news_sec_body {
		flex-direction: column;
		gap: 24px;
	}
	.news_sec_notice .news_sec_nav ul.mtab_w,
	.news_sec_nav_list.mtab_w {
		flex-direction: row;
		flex-wrap: wrap;
		min-width: 0;
		width: 100%;
	}
}
