/* eqx/page-hero */

.eqx-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--eqx-warm-white);
	overflow: hidden;
	margin-top: calc(var(--header-h) * -1);
	padding-top: var(--header-h);
}
.eqx-page-hero--small  { min-height: calc(240px + var(--header-h)); }
.eqx-page-hero--medium { min-height: calc(34vh + var(--header-h)); }
.eqx-page-hero--large  { min-height: calc(50vh + var(--header-h)); }

.eqx-page-hero.eqx-bg--light  { color: var(--eqx-text-primary); }
.eqx-page-hero.eqx-bg--light .eqx-page-hero__subheading { color: var(--eqx-brand-accent); }
.eqx-page-hero.eqx-bg--accent { color: var(--eqx-brand-dark); }

.eqx-page-hero__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}
.eqx-page-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(var(--eqx-brand-dark-rgb),0.35) 0%, rgba(var(--eqx-brand-dark-rgb),0.55) 100%);
}

.eqx-page-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: var(--spacing-xl);
}
.eqx-page-hero--align-centre .eqx-page-hero__content { text-align: center; }
.eqx-page-hero__heading { color: inherit; }
.eqx-page-hero__subheading {
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 60ch;
	margin: var(--spacing-sm) 0 0;
}
.eqx-page-hero--align-centre .eqx-page-hero__subheading { margin-inline: auto; }
