/* ── Hero block ── */

.hero-block {
	display: flex;
	flex-direction: column;
}

/* ── Text area ── */

.hero-block__top {
	background-color: var(--color-off-white-100);
	padding: 29px 0 44px 0;
	position: relative;
}

.hero-block__top-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
	max-width: 720px;
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.hero-block__title {
	font-size: 74px;
	font-style: normal;
	font-weight: 500;
	line-height: 74px;
	/* 100% */
	letter-spacing: -1.48px;
	margin: 0;
	color: #1A1919;
	text-align: center;
}

/* ── Visual area ── */
.hero-block .deco {
	position: absolute;
	bottom: -10px;
	z-index: 1;
}

.hero-block .deco.--left {
	left: 40px;
}

.hero-block .deco.--right {
	right: 40px;
}

.hero-block__visual {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 82px 0 106px 0;
	overflow: hidden;
	border-radius: 6px;
	width: calc(100% - 40px);
	margin-left: 20px;
	min-height: 353px;
	align-items: center;
	background-color: #E5AB2B !important;
}
.hero-block__disk video,
.hero-video--mobile{
	height: 100%;
	width: auto;
}

/* ── Card stack ── */

.hero-cards {
	display: grid;
	/* grid-area: 1/1 stacks all cards in one cell */
	position: absolute;
	bottom: 130px;
	/* always 12px from the visual bottom, regardless of card height */
	left: 50%;
	translate: -50% 0;
	width: 334px;
	z-index: 2;
}

.hero-cards__item {
	grid-area: 1 / 1;
	transform-origin: top center;
	transition:
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.95s cubic-bezier(0.25, 0, 0.4, 1);
	will-change: transform, opacity;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-cards .hero-cards__item:first-child {
	top: 12px;
	position: relative;
}

.hero-cards__item img {
	width: auto;
	height: auto;
	display: block;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(25, 25, 25, 0.16);
	user-select: none;
	max-height: 165px;
	max-width: 100%;
}

.hero-block .section-desc p {
	color: var(--black, #191919);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 28px */
	opacity: 0.6;
}

.hero-block .section-desc {
	max-width: 600px;
	margin-bottom: 13px;
}

/* ── Disk / video ── */

.hero-block__disk {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: auto;
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
}

.hero-block__disk video {
	max-width: 100%;
	object-fit: cover;
	display: block;
	background-color: var(--hero-bg, transparent);
}

.hero-block__disk .hero-video--mobile {
	display: none;
}

@media (max-width: 546px) {
	.hero-block__disk .hero-video--desktop {
		display: none;
	}

	.hero-block__disk .hero-video--mobile {
		display: block;
	}
}

/* ── Responsive ── */

@media (max-width: 768px) {
	.hero-block__top-inner {
		max-width: 100%;
	}

	.hero-cards {
		width: clamp(260px, 88vw, 400px);
		/* bottom: 12px and position: absolute are inherited from the desktop rule */
	}

	.hero-block__disk {
		width: clamp(280px, 92vw, 500px);
		bottom: -18%;
	}

	.hero-block__title {
		font-size: 48px;
		font-style: normal;
		font-weight: 500;
		line-height: 50px;
		/* 104.167% */
		letter-spacing: -0.96px;
	}

	.hero-block .section-desc p {
		font-size: 18px;
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		/* 25.2px */
	}

	.hero-block__top {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero-block .deco.--right,
	.hero-block .deco.--left {
		display: none;
	}

	.hero-block__visual {
		margin-left: 8px;
		width: calc(100% - 16px);
		padding-top: 60px;
		padding-bottom: 140px;
		padding-left: 40px;
		padding-right: 40px;
	}

	.hero-block__visual {}

	.hero-block__disk {
		left: 0;
		bottom: 0;
	}

	.hero-cards {
		width: calc(100% - 48px);
		/* side padding so cards don't touch the edges */
	}

	.hero-block__disk {
		width: 100%;
	}

}