.shs-slider {
	position: relative;
	box-sizing: border-box;
	width: var(--shs-viewport-width, 100vw) !important;
	height: max(90vh, var(--shs-desktop-height, 700px));
	min-height: 90vh;
	max-width: none !important;
	margin-right: calc(50% - var(--shs-viewport-half-width, 50vw)) !important;
	margin-left: calc(50% - var(--shs-viewport-half-width, 50vw)) !important;
	overflow: hidden;
	background: #e9e6e1;
	font-family: Arial, Helvetica, sans-serif;
}

.shs-slider *,
.shs-slider *::before,
.shs-slider *::after { box-sizing: border-box; }

.shs-slides,
.shs-slide,
.shs-media,
.shs-media picture,
.shs-image,
.shs-image-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.shs-slide {
	z-index: 0;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: opacity 500ms ease, visibility 0s linear 500ms;
}

.shs-slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.shs-image {
	display: block;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.shs-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #56524d;
	background: linear-gradient(135deg, #e8e4de, #cbc4ba);
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.shs-panel-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 6%;
	pointer-events: none;
}

.shs-panel-right .shs-panel-wrap { justify-content: flex-end; }

.shs-panel {
	width: 40%;
	min-width: 360px;
	max-width: 560px;
	padding: 48px 54px;
	background: rgba(255, 255, 255, .96);
	pointer-events: auto;
}

.shs-heading {
	margin: 0 0 22px;
	color: #1d1c1a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(52px, 5vw, 88px);
	font-weight: 400;
	line-height: 1;
	white-space: pre-line;
}

.shs-description {
	margin: 0 0 30px;
	color: #3f3d39;
	font-size: 17px;
	line-height: 1.5;
}

.shs-description > :first-child { margin-top: 0; }
.shs-description > :last-child { margin-bottom: 0; }

.shs-button {
	display: inline-block;
	padding: 14px 24px;
	border: 1px solid #1e1d1b;
	color: #fff;
	background: #1e1d1b;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, background-color 180ms ease;
}

.shs-button:hover,
.shs-button:focus-visible { color: #1e1d1b; background: #fff; }

.shs-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	width: 46px;
	height: 46px;
	padding: 0;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 0;
	border-radius: 50%;
	color: #171717;
	background: rgba(255,255,255,.9);
	cursor: pointer;
}

.shs-arrow:hover,
.shs-arrow:focus-visible { background: #fff; }
.shs-arrow:focus-visible,
.shs-dot:focus-visible,
.shs-button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
.shs-arrow:disabled { opacity: .4; cursor: default; }
.shs-arrow-prev { left: 24px; }
.shs-arrow-next { right: 24px; }
.shs-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.shs-dots {
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	z-index: 3;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.shs-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.95);
	border-radius: 50%;
	background: rgba(255,255,255,.35);
	box-shadow: 0 1px 4px rgba(0,0,0,.25);
	cursor: pointer;
	pointer-events: auto;
}

.shs-dot.is-active { background: #fff; transform: scale(1.2); }

@media (max-width: 1023px) and (min-width: 768px) {
	.shs-panel-wrap { padding: 5%; }
	.shs-panel { width: 44%; min-width: 320px; padding: 38px; }
	.shs-heading { font-size: clamp(44px, 6vw, 64px); }
}

@media (max-width: 767px) {
	.shs-slider {
		height: var(--shs-mobile-height, 600px);
		min-height: 500px;
		max-height: none;
		overflow: hidden;
	}

	.shs-slide {
		display: grid;
		grid-template-rows: minmax(0, 48%) minmax(0, 52%);
	}

	.shs-media,
	.shs-media picture,
	.shs-image,
	.shs-image-placeholder {
		position: relative;
		inset: auto;
	}

	.shs-panel-wrap,
	.shs-panel-right .shs-panel-wrap {
		position: relative;
		z-index: 2;
		display: block;
		padding: 0;
		background: #fff;
	}

	.shs-panel {
		width: 100%;
		height: 100%;
		min-width: 0;
		max-width: none;
		padding: 22px 22px 38px;
		background: #fff;
	}

	.shs-heading { margin-bottom: 12px; font-size: clamp(32px, 9vw, 46px); line-height: 1.02; }
	.shs-description { margin-bottom: 12px; font-size: 15px; }
	.shs-button { padding: 10px 16px; font-size: 11px; }
	.shs-arrow { top: 24%; width: 40px; height: 40px; }
	.shs-arrow-prev { left: 12px; }
	.shs-arrow-next { right: 12px; }
	.shs-dots { bottom: 15px; }
	.shs-dot { border-color: #57534d; background: rgba(40,38,35,.18); box-shadow: none; }
	.shs-dot.is-active { background: #292724; }
}

@media (prefers-reduced-motion: reduce) {
	.shs-slide,
	.shs-button { transition-duration: 0.01ms; }
}
