/* Hero Split Slider — widget-style.css */

.ehs-slider-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ehs-slider-wrapper.ehs-is-full-screen .ehs-slide-inner {
	height: min(100vh, 600px);
	min-height: 420px;
	max-height: 600px;
}

.ehs-slick-slider .slick-slide > div {
	line-height: 0;
}

.ehs-slide-inner {
	position: relative;
	display: flex;
	width: 100%;
	height: min(600px, 72vh);
	max-height: 600px;
	min-height: 600px;
}

/* ---- Left content panel ---- */
.ehs-slide-left {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	padding: 60px 5%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0) 100%);
	box-sizing: border-box;
}

.ehs-has-title-overlap .ehs-slide-left {
	padding-right: 28%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.89) 0%, rgba(255, 255, 255, 0.56) 46%, rgba(255, 255, 255, 0.32) 62%, rgba(255, 255, 255, 0) 100%);
	box-shadow: none;
}

.ehs-play-btn {
	--ehs-glow-color: rgba(17, 17, 17, 0.35);
	appearance: none;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #111111;
	line-height: 0;
	color: #111111;
	background: #ffffff;
	text-decoration: none;
	box-shadow: 0 0 0 0 var(--ehs-glow-color);
	transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
	animation: ehs-glow-pulse 2.5s ease-in-out infinite;
	cursor: pointer;
}

.ehs-play-btn:hover {
	background-color: #111111;
	color: #ffffff;
	transform: translateY(-1px) scale(1.04);
	box-shadow: 0 0 0 10px var(--ehs-glow-color);
}

.ehs-play-btn:focus-visible,
.ehs-slide-nav__item:focus-visible,
.ehs-video-modal__close:focus-visible {
	outline: 2px solid #111111;
	outline-offset: 3px;
}

.ehs-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6b6b6b;
	letter-spacing: .02em;
}

.ehs-meta .ehs-dot {
	color: #e0224e;
	font-size: 10px;
}

.ehs-title {
	font-size: clamp(34px, 4vw, 64px);
	line-height: 1.05;
	font-weight: 800;
	color: #111111;
	margin: 0;
	word-break: break-word;
}

.ehs-open-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #111111;
	text-decoration: none;
	width: fit-content;
	transition: color .25s ease, gap .25s ease;
}

.ehs-open-link:hover {
	color: #e0224e;
	gap: 16px;
}

.ehs-open-link svg {
	flex-shrink: 0;
}

.ehs-has-title-overlap .ehs-title {
	font-size: clamp(64px, 7vw, 108px);
	line-height: .92;
	letter-spacing: -0.05em;
}
.ehs-content {
    display: block;
    line-height: 20px;
	padding:15px 0;
}

.ehs-title--overlap {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: none;
	margin: 2px 0 4px 0;
	padding: 6px 12px 6px 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0) 100%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	text-wrap: balance;
	box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.0);
	max-width: none;
	pointer-events: none;
	align-self: flex-start;
	margin-left: 0;
	margin-right: 0;
	transform: translateX(0);
	filter: none;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
	white-space: normal;
}

.ehs-title--overlap::before {
	content: '';
	position: absolute;
	inset: -10px -18px -10px 0;
	filter: blur(6px);
	pointer-events: none;
}

/* ---- Right image panel ---- */
.ehs-slide-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 68%;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.ehs-slide-right::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0);
	pointer-events: none;
}

.ehs-overlay-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.ehs-overlay-content img {
	max-width: 100%;
	height: auto;
}

.ehs-slide-nav {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 30px;
	z-index: 7;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 45px;
	padding-right: 0;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
}

.ehs-slide-nav::-webkit-scrollbar {
	display: none;
}

.ehs-slide-nav__item {
	appearance: none;
	border: 0;
	background: rgba(8, 10, 18, 0.18);
	backdrop-filter: blur(8px);
	border-radius: 0px;
	padding: 10px 6px;
	flex: 1 1 0;
	min-height: 0;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	cursor: pointer;
	transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
}

