.news-list {
	padding-top: 135px;
	border-top: 1px solid #d6d6d6
}

.news-card {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px
}
.news-card:hover{
	color: #fff;
}

.news-card__bg-wrapper {
	position: relative;
	width: 100%;
	height: 30vh;
	overflow: hidden
}

.news-card__bg-wrapper>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1.3s cubic-bezier(.165, .84, .44, 1)
}

.news-card__date {
	margin-bottom: 20px;
	font-size: calc(6.93px + (207vw - 1589.76px)/1152 + 6.93px + (207vh - 1380.69px)/413);
	line-height: 1.8
}

.news-card__date,
.news-card__title {
	width: 100%;
}

.news-card__title {
	margin-bottom: .5rem;
	font-size: calc(12.502px + (1099.8vw - 8446.464px)/1152 + 12.502px + (1099.8vh - 7335.666px)/413);
	line-height: 1.5
}

.news-card__text {
	width: 100%;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: calc(6.93px + (207vw - 1589.76px)/1152 + 6.93px + (207vh - 1380.69px)/413);
	line-height: 1.7;
}
.moreLink span{
	margin-right: 10px;
}
.moreLink svg{
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s ease-out,background-color .5s ease-out;
    transition-delay: 0s,.2s;
    will-change: transform,background-color;
}
.moreLink:hover svg{
	transform: scaleX(1);
	fill: #007bff;
    stroke: #007bff;
}