/* Alumni News Archive */
.alumni_news_archive{
	max-width: 1400px;
	margin: 0 auto 70px auto;
	padding: 0 21px;
}

.news_item{
	display:flex;
	gap:21px;
	margin: 21px auto;
	background: rgba(255,255,255,0.7);
	border: 1px solid rgba(80,50,0,0.12);
	border-radius: 14px;
	box-shadow: 0 0 28px rgba(0,0,0,0.08);
	overflow:hidden;
}

.news_media{
	width: 44%;
	min-height: 280px;
	background: #f7f7f7;
	display:flex;
	align-items:center;
	justify-content:center;
}

.news_media a{ display:block; width:100%; height:100%; }

.news_image{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

.news_image_placeholder{
	width:100%;
	height:100%;
	min-height:280px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:rgba(0,0,0,0.35);
	font-weight:bold;
	letter-spacing:1px;
}

.news_body{
	width: 56%;
	padding: 18px 18px 16px 18px;
	color: rgba(0,0,0,0.75);
}

.news_meta{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:14px;
	margin-bottom: 10px;
}

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

.news_avatar{
	width:56px;
	height:56px;
	border-radius:100%;
	background-size:cover !important;
	border:2px solid rgba(255,255,255,0.85);
	box-shadow: 0 0 14px rgba(0,0,0,0.15);
	flex: 0 0 auto;
}

.news_person_text{
	min-width: 0;
}

.news_name{
	font-size: 20px;
	font-weight: bold;
	white-space: nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
}

.news_disc{
	font-size: 14px;
	font-weight: bold;
	color: rgba(0,0,0,0.55);
	margin-top: 2px;
}

.news_date{
	font-size: 14px;
	font-weight: bold;
	color:#888583;
	white-space: nowrap;
	margin-top: 4px;
}

.news_headline{
	font-size: 22px;
	line-height: 28px;
	padding: 0;
	margin: 7px 0 10px 0;
	text-align:left;
}

.news_headline a{
	color: rgba(0,0,0,0.72);
	font-weight: bold;
}

.news_headline a:hover{
	color: rgba(0,0,0,0.9);
}

.news_blurb{
	font-size: 16px;
	line-height: 23px;
	max-height: 140px;
	overflow:hidden;
	position: relative;
	white-space: pre-wrap;
}

.news_links{
	margin-top: 12px;
}

.news_links .link{
	display:inline-block;
	margin-right: 14px;
	font-size: 13px;
}

@media (max-width: 980px){
	.news_item{
		flex-direction: column;
	}
	.news_media, .news_body{
		width: 100%;
	}
	.news_media{
		min-height: 240px;
	}
}
