.main-news__button {
	width: auto;
	text-decoration: none;
	border: 1px solid #de3133;
	box-sizing: border-box;
	padding: 8px 16px;
	font-size: 20px;
	line-height: 24px;
	margin: 45px auto 70px;
	display: block;
	max-width: 305px;
	text-align: center;
}

.main-news__title.h1 {
	display: block;
	text-align: center;
	margin-top: 60px;
	color: #222;
	text-decoration: none;
	margin-bottom: 30px;
}

.main-news__wrapper {
	display: flex;
}

.main-news__item {
	color: #666;
	display: flex;
	text-decoration: none;
	width: calc(100% / 3 - 40px);
}

.main-news__item:not(:last-child) {
	margin-right: 20px;
}

.main-news__img {
	max-width: calc(50% - 20px);
	margin-right: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 185px;
}

.main-news__date {
	font-size: 13px;
	margin-bottom: 7px;
}

.main-news__head {
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
	line-height: 16px;
}

.main-news__preview-text {
	font-size: 12px;
	line-height: 16px;
}

.main-news__description {
  flex: 1;
}

@media screen and (max-width: 1200px) {
	.main-news__item {
		margin-right: 0;
		margin-bottom: 40px;
		width: 100%;
	}

	.main-news__item:not(:last-child) {
		margin-right: 0;
	}

	.main-news__wrapper {
		flex-wrap: wrap;
	}

	.main-news__img {
		max-width: 300px;
		max-height: inherit;
	}
}

@media screen and (max-width: 560px) {
	.main-news__img {
		max-width: 200px;
	}

	.main-news__button {
		margin: 0 auto 60px;
	}

	.main-news__title {
		margin-top: 40px;
	}
}

@media screen and (max-width: 480px) {
	.main-news__img {
		max-width: 100%;
		margin: 0 0 15px;
	}

	.main-news__item {
		flex-direction: column;
	}

	.main-news__img img {
		width: 100%;
	}
}