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

.mtd__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
}

.mtd__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 900px;
	max-width: 100%;
}

.mtd__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

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

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

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

.mtd__description {
	margin: 0;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

/* Grid: 2x2 — 3 cards + 1 link card. */
.mtd__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
}

.mtd__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	width: 48.5%;
	background-color: #F7F7F6;
	border-radius: 24px;
	padding: 32px;
}

.mtd__card-icon-img {
	width: auto;
	height: 64px;
	display: block;
}

.mtd__card-title {
	margin: 0 0 24px 0;
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #031527;
}

.mtd__card-desc {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

/* Blue "Request Access" link card. */
.mtd__link-card {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	width: 48.5%;
	background-color: #0072FF;
	border-radius: 24px;
	padding: 32px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mtd__link-card:hover {
	background-color: #0061D9;
}

.mtd__link-card-text {
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #FFFFFF;
}

.mtd__link-card-icon {
	display: flex;
	flex-shrink: 0;
	margin-bottom: -10px;
}

.mtd__link-card-icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

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

	.mtd__inner {
		gap: 32px;
	}

	.mtd__header {
		align-items: flex-start;
	}

	.mtd__eyebrow {
		margin-bottom: 20px;
	}

	.mtd__heading,
	.mtd__description {
		text-align: left;
	}

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

	.mtd__grid {
		row-gap: 36px;
		column-gap: 0;
	}

	.mtd__card,
	.mtd__link-card {
		width: 48%;
		padding: 32px 24px;
	}

	.mtd__card-title,
	.mtd__link-card-text {
		font-size: 28px;
		line-height: 36px;
	}
}

@media (max-width: 767px) {
	.mtd {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.mtd__inner {
		gap: 20px;
	}

	.mtd__eyebrow {
		gap: 8px;
	}

	.mtd__grid {
		row-gap: 20px;
		column-gap: 20px;
	}

	.mtd__card {
		width: 100%;
		gap: 48px;
		border-radius: 8px;
		padding: 20px;
	}

	.mtd__card-icon-img {
		height: 48px;
	}

	.mtd__card-title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 28px;
	}

	.mtd__link-card {
		width: 100%;
		min-height: 104px;
		align-items: center;
		padding: 20px;
	}

	.mtd__link-card-icon {
		margin-bottom: 0;
	}

	.mtd__link-card-text {
		font-size: 24px;
		line-height: 28px;
	}
}
