.cb-block--hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: var(--cb-section-padding) 0;
	overflow: hidden;
}

.cb-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.cb-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--cb-color-text);
}

.cb-block--hero .cb-container {
	position: relative;
	z-index: 1;
}

.cb-hero__inner {
	max-width: 720px;
}

.cb-hero__inner > * {
	opacity: 0;
	transform: translateY(24px);
	animation: cb-hero-reveal var(--cb-duration-slow) var(--cb-ease-out) forwards;
}

.cb-hero__inner > *:nth-child(1) { animation-delay: 0ms; }
.cb-hero__inner > *:nth-child(2) { animation-delay: 100ms; }
.cb-hero__inner > *:nth-child(3) { animation-delay: 200ms; }
.cb-hero__inner > *:nth-child(4) { animation-delay: 300ms; }

@keyframes cb-hero-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cb-hero__inner > * {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

.cb-hero__title {
	font-family: var(--cb-font-display);
	font-size: clamp(2.75rem, 5vw + 1rem, 5.5rem);
	font-weight: var(--cb-font-weight-bold);
	line-height: 1.05;
	letter-spacing: var(--cb-letter-spacing-display);
	margin: 0 0 1rem;
}

.cb-hero__lede {
	font-size: clamp(1.125rem, 1.5vw, 1.375rem);
	color: var(--cb-color-text-muted);
	max-width: 540px;
	margin: 0 0 2rem;
}

.cb-block--hero.cb-hero--has-bg .cb-hero__title,
.cb-block--hero.cb-hero--has-bg .cb-hero__lede,
.cb-block--hero.cb-hero--has-bg .cb-block__eyebrow {
	color: #fff;
}

.cb-block--hero.cb-hero--has-bg .cb-hero__lede {
	color: rgba(255, 255, 255, 0.85);
}

.cb-block--hero.cb-hero--center .cb-hero__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cb-block--hero.cb-hero--center .cb-hero__lede {
	margin-left: auto;
	margin-right: auto;
}

.cb-block--hero.cb-hero--center .cb-block__actions {
	justify-content: center;
}
