.clh-hero {
	position: relative;
	min-height: var(--clh-min-height, 320px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 1.5rem;
}

.clh-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--clh-overlay-color, #000);
	opacity: var(--clh-overlay-opacity, 0.6);
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: multiply;
}

.clh-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 2rem;
	color: #fff;
}

.clh-hero--layout-side .clh-hero__content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

@media (max-width: 767px) {
	.clh-hero {
		min-height: var(--clh-min-height-mobile, 420px);
		align-items: flex-end;
	}

	.clh-hero--layout-side .clh-hero__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.clh-hero__content {
		padding: 1.5rem 1rem;
	}
}
