.news {
	max-width: 800px;
	margin: 0 auto;
}
.news__item {
	display: flex;
	align-items: center;
	padding: 0;
}
.news__item:nth-child(2n) .news__col:nth-child(1) {
	order: 2;
}
.news__col {
	position: relative;
	display: block;
	width: 50%;
	text-align: right;
	padding: 0 10px 0 0;
	height: 100%;
}
.news__col:nth-child(2) {
	text-align: left;
	padding: 0 0 0 10px;
}
.news__item:nth-child(2n) .news__col:nth-child(1) {
	text-align: left;
	padding: 0 0 0 10px;
}
.news__item:nth-child(2n) .news__col:nth-child(2) {
	text-align: right;
	padding: 0 10px 0 0;
}
.news__year {
	font-size: 52px;
	font-weight: 100;
	color: #000;
}
.news__content {
	display: flex;
	align-items: center;
	min-height: 150px;
	padding: 40px 0;
	font-size: 12px;
	font-weight: 300;
	color: #9d9d9d;
}

.news__content:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	width: 9px;
	height: 9px;
	background-color: #d7d7d7;
	border-radius: 50%;
}
.news__item:nth-child(2n) .news__content:after {
	left: auto;
	right: -4px;
}

.news__content:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	width: 1px;
	height: 100%;
	background-color: #d7d7d7;
}
.news__item:nth-child(2n) .news__content:before {
	left: auto;
	right: 0px;
}
.news__item:first-child .news__content:before {
	height: 50%;
	top: auto;
	bottom: 0;
}
.news__item:last-child .news__content:before {
	height: 50%;
}

@media (min-width:576px) {

	.news__col {
		padding: 0 40px 0 0;
	}
	.news__col:nth-child(2) {
		padding: 0 0 0 40px;
	}
	.news__item:nth-child(2n) .news__col:nth-child(1) {
		padding: 0 0 0 40px;
	}
	.news__item:nth-child(2n) .news__col:nth-child(2) {
		padding: 0 40px 0 0;
	}
	.news__year {
		font-size: 57px;
	}
	.news__content {
		min-height: 150px;
		padding: 40px 0;
		font-size: 14px;
	}
}