main > * {
	position: relative;
}

.news-list {
	word-wrap: break-word;
}



.news-list .side-block {
    position: absolute;
    top: 0;
    bottom: 0;
	width: 58px;
    background: #F2B123;
    overflow: hidden;
	writing-mode: vertical-lr;
}

.news-list .side-block.side-block-left {
    left: calc(-58px * 3);
}
.news-list .side-block.side-block-right {
    right: calc(-58px * 3);
}


.news-list .side-block .text {
    position: absolute;
    top: 50%;
    display: block;
    font-family: "Uni Sans";
    font-weight: 900;
    font-size: 3rem;
    line-height: 58px;
    color: #FFFFFF;
    transform: rotate(180deg);
    white-space: nowrap;
}
.news-list .side-block .text-1 {
	color: #1E1E1E;
}




.news-list .item {
	background-color: #272727;
}

.news-list .picture-block {
	position: relative;
}
.news-list .picture-block::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	height: 120px;
	background: linear-gradient(0deg, rgba(242, 177, 35, 0.5) 0%, rgba(242, 177, 35, 0) 100%);
	opacity: 0;
	transition: opacity .3s;
}

.news-list .picture {

}


.news-list .info-block {
	transition: background-color .3s;
}
.news-list .info-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	display: block;
	border: 16px solid transparent;
	border-left-color: #F2B123;
	transition: border-color .3s;
}

.news-list .info-block .title {
	font-family: "Uni Sans";
	font-weight: 900;
	font-size: 1.25rem;
	line-height: 1.2;
	color: #F2B123;
}

.news-list .info-block .text {
	color: #969696;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
}

.news-list .info-block .date {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
	color: #969696;
}



.news-list .item:hover .picture-block:after {
	opacity: 1;
}

.news-list .item:hover .info-block {
	background-color: #F2B123;
}
.news-list .item:hover .info-block::before {
	border-left-color: #272727;
}
.news-list .item:hover .info-block .title {
	color: #1E1E1E;
}
.news-list .item:hover .info-block .text {
	color: #1E1E1E;
}
.news-list .item:hover .info-block .date {
	color: #1E1E1E;
}
.news-list .item:hover .info-block .btn {
	background-color: #272727;
	color: #FFFFFF;
}
.news-list .item:hover .info-block .btn:hover {
	background-color: #FFFFFF;
	color: #272727;
}






@media screen and (max-width: 1599px) {

	.news-list .side-block.side-block-left {
		left: calc(-58px * 2);
	}
	.news-list .side-block.side-block-right {
		right: calc(-58px * 2);
	}

}
@media screen and (max-width: 1399px) {



}
@media screen and (max-width: 1199px) {

	.news-list {
		padding: 0 4rem;
	}

	.news-list .side-block.side-block-left {
        left: calc(-58px * 0);
    }
	.news-list .side-block.side-block-right {
        right: calc(-58px * 0);
    }

}
@media screen and (max-width: 991px) {

	.news-list {
		padding: 0 3.5rem;
	}

	.news-list .side-block {
		width: 42px;
	}

	.news-list .side-block.side-block-left {
        left: 12px;
    }
	.news-list .side-block.side-block-right {
        right: 12px;
    }

	.news-list .side-block .text {
		font-size: 2rem;
    	line-height: 42px;
	}



	.news-list .info-block::before {
		top: 16px;
		border-width: 10px;
	}


	.news-list .info-block .title {
		font-size: 1.125rem;
	}

	.news-list .info-block .text {
		font-size: .875rem;
	}

	.news-list .info-block .date {
		font-size: .875rem;
	}

}
@media screen and (max-width: 767px) {

	.news-list {
		padding: 0 3rem;
	}

	.news-list .side-block {
		width: 32px;
	}

	.news-list .side-block.side-block-left {
        left: 12px;
    }
	.news-list .side-block.side-block-right {
        right: 12px;
    }

	.news-list .side-block .text {
        font-size: 1.5rem;
    	line-height: 32px;
    }


	.news-list .info-block::before {
        top: 12px;
        border-width: 5px;
    }
	.news-list .info-block .title {
		font-size: 1rem;
	}
	.news-list .info-block .text {
        font-size: .75rem;
    }

}
@media screen and (max-width: 575px) {

	.news-list {
		padding: 0 2.5rem;
	}

	.news-list .side-block {
		width: 28px;
	}

	.news-list .side-block.side-block-left {
        left: 12px;
    }
	.news-list .side-block.side-block-right {
        right: 12px;
    }

	.news-list .side-block .text {
        font-size: 1.25rem;
    	line-height: 28px;
    }


	.news-list .info-block .text {
		max-height: 100px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.news-list .picture-block::after {
		height: 60px;
	}

}