.sticky-scroll {
	position: relative;
	width: 100%;
}

.sticky-block {
	position: sticky;
	top: 112px;
	width: 100%;
}

.sticky-block__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 32px;
}

.dec-site-info-section .sticky-block__img {
	max-height: 720px;
	object-fit: cover;
}

.sticky-carousel {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 345px;
	padding: 40px 40px 0 40px;
	box-sizing: border-box;
}

.sticky-carousel__left {
	flex: 1 1 50%;
	max-width: 610px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sticky-carousel__header {
	color: #ffffff;
	font-weight: 500;
}

.sticky-carousel__header-text {
	margin: 0;
	font-size: 32px;
	line-height: 36px;
}

.sticky-carousel__header-description {
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	max-width: 420px;
}

.sticky-carousel__progress {
	width: 120px;
	height: 3px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.25);
	overflow: hidden;
	margin-bottom: 40px;
}

.sticky-carousel__progress::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	transform-origin: left center;
	transform: scaleX(var(--progress, 0));
}

.carousel_cards {
	flex: 0 0 42%;
	max-width: 480px;
	height: 100%;
	overflow: hidden;
	align-self: stretch;
}

.carousel_cards__track {
	display: flex;
	flex-direction: column;
	gap: 16px;
	will-change: transform;
	padding-bottom: 40px;
}

.carousel-card {
	border: 1px solid rgba(233, 233, 233, 0.15);
	padding: 36px 24px;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 24px;
	min-height: 120px;
	height: auto;
}

.carousel-card--detailed {
	padding: 24px;
}

.carousel-card__body {
	flex: 1;
	min-width: 0;
}

.carousel-card__text,
.carousel-card__title {
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	margin: 0;
}

.carousel-card__desc {
	color: #f4f5f7;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.carousel-card__icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
	.sticky-scroll {
		height: auto !important;
	}

	.sticky-block {
		position: relative;
		top: auto !important;
		overflow: hidden;
		border-radius: 32px;
	}

	.sticky-block__img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 32px;
	}

	.sticky-carousel {
		position: relative;
		inset: auto;
		flex-direction: column;
		gap: 10px;
		padding: 24px;
		min-height: 0;
		justify-content: space-between;
	}

	.sticky-carousel__left,
	.carousel_cards {
		flex: 1 1 auto;
		max-width: none;
		height: auto;
		overflow: visible;
	}

	.sticky-carousel__left {
		justify-content: flex-start;
		gap: 16px;
	}

	.carousel_cards__track {
		transform: none !important;
		gap: 12px;
	}

	.carousel-card {
		height: auto;
		min-height: 0;
		padding: 20px;
	}

	.sticky-carousel__progress {
		display: none;
	}
}
