div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.material__item {
	margin-right: 30px;
	position: relative;
	cursor: pointer;
	background: #FFFFF7;
	height: 420px;
	width: calc(33.33% - 20px);
	border-radius: 10px;
	transition: all 0.2s;
}
.material__item:hover {
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
}
.material__item:link, .material__item:visited {
	background: #fff;
}
.material__item::after {
	position: absolute;
	display: block;
	content: "";
	-webkit-mask-image: url("../../icons/arrow/long-arrow-right.svg");
	mask-image: url("../../icons/arrow/long-arrow-right.svg");
	width: 24px;
	height: 16px;
	background-color: orange;
	bottom: 15px;
	right: 20px;
	opacity: 0;
	transition: all 0.2s;
}
.material__item:hover::after {
	opacity: 1;
}
.material__item-img img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: 240px;
}
.material__text {
	height: 180px;
	position: relative;
	padding: 30px 35px;
}