.mainpage-news {
	padding:105px 0;
	margin-bottom:0;
}
.mainpage-news .container {
	position:relative;
}
.mainpage-news .title-block {
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:60px;
}
.mainpage-news .title-block .title {
	line-height:1;
	font-size:36px;
}

.mainpage-news .item-list {
	display:flex;
	flex-wrap:wrap;
	gap:48px;
}

.mainpage-news .item {
    width: calc(33.3336% - 32px);
    margin: 0;
	display:inline-flex;
	flex-direction:column;
	text-decoration:none;
	position:relative;
}
.mainpage-news .item .image {
	width:100%;
	height:240px;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:30px;
	border-radius:4px;
	overflow:hidden;
}
.mainpage-news .item .image img {
	object-fit:cover;
	width:100%;
	height:100%;
}

.mainpage-news .item .hover {
    font-family: "Bold";
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    background: transparent;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 160px;
    height: 160px;
    border-radius: 100%;
    border: 1px solid #f8f8f8;
    z-index: 1;
    transition: all 0.5s;
    background-color: #00000075;
	color:#efefef;
}
.mainpage-news .item:hover .hover {
	opacity:1;
}

.mainpage-news .item:before {
	content:"";
    width: 100%;
    height: 240px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: 0;
    transition: all 0.3s;
}
.mainpage-news .item:hover:before {
	opacity:0.6;
}
.mainpage-news .item .date {
	width:100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #A0A0A0;
	margin-bottom:12px;
}
.mainpage-news .item .title {
	width:100%;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
	flex:1 1 auto;
	text-transform:none;
}

.mainpage-news .item .tags {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	gap:6px;
	margin-top:21px;
}

.mainpage-news .item .tag {
	display: inline-flex;
	align-items:center;
	padding: 0 15px;
	height: 23px;
	border-radius: 50px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: #A0A0A0;
	border:1px solid #A0A0A0;
}

.mainpage-news .item .tag.news,
.mainpage-news .item .tag.actual {
	color: #fff;
	background: #C8112A;
	border:1px solid #C8112A;
}


.mainpage-news .buttons {
	position:absolute;
	top:0;
	right:40px;

}
.mainpage-news .buttons .button.button-wireframe-white {
	height:23px;
	padding:0 22px;
	color:#A0A0A0;
	border-color:#A0A0A0;
	text-transform:none;
	white-space:nowrap;
	border-radius:12px;
	width:auto;
	font-size:14px;
	line-height: 1.21;
	font-weight: 400;
	letter-spacing: -0.04em;
}

@media (max-width:960px) {
	.mainpage-news .item:not(:nth-child(1)):not(:nth-child(2)) {
		display:none;
	}
	.mainpage-news .item-list {
		gap:12px;
	}
	.mainpage-news .item {
		width:calc(50% - 6px);
	}
}
@media (max-width:560px) {
	.mainpage-news .item {
		width:100%;
	}
	.mainpage-news .item .image img {
		object-fit:contain;
	}
	.mainpage-news .buttons {
		position:static;
		top:auto;
		right:auto;
		margin-top:80px;
		text-align:center;
	}
	.mainpage-news .buttons .button.button-wireframe-white {
		height:40px;
		padding:0 28px;
		color:#fff;
		border-color:#fff;
		border-radius:20px;
		font-size:18px;
		margin: 0 auto;
	}
}

@media (max-width:468px) {
	.mainpage-news {
		padding-top:80px;
		padding-bottom:80px;
	}
	.mainpage-news .title-block {
		margin-bottom:45px;
	}
	.mainpage-news .title-block .title {
		font-size:28px;
	}	
	.mainpage-news .item .image {
		height:238px;
	}
	.mainpage-news .item .image img {
		object-fit:cover;
	}
	.mainpage-news .item-list {
		gap:50px;
	}
}