/**
 * ATB Block: Page Hero
 *
 * Назначение:
 * - универсальный hero для внутренних страниц;
 * - работает через page.php;
 * - не заменяет Home Hero.
 *
 * Уникальные классы:
 * - .atb-page-hero
 */

.atb-page-hero {
	position: relative;
	isolation: isolate;
	min-height: 280px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .22), transparent 34%),
		linear-gradient(135deg, #07111f 0%, #0f172a 52%, #020617 100%);
	color: #fff;
}

.atb-page-hero__image {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.atb-page-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(2, 6, 23, .86) 0%, rgba(2, 6, 23, .68) 48%, rgba(2, 6, 23, .38) 100%),
		linear-gradient(180deg, rgba(2, 6, 23, .28), rgba(2, 6, 23, .72));
}

.atb-page-hero__container {
	width: min(calc(100% - 40px), 1320px);
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 58px;
	padding-bottom: 52px;
}

.atb-page-hero__content {
	max-width: 760px;
}

.atb-page-hero__eyebrow {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, .74);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.atb-page-hero__title {
	margin: 0;
	max-width: 900px;
	color: #fff;
	font-family: var(--atb-font-heading);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 700;
	letter-spacing: -.055em;
	line-height: .96;
}

.atb-page-hero__lead {
	margin: 16px 0 0;
	max-width: 680px;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 500;
	line-height: 1.65;
}

@media (max-width: 768px) {
	.atb-page-hero {
		min-height: 220px;
	}

	.atb-page-hero__container {
		width: min(calc(100% - 32px), 100%);
		padding-top: 44px;
		padding-bottom: 40px;
	}

	.atb-page-hero__eyebrow {
		margin-bottom: 12px;
		font-size: 11px;
	}

	.atb-page-hero__title {
		font-size: clamp(30px, 9vw, 42px);
	font-weight: 700;
		letter-spacing: -.045em;
	}

	.atb-page-hero__lead {
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.55;
	}
}
