/**
 * Баннер расчёта доставки в разделе «Экскаваторы».
 * Рендерится сразу после главного меню (как equipment-offer на главной).
 * Картинка 1024×341 — оболочка держит ту же пропорцию, чтобы кадр не обрезался.
 */
.specteh-cat-delivery-hero.equipment-offer--delivery-calc {
	--eo-form-w: 420px;
	--eo-height: auto;
	--cdh-ratio: 1024 / 341;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 20px 20px 12px;
	background: #fff;
}

.specteh-cat-delivery-hero .equipment-offer__shell {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--eo-max, 1440px);
	height: auto;
	min-height: 0;
	aspect-ratio: var(--cdh-ratio);
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
}

.specteh-cat-delivery-hero .equipment-offer__shell::before {
	/* Лёгкий градиент только слева — справа картинка уже белая под форму */
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.28) 0%,
		rgba(255, 255, 255, 0.1) 16%,
		rgba(255, 255, 255, 0) 32%,
		rgba(255, 255, 255, 0) 100%
	);
}

.specteh-cat-delivery-hero .equipment-offer__visual {
	inset: 0;
	background: #fff;
}

.specteh-cat-delivery-hero .equipment-offer__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.specteh-cat-delivery-hero .equipment-offer__content {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, var(--eo-form-w));
	gap: 20px;
	align-items: center;
	height: 100%;
	padding: 18px 28px 18px 32px;
	box-sizing: border-box;
}

.specteh-cat-delivery-hero .equipment-offer__text {
	position: relative;
	z-index: 3;
	isolation: isolate;
	max-width: 460px;
	height: auto;
	padding: 8px 20px 8px 4px;
	justify-content: center;
	align-self: center;
}

/* Лёгкая подсветка текста, как на главной */
.specteh-cat-delivery-hero .equipment-offer__text::before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	left: -14px;
	top: -10px;
	width: min(480px, 112%);
	height: 180px;
	border-radius: 28px;
	background: radial-gradient(
		ellipse 78% 72% at 32% 38%,
		rgba(255, 255, 255, 0.92) 0%,
		rgba(255, 255, 255, 0.62) 42%,
		rgba(255, 255, 255, 0.22) 70%,
		rgba(255, 255, 255, 0) 100%
	);
	filter: blur(12px);
	pointer-events: none;
}

.specteh-cat-delivery-hero .specteh-cat-delivery-hero__lead {
	margin: 0;
	max-width: 420px;
	font-family: Manrope, "Segoe UI", sans-serif;
	font-size: clamp(22px, 2.1vw, 30px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: #111827;
	text-shadow:
		0 0 10px rgba(255, 255, 255, 0.95),
		0 0 22px rgba(255, 255, 255, 0.75),
		0 1px 0 rgba(255, 255, 255, 0.9);
}

.specteh-cat-delivery-hero .equipment-offer__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	padding-top: 0;
}

.specteh-cat-delivery-hero .equipment-offer__benefit {
	padding: 10px 14px;
}

.specteh-cat-delivery-hero .equipment-offer__benefit-text {
	white-space: normal;
	font-size: 15px;
	font-weight: 600;
}

.specteh-cat-delivery-hero .equipment-offer__form {
	width: 100%;
	max-width: var(--eo-form-w);
	height: auto;
	max-height: 100%;
	align-self: center;
	justify-self: end;
}

.specteh-cat-delivery-hero .equipment-offer__form-card {
	width: 100%;
	max-height: 100%;
	padding: 16px 18px;
	gap: 8px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 40px rgba(25, 32, 40, 0.12);
	overflow: auto;
}

.specteh-cat-delivery-hero .equipment-offer__form-title {
	margin: 0 0 2px;
	font-size: clamp(17px, 1.35vw, 20px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.specteh-cat-delivery-hero .equipment-offer__field input {
	height: 42px;
	padding: 0 14px;
	font-size: 15px;
}

.specteh-cat-delivery-hero .equipment-offer__submit {
	height: 46px;
	margin-top: 0;
	font-size: 16px;
}

.specteh-cat-delivery-hero .equipment-offer__consent {
	font-size: 11px;
	line-height: 1.35;
}

/* Контент категории ниже баннера */
html.specteh-has-cat-delivery-hero #center.container,
html.specteh-has-cat-delivery-hero .bg-color.category-view {
	position: relative;
	z-index: 1;
}

/* Баннер экскаваторов — те же боковые поля 20px, что у сетки категорий */
html.specteh-has-cat-delivery-hero .specteh-cat-delivery-hero.equipment-offer--delivery-calc {
	padding-left: 20px;
	padding-right: 20px;
}

/* Мобильная версия: без баннера на первом экране категории */
@media (max-width: 1199px) {
	.specteh-cat-delivery-hero.equipment-offer--delivery-calc,
	.specteh-cat-delivery-hero {
		display: none !important;
	}
}
