.news {
	background-color: #FFFFFF;
	border-radius: 40px;
	padding-top: 50px;
	padding-bottom: 100px;
	position: relative;
	z-index: 1;
}

.news__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.news__header-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.news__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 76%;
}

.news__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.news__eyebrow-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.news__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #000000;
}

.news__heading {
	margin: 0 0 20px 0;
	text-align: left;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #000000;
}

.news__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #000000;
	border-radius: 50px;
	padding: 12px 24px;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #FFFFFF;
	fill: #FFFFFF;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.news__button:hover,
.news__button:focus {
	background-color: #0061D9;
	color: #FFFFFF;
}

.news__button--mobile {
	display: none;
}

/* Grid */
.news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.news__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #F7F7F6;
	border-radius: 16px;
	padding: 32px;
}

.news__card-title {
	margin: 0;
	text-align: left;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	color: #031527;
}

.news__card-date,
.news__card-date a {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #404E5B;
	text-decoration: none;
}

.news__card-link {
	align-self: flex-start;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #031527;
	text-decoration: none;
	transition: color 0.2s ease;
}

.news__card-link:hover {
	color: #0061D9;
}

@media (max-width: 1024px) {
	.news {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.news__inner {
		gap: 40px;
	}

	.news__header-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.news__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.news__button--desktop {
		display: none;
	}

	.news__button--mobile {
		display: inline-flex;
		align-self: flex-start;
	}

	.news__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news__card {
		padding: 28px;
	}
}

@media (max-width: 767px) {
	.news__header {
		width: 100%;
	}

	.news__eyebrow {
		gap: 8px;
	}

	.news__heading {
		margin-bottom: 28px;
		font-size: 36px;
		line-height: 42px;
	}

	.news__grid {
		grid-template-columns: 1fr;
	}

	.news__card {
		padding: 24px;
	}
}
