/* 뉴스 유튜브 영역 */
.news_video_wrap {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin: 0 0 50px;
	width: 100%;
	box-sizing: border-box;
}
.news_video_wrap .main_video_wrap {
	flex: 1 1 auto;
	min-width: 0;
}
.news_video_wrap .main_video_player {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #000;
	overflow: hidden;
}
.news_video_wrap .main_video_player iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.news_video_wrap .sub_video_wrap {
	flex: 0 0 26%;
	max-width: 26%;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	align-self: stretch;
}
.news_video_wrap .sub_video_wrap li {
	flex: 1 1 0;
	position: relative;
	overflow: hidden;
	background: #d9d9d9;
}
.news_video_wrap .sub_video_wrap li.empty {
	background: #eee;
	pointer-events: none;
}
.news_video_wrap .sub_video_wrap a {
	display: block;
	position: absolute;
	inset: 0;
	text-decoration: none;
}
.news_video_wrap .sub_video_wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.news_video_wrap .sub_video_thumb {
	display: block;
	width: 100%;
	height: 100%;
	background: #d9d9d9 center / cover no-repeat;
	transition: opacity .2s ease;
}
.news_video_wrap .sub_video_wrap a:hover .sub_video_thumb {
	opacity: .85;
}
@media (max-width: 900px) {
	.news_video_wrap {
		flex-direction: column;
		gap: 10px;
	}
	.news_video_wrap .sub_video_wrap {
		flex: none;
		max-width: none;
		width: 100%;
		flex-direction: row;
		gap: 10px;
	}
	.news_video_wrap .sub_video_wrap li {
		aspect-ratio: 16 / 9;
	}
}

/* 뉴스 자료 게시판 (1.6rem = 16px, 1rem = 10px) */
.news-board .container { margin: 0 auto; padding: 0 15px; max-width: 100%; box-sizing: border-box; }
/* 검색 */
.gdsearch { display: flex; justify-content: center; margin-bottom: 50px; }
.gdsearch-box {
	display: flex;
	align-items: center;
	padding: 3px 33px;
	border: 2px solid #80BC26;
	border-radius: 50px;
	box-sizing: border-box;
}

.gdsearch select {
	border: 0;
	font-size: 16px;
	color: #606060;
	padding: 9px 32px 9px 11px;
	appearance: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23606060' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 11px center;
	background-color: transparent;
}

.gdsearch select:focus { outline: 0; }

.gdsearch-input-wrap { position: relative; }

.gdsearch input {
	font-size: 16px;
	padding: 9px 40px 9px 11px;
	border: 0;
	min-width: 260px;
	max-width: 100%;
	box-sizing: border-box;
}

.gdsearch input:focus { outline: 0; }

.gdsearch button {
	background: transparent;
	border: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding: 8px 12px;
}

.gdsearch button svg { display: block; }



/* 갤러리 그리드 */

.bdgallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	padding-bottom: 25px;
}

.bdgallery-item {
	width: 33.333%;
	padding: 0 15px;
	margin-top: 25px;
	margin-bottom: 25px;
	box-sizing: border-box;
}

.bdgallery .bdthumb {
	position: relative;
	width: 100%;
	height: 272px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #D9D9D9;
	border: 1px solid #D9D9D9;
	border-bottom: 0;
}

.bdgallery .bdthumb-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 16px;
}

.bdgallery .bdinfo { border: 1px solid #D9D9D9; }

.bdgallery .bdinfo h5 {
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	padding: 0 20px;
	margin: 20px 0 0;
	display: -webkit-box;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 52px;
	min-height: 52px;
	line-height: 1.5;
	box-sizing: border-box;
}

.bdgallery .bdinfo-meta {
	list-style: none;
	margin: 0;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
}

.bdgallery .bdinfo-meta li { font-size: 16px; color: #AEAEAE; }

.fnm { font-weight: 500; }

/* 페이지네이션 */

.news-board .pagination {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.news-board .pagination li {
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #BCBCBC;
	border-radius: 4px;
	box-sizing: border-box;
}

.news-board .pagination li:nth-child(2) { margin-right: 8px; }

.news-board .pagination li:nth-last-child(2) { margin-left: 8px; }

.news-board .pagination li a {
	font-size: 18px;
	color: #77777A !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.news-board .pagination li.active { border: 1px solid #80BC26; }

.news-board .pagination li.active a { color: #80BC26 !important; font-weight: bold; }

.news-board .pagination li.pg-arw { border-radius: 50%; }

.news-board .pagination li.disabled a { opacity: 0.4; pointer-events: none; }

.news-board .news-empty {
	width: 100%;
	text-align: center;
	padding: 60px 0;
	color: #666;
	font-size: 16px;
	box-sizing: border-box;
}

@media (max-width: 991px) {
	.bdgallery-item { width: 50%; }
}

@media (max-width: 767px) {
	.gdsearch-box { padding: 3px 15px;  }
	.gdsearch input { min-width: 0; width: 100%; }
	.bdgallery-item { width: 100%; }
	.bdgallery .bdthumb { height: 200px; }
}


