.news_top{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.news_top a{
	text-decoration: underline;
}
.news_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
.news_card{
	padding: 15px 15px 30px;
	width: 24%;
	min-width: 24%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 40px;
	min-height: 325px;
}

.news_card_img{
	height: 180px;
}
.news_card_img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
} 

.news_card .font_low{
	margin: 16px 0;
}
.news_card .font_regular{
	padding-right: 20px;
}

@media (max-width: 992px){
	.news_card{
		width: 49%;
	}
	.news_wrap{
		row-gap: 20px;
		margin-top: 30px;
	}
	.news_top{
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 500px){
	.news_card{
		width: 100%;
	}
}
