.foundationRoute article {
	padding-bottom: 20px;
}

.foundationRouteHero {
	position: relative;
	margin-bottom: 36px;
	padding: 34px 38px;
	border-radius: 20px;
	background: linear-gradient(135deg, #024a8d 0%, #0878bf 62%, #18a4d8 100%);
	color: #fff;
	overflow: hidden;
}

.foundationRouteHero:after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border: 40px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
}

.foundationRouteKicker {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 15px;
	font-weight: 600;
}

.foundationRouteHero h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
	font-size: 30px;
	line-height: 1.35;
}

.foundationRouteHero p {
	position: relative;
	z-index: 1;
	max-width: 760px;
	font-size: 17px;
	line-height: 1.8;
}

.foundationRouteBack {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-top: 22px;
	padding: 11px 18px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	color: #fff;
	font-weight: 600;
}

.foundationRouteBack:hover,
.foundationRouteBack:focus {
	background: #fff;
	color: #024a8d;
}

.foundationRouteList {
	position: relative;
	counter-reset: routeStep;
}

.foundationRouteList:before {
	content: "";
	position: absolute;
	left: 20px;
	top: 16px;
	bottom: 20px;
	width: 2px;
	background: #d7e6f4;
}

.foundationRouteItem {
	position: relative;
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 28px;
	margin-bottom: 28px;
	padding-left: 58px;
}

.foundationRouteItem:before {
	counter-increment: routeStep;
	content: counter(routeStep);
	position: absolute;
	left: 0;
	top: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #024a8d;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 42px;
	text-align: center;
	box-shadow: 0 0 0 8px #fff;
}

.foundationRouteText {
	padding: 25px 24px;
	border: 1px solid #dce8f3;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(2, 74, 141, 0.08);
}

.foundationRouteStep {
	display: block;
	margin-bottom: 10px;
	color: #009fe3;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.foundationRouteText h3 {
	margin-bottom: 12px;
	color: #123a5f;
	font-size: 23px;
	line-height: 1.35;
}

.foundationRouteText p {
	color: #555;
	font-size: 16px;
	line-height: 1.75;
}

.foundationRouteImage {
	overflow: hidden;
	border-radius: 16px;
	background: #f5f8fb;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.foundationRouteImage img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
}

.foundationRouteImagePortrait {
	max-width: 430px;
}

.foundationRouteGallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media all and (min-width: 768px) and (max-width: 999px) {
	.foundationRouteItem {
		grid-template-columns: 260px 1fr;
		gap: 20px;
	}

	.foundationRouteHero h3 {
		font-size: 26px;
	}
}

@media all and (max-width: 767px) {
	.foundationRouteHero {
		margin-bottom: 28px;
		padding: 26px 22px;
		border-radius: 16px;
	}

	.foundationRouteHero h3 {
		font-size: 24px;
	}

	.foundationRouteHero p {
		font-size: 15px;
	}

	.foundationRouteList:before {
		left: 17px;
	}

	.foundationRouteItem {
		display: block;
		margin-bottom: 26px;
		padding-left: 48px;
	}

	.foundationRouteItem:before {
		width: 36px;
		height: 36px;
		font-size: 16px;
		line-height: 36px;
	}

	.foundationRouteText {
		margin-bottom: 14px;
		padding: 20px 18px;
	}

	.foundationRouteText h3 {
		font-size: 20px;
	}

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

	.foundationRouteImage img {
		max-height: none;
	}
}