.ehs-slide-nav__item:hover,
.ehs-slide-nav__item.is-active {
	background: rgba(8, 10, 18, 0.42);
	transform: translateX(0px);
}

.ehs-slide-nav__number {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.ehs-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ehs-video-modal[hidden] {
	display: none;
}

.ehs-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 10, 18, 0.82);
}

.ehs-video-modal__panel {
	position: relative;
	z-index: 1;
	width: min(1100px, calc(100vw - 48px));
	height: min(88vh, 620px);
	border-radius: 24px;
	overflow: hidden;
	background: #000000;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.ehs-video-modal__media,
.ehs-video-modal__media iframe {
	width: 100%;
	height: 100%;
}

.ehs-video-modal__media iframe {
	display: block;
	border: 0;
}

.ehs-video-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

@keyframes ehs-glow-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 var(--ehs-glow-color);
	}
	50% {
		box-shadow: 0 0 0 12px var(--ehs-glow-color);
	}
}

/* ---- Slick arrow/dot tweaks to sit nicely on this layout ---- */
.ehs-slick-slider .slick-prev,
.ehs-slick-slider .slick-next {
	z-index: 5;
	width: 44px;
	height: 44px;
}

.ehs-slick-slider .slick-prev {
	left: 20px;
}

.ehs-slick-slider .slick-next {
	right: 20px;
}

.ehs-slick-slider .slick-prev:before,
.ehs-slick-slider .slick-next:before {
	font-size: 32px;
	opacity: 1;
}

.ehs-slick-slider .slick-dots {
	bottom: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.ehs-title--overlap {
		width: 100%;
		font-size: clamp(46px, 8vw, 78px);
	}

	.ehs-has-title-overlap .ehs-slide-left {
		padding: 40px 24px;
		padding-right: 24%;
	}

	.ehs-slide-nav {
		top: auto;
		right: 16px;
		left: 16px;
		bottom: 16px;
		width: auto;
		height: 110px;
		flex-direction: row;
		overflow-x: auto;
		overflow-y: hidden;
		padding-right: 0;
	}

	.ehs-slide-nav__item {
		min-width: 88px;
		flex: 1 1 0;
	}

	.ehs-slide-nav__item:hover,
	.ehs-slide-nav__item.is-active {
		transform: translateY(-3px);
	}

	.ehs-video-modal {
		padding: 14px;
	}

	.ehs-video-modal__panel {
		width: calc(100vw - 28px);
		height: min(78vh, 520px);
	}

	.ehs-slide-left,
	.ehs-slide-right {
		width: 100% !important;
	}
	.ehs-slide-inner {
		flex-direction: column;
		min-height: auto;
	}
	.ehs-slide-right {
		min-height: 360px;
	}
	.ehs-slide-left {
		padding: 40px 24px;
		gap: 16px;
	}
}

@media (max-width: 767px) {
	.ehs-has-title-overlap .ehs-title {
		font-size: clamp(38px, 11vw, 58px);
	}

	.ehs-title--overlap {
		padding-right: 0;
		font-size: clamp(34px, 10vw, 52px);
	}

	.ehs-has-title-overlap .ehs-slide-left {
		padding: 36px 16px;
		padding-right: 16px;
	}

	.ehs-slide-nav {
		height: 35px;
	}

	.ehs-video-modal__panel {
		height: min(72vh, 420px);
	}
	
	.ehs-slide-right {
    position: relative;
		        background-size: 100%;
	}
	.ehs-title{
		line-height:30px;
	}
	
	 .ehs-has-title-overlap .ehs-slide-left {
        padding: 0px 16px;
        height: auto;
    }
	
	.ehs-slide-inner {
	height: min(420px, 72vh);
	max-height: 420px;
	min-height: 420px;
}
	
	    .ehs-slide-right {
        min-height:320px;
    }
}
