.step2 {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #EBEFF3 0%, #EBEFF3 100%);
	color: #26364D;
	padding: clamp(72px, 8vw, 124px) 0 clamp(88px, 10vw, 132px);
}

.step2__inner {
	position: relative;
	width: min(100%, var(--width));
	margin: 0 auto;
	padding: 0 var(--frame-padding-inline);
	box-sizing: border-box;
	z-index: 1;
}

.step2__top {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	position: relative;
	margin-bottom: clamp(18px, 2vw, 26px);
}

.step2__heading {
	min-width: 0;
	flex: 1 1 auto;
}

.step2__number {
	margin: 0 0 8px;
	font-family: var(--font-family-display);
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	color: rgba(38, 54, 77, 0.6);
}

.step2__title {
	margin: 0;
	max-width: none;
	font-family: var(--font-family-display);
	font-size: clamp(34px, 3.8vw, 48px);
	font-weight: 300;
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	color: #26364D;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
	text-wrap: nowrap;
}

.step2__carousel-nav {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
	flex: 0 0 auto;
}

.step2__carousel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	padding: 0;
	border: 0;
	background: none;
	color: #2D3D53;
	cursor: pointer;
	opacity: 0.5;
	border-radius: 0;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.step2__carousel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
}

.step2__carousel-icon svg {
	display: block;
	width: 45px;
	height: 45px;
}

.step2__carousel-icon path {
	fill: transparent;
	stroke: #2D3D53;
	stroke-width: 2.5;
	vector-effect: non-scaling-stroke;
}

.step2__carousel-button.is-active {
	opacity: 1;
	color: #2D3D53;
}

.step2__carousel-button.is-active .step2__carousel-icon path {
	fill: #2D3D53;
	stroke: #2D3D53;
}

.step2__carousel-button:hover,
.step2__carousel-button:focus-visible {
	transform: scale(1.04);
}

.step2__carousel-button:disabled {
	opacity: 0.32;
	cursor: default;
	transform: none;
}

.step2__separator {
	width: 100%;
	height: 1px;
	margin-bottom: clamp(26px, 3vw, 34px);
	background: rgba(38, 54, 77, 0.18);
}

.step2__carousel {
	position: relative;
	--step2-carousel-frame-offset: calc(var(--hero-button-outer-border-offset) + 2px);
	margin-top: 0;
	padding-top: 0;
	padding-left: var(--step2-carousel-frame-offset);
	padding-right: var(--step2-carousel-frame-offset);
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.step2__carousel::-webkit-scrollbar {
	display: none;
}

.step2__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: var(--step2-card-width, minmax(0, 1fr));
	align-items: flex-start;
	width: max-content;
	min-width: 100%;
	gap: clamp(18px, 2.2vw, 28px);
	padding: 8px 0 16px;
	margin: 0 auto;
	scroll-snap-type: x mandatory;
	scroll-padding-left: var(--step2-carousel-frame-offset);
}

.step2__poi-card {
	display: grid;
	gap: 12px;
	align-content: start;
	justify-items: stretch;
	text-align: left;
	width: var(--step2-card-width, 100%);
	scroll-snap-align: start;
}

.step2__poi-card:nth-child(odd) {
	margin-top: 8%;
	margin-bottom: 0;
}

.step2__poi-name {
	margin: 0;
	font-family: var(--font-family-body-accent);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: #26364D;
}

.step2__poi-media {
	position: relative;
	overflow: visible;
	width: 100%;
}

.step2__poi-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #2D3D53;
	opacity: 0.46;
	border-radius: 0;
	pointer-events: none;
	z-index: 1;
}

.step2__poi-media::after {
	content: '';
	position: absolute;
	inset: calc(var(--hero-button-outer-border-offset) * -1);
	border: 1px solid rgba(38, 54, 77, 0.32);
	border-radius: 0;
	pointer-events: none;
}

.step2__poi-image {
	display: block;
	width: 100%;
	aspect-ratio: 0.72;
	object-fit: cover;
	border-radius: 0;
	filter: saturate(0.88) contrast(1.02);
}

.step2__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hero-actions-gap);
	margin-top: clamp(64px, 7vw, 108px);
	position: relative;
	z-index: 1;
}

.step2__button {
	min-width: 256px;
	min-height: 60px;
}

.step2__actions .hero__button--primary,
.step2__actions .hero__button--primary:visited,
.step2__actions .hero__button--primary:hover,
.step2__actions .hero__button--primary:focus-visible,
.step2__actions .hero__button--primary:active {
	background: #9F4D25;
	color: #fff;
	border-color: transparent;
	box-shadow: none;
}

.step2__actions .hero__button--primary::after {
	border-color: #2D3D53;
}

.step2__actions .hero__button--secondary,
.step2__actions .hero__button--secondary:visited,
.step2__actions .hero__button--secondary:hover,
.step2__actions .hero__button--secondary:focus-visible,
.step2__actions .hero__button--secondary:active {
	background: transparent;
	color: #2D3D53;
	border-color: #2D3D53;
	backdrop-filter: none;
	box-shadow: none;
}

.step2__actions .hero__button--secondary::after {
	border-color: #2D3D53;
}

@media (max-width: 1219px) {
	.step2__top {
		align-items: center;
	}

	.step2__track {
		grid-auto-columns: clamp(260px, 34vw, 320px);
		scroll-snap-stop: always;
		overscroll-behavior-x: contain;
	}
}

@media (max-width: 900px) {
	.step2__track {
		grid-auto-columns: minmax(220px, 48vw);
	}

	.step2__poi-card:nth-child(odd) {
		margin-top: 10%;
	}

	.step2__title {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.step2 {
		padding-top: 72px;
		padding-bottom: 96px;
	}

	.step2__inner {
		padding-left: min(24px, var(--frame-padding-inline));
		padding-right: min(24px, var(--frame-padding-inline));
	}

	.step2__number {
		font-size: 24px;
	}

	.step2__top {
		align-items: end;
	}

	.step2__title {
		font-size: clamp(28px, 8.2vw, 36px);
		max-width: 100%;
		line-height: 1;
		white-space: normal;
		text-wrap: pretty;
	}

	.step2__carousel-nav {
		display: none;
	}

	.step2__carousel-button {
		width: 45px;
		height: 45px;
	}

	.step2__track {
		grid-auto-columns: minmax(220px, 74vw);
		gap: 20px;
		padding-bottom: 20px;
	}

	.step2__poi-card:nth-child(odd) {
		margin-top: 8%;
	}

	.step2__poi-name {
		font-size: 16px;
	}

	.step2__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.step2__button {
		min-width: 0;
		width: 100%;
	}
}