/* CM Laboratory Hero Widget - Full Editorial-style layout */

.cm-lab-hero {
	position: relative;
	width: 100%;
	min-height: 680px;
	background-color: #05070d;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: #fff;
	isolation: isolate;
	font-size: 16px;
}

.cm-lab-hero * {
	box-sizing: border-box;
}

.cm-lab-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .76) 34%, rgba(0, 0, 0, .28) 68%, rgba(0, 0, 0, .08) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .22) 46%, rgba(0, 0, 0, .14) 100%);
}

.cm-lab-hero--overlay-light .cm-lab-hero__shade {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .46) 38%, rgba(0, 0, 0, .14) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .12) 60%, rgba(0, 0, 0, .08) 100%);
}

.cm-lab-hero--overlay-medium .cm-lab-hero__shade {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .62) 38%, rgba(0, 0, 0, .18) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .16) 60%, rgba(0, 0, 0, .1) 100%);
}

.cm-lab-hero__content {
	position: absolute;
	left: clamp(20px, 5.4vw, 76px);
	bottom: 168px;
	z-index: 2;
	width: min(640px, calc(100% - 40px));
}

.cm-lab-hero--position-middle_left .cm-lab-hero__content {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.cm-lab-hero h1 {
	margin: 0 0 18px;
	color: inherit;
	font-family: inherit;
	font-size: clamp(52px, 7vw, 96px);
	font-weight: 800;
	line-height: .88;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.cm-lab-hero p {
	margin: 0 0 24px;
	max-width: 590px;
	color: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.cm-lab-hero__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 11px 17px 12px;
	border: 0;
	border-radius: 4px;
	background: #d83933;
	color: #fff !important;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: none;
	transition: transform .18s ease, filter .18s ease;
}

.cm-lab-hero__button:hover,
.cm-lab-hero__button:focus {
	color: #fff !important;
	text-decoration: none !important;
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.cm-lab-hero__button-icon {
	font-size: 24px;
	line-height: 1;
	margin-top: -1px;
}

.cm-lab-hero__links {
	position: absolute;
	left: clamp(20px, 5.4vw, 76px);
	right: clamp(20px, 5.4vw, 76px);
	bottom: 42px;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 46px);
}

.cm-lab-hero__link {
	display: block;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .38);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
}

.cm-lab-hero__link:hover,
.cm-lab-hero__link:focus {
	color: #fff !important;
	text-decoration: none !important;
}

.cm-lab-hero__link-label {
	display: block;
	margin: 0 0 8px;
	color: rgba(255, 255, 255, .78);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.cm-lab-hero__link-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.cm-lab-hero__link-text span {
	font-size: 24px;
	line-height: 1;
}


@media (max-width: 1024px) {
	.cm-lab-hero {
		min-height: 640px;
	}

	.cm-lab-hero__links {
		gap: 22px;
	}

}

@media (max-width: 767px) {
	.cm-lab-hero {
		min-height: 760px;
		background-position: center center;
	}

	.cm-lab-hero__shade {
		background:
			linear-gradient(0deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .62) 48%, rgba(0, 0, 0, .30) 100%),
			linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22));
	}

	.cm-lab-hero__content,
	.cm-lab-hero--position-middle_left .cm-lab-hero__content {
		left: 20px;
		right: 20px;
		top: auto;
		bottom: 306px;
		transform: none;
		width: auto;
		max-width: none;
	}

	.cm-lab-hero h1 {
		font-size: clamp(44px, 13vw, 64px);
		line-height: .91;
		letter-spacing: -0.045em;
	}

	.cm-lab-hero p {
		max-width: none;
		font-size: 16px;
	}

	.cm-lab-hero__links {
		left: 20px;
		right: 20px;
		bottom: 28px;
		grid-template-columns: 1fr;
		gap: 17px;
	}

	.cm-lab-hero__link {
		padding-top: 12px;
	}


}


.cm-lab-hero--listener {
	margin: 0;
}

.cm-lab-hero--listener{margin:0;}
