/**
 * GOTB page hero styles.
 */

.gotb-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #1a1a2e;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	overflow: hidden;
}

.gotb-page-hero--height-small {
	min-height: 220px;
}

.gotb-page-hero--height-medium {
	min-height: 340px;
}

.gotb-page-hero--height-large {
	min-height: 480px;
}

.gotb-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: #000000;
	pointer-events: none;
}

.gotb-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 3rem 0;
}

.gotb-page-hero__content {
	max-width: 720px;
}

.gotb-page-hero--centered .gotb-page-hero__content {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.gotb-page-hero--left .gotb-page-hero__content {
	text-align: left;
}

.gotb-page-hero--full-width .gotb-page-hero__content {
	max-width: none;
	text-align: center;
}

.gotb-page-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	color: inherit;
}

.gotb-page-hero__subtitle {
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.5;
	opacity: 0.92;
}

.gotb-page-hero__actions {
	margin-top: 0.5rem;
}

.gotb-page-hero__button {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	background: #ffffff;
	color: #1a1a2e !important;
	text-decoration: none;
	font-weight: 600;
	border-radius: 0;
	transition: opacity 0.2s ease;
}

.gotb-page-hero__button:hover {
	opacity: 0.9;
	color: #1a1a2e !important;
}

@media (max-width: 767px) {
	.gotb-page-hero--height-medium {
		min-height: 260px;
	}

	.gotb-page-hero--height-large {
		min-height: 320px;
	}

	.gotb-page-hero__inner {
		padding: 2rem 0;
	}
}
