.ias-news-title {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
        font-family: "Garamond",serif;
}

.ias-news-title a {
	height: 40px;
	font-size: 30px;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	margin-bottom: 20px;
}

.ias-news-list {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.ias-news-list a {
	display: block;
	width: 24%;
	overflow: hidden;
	cursor: pointer;
	background-color: #f1f1f1;
}

.ias-news-list-img {
	width: 100%;
	overflow: hidden;
}

.ias-news-list-img img {
	width: 100%;
	height: 14vw;
	max-height: 250px;
	min-height: 100px;
	object-fit: cover;
	transition: all .5s;
}

.ias-news-list a:hover .ias-news-list-img img {
	transform: scale(1.2);
}

.ias-news-list-desc {
	background-color: #f1f1f1;
	padding: 10px;
	position: relative;
	font-size: 18px;
}

.ias-news-list-desc>.title {
	min-height: 50px;
	line-height: 25px;
        font-size:22px
}

.ias-news-list-desc>.time {
	color: #af904d;
	font-style: oblique;
	text-align: right;
	margin-top: 20px;
	height: 25px;
	line-height: 25px;
}

@media screen and (max-width:965px) {
	.ias-news-list{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.ias-news-list a {
		width: 46%;
		margin: 2%;
	}
	.ias-news-list-img img {
		width: 100%;
		height: 25vw;
		object-fit: cover;
		transition: all .5s;
	}
}


@media screen and (max-width:500px) {
	.ias-news-list{
		flex-direction: column;
	}
	.ias-news-list a {
		width: 100%;
		margin: 20px 0;
	}
	
	.ias-news-list-img img {
		width: 100%;
		height:unset;
		max-height: unset;
		min-height: unset;
		object-fit: cover;
		transition: all .5s;
	}
}