/* 메인 - 연구원 소식 (news-item) 요약 영역 */
.news-section .news-inner {
	overflow: hidden;
}
.news-section .news-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 32px;
	align-items: start;
}
.news-section .news-item {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}
.news-section .news-item h4 {
	margin: 0 0 12px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: keep-all;
	overflow-wrap: anywhere;
}
.news-section .news-item p {
	margin: 0 0 16px;
	overflow: hidden;
	display: -webkit-box;
