/* ==========================================================================
   Almunia — Page hero (all non-home pages)
   Background image + dark overlay + title + breadcrumb.
   ========================================================================== */

.almunia-page-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--color-dark);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
	isolation: isolate;
}

/* Fallback background if no image is set */
.almunia-page-hero.no-image {
	background: linear-gradient(135deg, #17181B 0%, #0B0C0E 100%);
}

.almunia-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(17, 18, 20, .55) 0%, rgba(17, 18, 20, .8) 100%);
	z-index: 1;
	pointer-events: none;
}
.almunia-page-hero.no-image .almunia-page-hero__overlay {
	background: transparent;
}

.almunia-page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px 70px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
	align-items: flex-start;
}

.almunia-page-hero__title {
	margin: 0;
	font-family: inherit;
	font-weight: 700;
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: .005em;
	color: #fff;
	text-wrap: balance;
}

/* ---------- Breadcrumb ---------- */
.almunia-page-hero__breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 8px 10px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .75);
	letter-spacing: .02em;
}
.almunia-page-hero__crumb {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.almunia-page-hero__crumb a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: color .15s ease;
}
.almunia-page-hero__crumb a:hover {
	color: var(--color-primary);
}
.almunia-page-hero__crumb.is-current > span:not(.almunia-page-hero__sep) {
	color: var(--color-primary);
	font-weight: 600;
}
.almunia-page-hero__sep {
	color: rgba(255, 255, 255, .3);
	font-size: 12px;
	user-select: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.almunia-page-hero__inner { padding: 60px 16px 44px; }
	.almunia-page-hero__title { font-size: 30px; }
	.almunia-page-hero__breadcrumb ol { font-size: 12px; }
}
