a {
	color: inherit;
	text-decoration: none;
}

.news-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-title {
	margin: 0 0 32px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding-top: 40px;
}

.news-card {
	background: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.news-card:nth-child(1) {
	grid-area: 1 / 1 / 1 / 3;
}
.news-card {
	grid-area: auto;
}

.news-card__image {
	display: block;
	position: relative;
	overflow: hidden;
}
.news-card__image img {
	width: 100%;
	height: 320px;
	border-radius: 4px;
	object-fit: cover;
}

.news-card__content {
	padding: 20px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.news-card__date {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	color: #857040;
}
.news-card__headline {
	margin: 0;
	font-family: Literata;
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #857040;
}

.news-card__excerpt {
	margin: -10px 0 0;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}
.news-card__link {
	margin-top: 8px;
	font-weight: 600;
}

.news-btn__wrapper {
	padding: 40px 0;
	display: flex;
	justify-content: center;
}

.news-btn {
	cursor: pointer;
	padding: 12px 20px;
	border-radius: 4px;
	border: none;
	outline: none;
	background-color: #857040;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	color: #fff;
}

@media (max-width: 993px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.news-title {
		font-size: 32px;
		margin-bottom: 24px;
	}
	.news-card__image img {
		height: 200px;
	}

	.news-card.news-card {
		grid-area: auto;
	}
}

@media (max-width: 640px) {
	.news-grid {
		grid-template-columns: 1fr;
	}
	.news-card__image img {
		height: 180px;
	}
}

