.steps-block {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	padding: 2.5rem 0.75rem 1rem;
	border-radius: 1.25rem;
	background-color: var(--color-orange-orange-800);
}

.steps-block .steps-block__bg {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: 151.84rem;
	height: 231.165625rem;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.steps-block .steps-block__bg-graphic {
	display: block;
	width: 100%;
	height: 100%;
}

.steps-block .steps-block__bg-graphic svg {
	display: block;
	width: 100%;
	height: 100%;
}

.steps-block .steps-block__container {
	position: relative;
	z-index: 1;
	gap: 1.5rem;
	width: 100%;
	min-width: 0;
}

.steps-block .steps-block__head {
	gap: 1rem;
	width: 100%;
	min-width: 0;
}

.steps-block .steps-block__intro {
	gap: 1rem;
	min-width: 0;
	flex: 1;
}

.steps-block .steps-block__title-wrap {
	position: relative;
	width: 100%;
	min-width: 0;
}

.steps-block .steps-block__title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--color-base-white);
	text-transform: uppercase;
}

.steps-block .steps-block__description {
	margin: 0;
	color: var(--color-base-white);
}

.steps-block .steps-block__nav {
	display: none;
	gap: 0.75rem;
	flex-shrink: 0;
}

.steps-block .steps-block__nav-btn.btn-icon {
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	min-height: 3.5rem;
	border: none;
	border-radius: var(--layout-radius-m);
	background-color: var(--color-base-white);
	color: var(--color-gray-gray-600);
	opacity: 0.5;
	transition:
		background-color 0.24s ease,
		color 0.24s ease,
		opacity 0.24s ease,
		transform 0.24s ease;
}

.steps-block .steps-block__nav-btn--next.btn-icon {
	background-color: var(--color-orange-orange-200);
	opacity: 1;
}

.steps-block .steps-block__nav-btn--prev.btn-icon:not(:disabled):not(.--disabled) {
	opacity: 1;
}

.steps-block .steps-block__nav-btn .btn-icon__graphic.steps-block__nav-icon {
	width: 0.75rem;
	height: 1.125rem;
	color: currentColor;
}

.steps-block .steps-block__nav-btn--prev .btn-icon__graphic.steps-block__nav-icon {
	transform: scaleX(-1);
}

.steps-block .steps-block__nav-btn .btn-icon__graphic.steps-block__nav-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.steps-block .steps-block__nav-btn .btn-icon__graphic.steps-block__nav-icon svg path {
	transition: fill 0.24s ease;
}

.steps-block .steps-block__nav-btn:disabled,
.steps-block .steps-block__nav-btn.--disabled,
.steps-block .steps-block__nav-btn.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.steps-block .steps-block__nav-btn:focus-visible {
	outline: 0.125rem solid var(--color-base-white);
	outline-offset: 0.125rem;
}

.steps-block .steps-block__track {
	gap: 0.375rem;
	width: 100%;
	min-width: 0;
}

.steps-block .steps-block__swiper {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	outline: none;
}

.steps-block .steps-block__swiper:focus-visible {
	outline: 0.125rem solid var(--color-base-white);
	outline-offset: 0.125rem;
}

.steps-block .steps-block__swiper .swiper-wrapper {
	align-items: stretch;
}

.steps-block .steps-block__slide {
	flex-shrink: 0;
	width: 19.5rem;
	height: auto;
	box-sizing: border-box;
}

.steps-block .steps-block__slide .step-card {
	height: 100%;
}

.steps-block .steps-block__swipe-hint {
	display: block;
	flex-shrink: 0;
	width: 3.125rem;
	height: 3.125rem;
	opacity: 0.6;
	pointer-events: none;
}

.steps-block .steps-block__swipe-hint-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1023px) {
	section.steps-block {
		width: calc(100% + (2 * var(--layout-bleed-gutter)));
		max-width: calc(100% + (2 * var(--layout-bleed-gutter)));
		margin-left: calc(-1 * var(--layout-bleed-gutter));
		margin-right: calc(-1 * var(--layout-bleed-gutter));
	}

	.steps-block .steps-block__swiper {
		overflow: visible;
		margin-right: calc(-1 * var(--layout-bleed-gutter));
	}

	.steps-block .title-highlight__layer {
		display: block;
	}

	.steps-block .title-highlight {
		height: 2rem;
	}

	.steps-block .title-highlight__bar {
		top: 0.375rem;
		height: 1.625rem;
	}

	.steps-block .title-highlight__corner {
		width: 0.5rem;
		height: 2rem;
	}

	.steps-block .title-highlight__corner--start {
		left: -0.125rem;
	}

	.steps-block .title-highlight__corner--end {
		top: 0.125rem;
		right: -0.125rem;
	}
}

@media screen and (min-width: 64rem) {
	.steps-block {
		padding: 5rem 2.5rem;
		border-radius: var(--layout-radius-xxl);
	}

	.steps-block .steps-block__container {
		gap: 2.5rem;
		max-width: var(--layout-container-min);
		margin-left: auto;
		margin-right: auto;
	}

	.steps-block .steps-block__head {
		gap: 2.5rem;
		align-items: flex-end;
	}

	.steps-block .steps-block__intro {
		gap: 1.5rem;
	}

	.steps-block .steps-block__nav {
		display: flex;
	}

	.steps-block .steps-block__track {
		gap: 0;
	}

	.steps-block .steps-block__swiper {
		overflow: hidden;
		margin-right: 0;
	}

	.steps-block .steps-block__slide {
		width: auto;
	}

	.steps-block .steps-block__slide .step-card {
		width: 100%;
		min-width: 0;
	}

	.steps-block .steps-block__swipe-hint {
		display: none;
	}

	.steps-block .steps-block__nav-btn--next.btn-icon:hover:not(:disabled):not(.--disabled) {
		background-color: var(--color-base-white);
		color: var(--color-orange-orange-800);
	}

	.steps-block .steps-block__nav-btn--prev.btn-icon:hover:not(:disabled):not(.--disabled) {
		opacity: 1;
		color: var(--color-orange-orange-800);
	}
}
