/* Hero Block — Self-contained styles */
:root {
	--color-bg-dark: #001F3F;
	--color-text-light: #ffffff;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-weight-medium: 500;
	--font-size-base: 1rem;
	--font-size-sm: 0.875rem;
	--font-size-2xl: 1.75rem;
	--font-size-3xl: 2rem;
	--font-size-4xl: 2.5rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-3xl: 3rem;
	--space-4xl: 4rem;
	--max-width: 1280px;
}

.hero {
	position: relative;
	min-height: 580px;
	display: flex;
	align-items: center;
	background-color: var(--color-bg-dark);
	overflow: hidden;
}

/* Height variants */
.hero--small {
	min-height: 300px;
}

.hero--medium {
	min-height: 420px;
}

.hero--large {
	min-height: 580px;
}

.hero--full {
	min-height: 100vh;
}

.hero__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55%;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.hero__background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(100deg, var(--color-bg-dark) 0%, var(--color-bg-dark) 30%, rgba(0, 31, 63, 0.7) 50%, rgba(0, 31, 63, 0.1) 70%, transparent 85%);
}

.hero__container {
	position: relative;
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: var(--space-3xl) var(--space-xl);
	z-index: 1;
}

.hero__content {
	max-width: 550px;
}

.hero__tagline {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 var(--space-lg);
}

.hero__title {
	color: var(--color-text-light);
	font-family: var(--font-heading);
	font-size: 3.25rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.2;
	margin: 0 0 var(--space-xl);
}

.hero__description {
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-medium);
	line-height: 1.7;
	margin: 0;
	max-width: 540px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
	.hero__background {
		width: 60%;
	}

	.hero__title {
		font-size: var(--font-size-4xl);
	}

	.hero__container {
		padding: var(--space-4xl) var(--space-xl);
	}
}

@media screen and (max-width: 768px) {
	.hero {
		min-height: 500px;
	}

	.hero--small {
		min-height: 250px;
	}

	.hero--medium {
		min-height: 350px;
	}

	.hero__background {
		width: 100%;
		opacity: 0.3;
	}

	.hero__background::before {
		background: rgba(0, 31, 63, 0.75);
	}

	.hero__container {
		padding: var(--space-3xl) var(--space-lg);
	}

	.hero__content {
		max-width: 100%;
	}

	.hero__tagline {
		font-size: 0.6875rem;
	}

	.hero__title {
		font-size: var(--font-size-3xl);
	}

	.hero__description {
		font-size: var(--font-size-sm);
	}
}

@media screen and (max-width: 480px) {
	.hero {
		min-height: 450px;
	}

	.hero--small {
		min-height: 200px;
	}

	.hero--medium {
		min-height: 300px;
	}

	.hero__title {
		font-size: var(--font-size-2xl);
	}
}
