/**
 * Internal pages hero (smaller than home hero, same visual language).
 */

.page-hero {
	--rietavomvvg-hero-overlay-strong: rgba(7, 36, 78, 0.94);
	--rietavomvvg-hero-overlay-mid: rgba(12, 52, 102, 0.78);
	--rietavomvvg-hero-overlay-soft: rgba(20, 72, 130, 0.42);
	--rietavomvvg-hero-overlay-fade: rgba(26, 95, 180, 0.12);

	position: relative;
	isolation: isolate;
	margin-top: 0;
	min-height: clamp(8.5rem, 20vh, 12rem);
	padding-block: clamp(1.4rem, 4.2vw, 2.25rem);
	color: #fff;
	background: linear-gradient(
		135deg,
		var(--rietavomvvg-color-primary-dark) 0%,
		var(--rietavomvvg-color-primary) 55%,
		#2d6eb5 100%
	);
	overflow: hidden;
}

.page-hero--has-media {
	background-color: #08244f;
}

.page-hero__media {
	position: absolute;
	inset: 0;
	margin: 0;
	z-index: 0;
}

.page-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--rietavomvvg-hero-overlay-strong) 0%,
		rgba(9, 42, 88, 0.9) 22%,
		var(--rietavomvvg-hero-overlay-mid) 42%,
		var(--rietavomvvg-hero-overlay-soft) 62%,
		var(--rietavomvvg-hero-overlay-fade) 82%,
		transparent 100%
	);
}

.page-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(255, 255, 255, 0.18) 0%,
		rgba(255, 255, 255, 0.05) 18%,
		transparent 42%
	);
	pointer-events: none;
}

.page-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.page-hero__container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: inherit;
}

.page-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	text-align: start;
}

.page-hero__title {
	margin: 0;
	max-width: 100%;
	font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
	line-height: 1.25;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 20px rgba(5, 28, 60, 0.45);
	overflow-wrap: anywhere;
}

@media (max-width: 47.99rem) {
	.page-hero__media::after {
		background: linear-gradient(
			to right,
			rgba(7, 36, 78, 0.97) 0%,
			rgba(9, 42, 88, 0.93) 35%,
			rgba(12, 52, 102, 0.82) 58%,
			rgba(20, 72, 130, 0.55) 78%,
			rgba(26, 95, 180, 0.2) 100%
		);
	}

	.page-hero__image {
		object-position: 70% center;
	}
}

.has-page-hero .site-main > .site-container,
.has-page-hero .site-main > .kvietimai-archive,
.has-page-hero .site-main > .posts-archive,
.has-page-hero .site-main > .search-results {
	padding-top: calc(var(--rietavomvvg-spacing) * 1.5);
}
