.ohc-home-showcase {
	--ohc-primary: #51A8B1;
	--ohc-accent: #93C7CC;
	--ohc-dark: #26383B;
	--ohc-text: #66757A;
	--ohc-button-hover: #51A8B1;
	--ohc-hs-section-py: 96px;
	--ohc-hs-mobile-py: 48px;
	--ohc-hs-shell-p: 42px;
	--ohc-hs-mobile-shell-p: 18px;
	--ohc-hs-shell-radius: 48px;
	--ohc-hs-card-radius: 36px;
	--ohc-hs-media-h: 500px;
	--ohc-hs-mobile-media-h: 300px;
	--ohc-hs-heading-size: 62px;
	--ohc-hs-heading-mobile: 40px;
	--ohc-hs-slide-title-size: 58px;
	--ohc-hs-slide-title-mobile: 36px;
	--ohc-hs-gap: 18px;
	--ohc-hs-grid-cols: 3;
	--ohc-hs-grid-cols-tablet: 2;
	--ohc-hs-grid-cols-mobile: 1;
	position: relative;
	padding: var(--ohc-hs-section-py) 20px;
	color: var(--ohc-dark);
}

.ohc-home-showcase,
.ohc-home-showcase * {
	box-sizing: border-box;
}

.ohc-home-showcase a,
.ohc-home-showcase a:visited,
.ohc-home-showcase a:hover,
.ohc-home-showcase a:focus,
.ohc-home-showcase a:active {
	text-decoration: none !important;
}

.ohc-home-showcase__shell {
	width: min(1240px, 100%);
	margin: 0 auto;
	padding: var(--ohc-hs-shell-p);
	border-radius: var(--ohc-hs-shell-radius);
	border: 1px solid rgba(81, 168, 177, 0.11);
	box-shadow: 0 34px 90px rgba(38, 56, 59, 0.07);
	overflow: hidden;
}

.ohc-home-showcase--style-soft .ohc-home-showcase__shell {
	background:
		radial-gradient(circle at 8% 10%, color-mix(in srgb, var(--ohc-accent) 25%, transparent), transparent 28%),
		radial-gradient(circle at 94% 8%, color-mix(in srgb, var(--ohc-primary) 14%, transparent), transparent 26%),
		linear-gradient(145deg, #fbfefe 0%, #eef8f8 100%);
}

.ohc-home-showcase--style-white .ohc-home-showcase__shell {
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 28px 68px rgba(38, 56, 59, 0.06);
}

.ohc-home-showcase--style-transparent .ohc-home-showcase__shell {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	padding-inline: 0;
}

.ohc-home-showcase--style-solid .ohc-home-showcase__shell {
	background: linear-gradient(145deg, color-mix(in srgb, var(--ohc-accent) 52%, white), color-mix(in srgb, var(--ohc-primary) 28%, white));
}

.ohc-home-showcase__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: end;
	margin-bottom: clamp(24px, 4vw, 40px);
}

.ohc-home-showcase--header-center .ohc-home-showcase__header {
	grid-template-columns: 1fr;
	text-align: center;
}

.ohc-home-showcase--header-center .ohc-home-showcase__copy,
.ohc-home-showcase--header-center .ohc-home-showcase__copy p,
.ohc-home-showcase--header-center .ohc-home-showcase__copy h2 {
	margin-left: auto;
	margin-right: auto;
}

.ohc-home-showcase--header-center .ohc-home-showcase__actions {
	justify-content: center;
}

.ohc-home-showcase__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid color-mix(in srgb, var(--ohc-primary) 16%, transparent);
	color: var(--ohc-primary);
	font-size: 13px;
	font-weight: 500;
}

.ohc-home-showcase__eyebrow span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ohc-primary);
	box-shadow: 0 0 0 6px color-mix(in srgb, var(--ohc-primary) 13%, transparent);
}

.ohc-home-showcase h2 {
	margin: 18px 0 14px;
	max-width: 760px;
	font-size: clamp(32px, 5vw, var(--ohc-hs-heading-size));
	line-height: 1.02;
	letter-spacing: -0.05em;
	font-weight: 520;
	color: var(--ohc-dark);
}

.ohc-home-showcase__copy p {
	margin: 0;
	max-width: 720px;
	font-size: clamp(16px, 1.45vw, 19px);
	line-height: 1.78;
	font-weight: 370;
	color: var(--ohc-text);
}

.ohc-home-showcase__actions,
.ohc-home-showcase-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ohc-home-showcase__actions {
	justify-content: flex-end;
}

.ohc-home-showcase .ohc-home-showcase__btn,
.ohc-home-showcase .ohc-home-showcase__btn:visited,
.ohc-home-showcase .ohc-home-showcase__btn:hover,
.ohc-home-showcase .ohc-home-showcase__btn:focus,
.ohc-home-showcase .ohc-home-showcase__btn:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 20px;
	border-radius: 999px;
	text-decoration: none !important;
	font-size: 14px;
	line-height: 1;
	font-weight: 520;
	outline: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ohc-home-showcase .ohc-home-showcase__btn:hover,
.ohc-home-showcase .ohc-home-showcase__btn:focus {
	transform: translateY(-2px);
}

.ohc-home-showcase .ohc-home-showcase__btn--dark,
.ohc-home-showcase .ohc-home-showcase__btn--dark:visited {
	background: var(--ohc-dark) !important;
	color: #fff !important;
	border: 1px solid var(--ohc-dark) !important;
	box-shadow: 0 16px 38px rgba(38, 56, 59, 0.18) !important;
}

.ohc-home-showcase .ohc-home-showcase__btn--dark:hover,
.ohc-home-showcase .ohc-home-showcase__btn--dark:focus,
.ohc-home-showcase .ohc-home-showcase__btn--dark:active {
	background: var(--ohc-button-hover) !important;
	color: #fff !important;
	border-color: var(--ohc-button-hover) !important;
	box-shadow: 0 18px 42px color-mix(in srgb, var(--ohc-button-hover) 25%, transparent) !important;
}

.ohc-home-showcase .ohc-home-showcase__btn--light,
.ohc-home-showcase .ohc-home-showcase__btn--light:visited {
	background: rgba(255, 255, 255, 0.82) !important;
	color: var(--ohc-dark) !important;
	border: 1px solid rgba(38, 56, 59, 0.12) !important;
	box-shadow: none !important;
}

.ohc-home-showcase .ohc-home-showcase__btn--light:hover,
.ohc-home-showcase .ohc-home-showcase__btn--light:focus,
.ohc-home-showcase .ohc-home-showcase__btn--light:active {
	background: #fff !important;
	color: var(--ohc-primary) !important;
	border-color: color-mix(in srgb, var(--ohc-primary) 35%, transparent) !important;
	box-shadow: 0 14px 34px rgba(38, 56, 59, 0.08) !important;
}

.ohc-home-showcase__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--ohc-hs-gap);
	align-items: start;
}

.ohc-home-showcase--nav-bottom .ohc-home-showcase__layout,
.ohc-home-showcase--nav-hidden .ohc-home-showcase__layout {
	grid-template-columns: 1fr;
}

.ohc-home-showcase--nav-bottom .ohc-home-showcase__nav {
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.ohc-home-showcase--no-media .ohc-home-showcase-slide {
	grid-template-columns: 1fr;
}

.ohc-home-showcase__stage {
	min-width: 0;
}

.ohc-home-showcase-slide {
	display: none;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(18px, 3vw, 30px);
	padding: clamp(20px, 3vw, 32px);
	border-radius: var(--ohc-hs-card-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 252, 252, 0.96)),
		radial-gradient(circle at 85% 18%, color-mix(in srgb, var(--ohc-primary) 11%, transparent), transparent 32%);
	border: 1px solid rgba(38, 56, 59, 0.075);
	box-shadow: 0 24px 74px rgba(38, 56, 59, 0.075);
}

.ohc-home-showcase--media-left .ohc-home-showcase-slide__media {
	order: -1;
}

.ohc-home-showcase-slide.is-active {
	display: grid;
}

.ohc-home-showcase-slide__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ohc-home-showcase-slide__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.ohc-home-showcase-slide__icon,
.ohc-home-showcase-nav-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--ohc-primary) 10%, transparent);
	color: var(--ohc-primary);
	flex: 0 0 auto;
}

.ohc-home-showcase-slide__icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
}

.ohc-home-showcase-slide__icon svg,
.ohc-home-showcase-nav-card__icon svg {
	fill: none;
	stroke: currentColor;
}

.ohc-home-showcase-slide__icon svg {
	width: 26px;
	height: 26px;
}

.ohc-home-showcase-slide__label,
.ohc-home-showcase-slide__tag {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
}

.ohc-home-showcase-slide__label {
	background: rgba(38, 56, 59, 0.055);
	color: rgba(38, 56, 59, 0.68);
}

.ohc-home-showcase-slide__tag {
	background: color-mix(in srgb, var(--ohc-primary) 12%, transparent);
	color: var(--ohc-primary);
}

.ohc-home-showcase-slide h3 {
	margin: 24px 0 14px;
	max-width: 520px;
	font-size: clamp(30px, 4.4vw, var(--ohc-hs-slide-title-size));
	line-height: 0.98;
	letter-spacing: -0.05em;
	font-weight: 520;
	color: var(--ohc-dark);
}

.ohc-home-showcase-slide p,
.ohc-home-showcase-card p {
	margin: 0;
	max-width: 520px;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.78;
	font-weight: 370;
	color: var(--ohc-text);
}

.ohc-home-showcase-slide__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.ohc-home-showcase-slide__chips span {
	padding: 10px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(38, 56, 59, 0.075);
	font-size: 12px;
	font-weight: 480;
	color: rgba(38, 56, 59, 0.72);
}

.ohc-home-showcase-slide__actions {
	align-items: center;
	margin-top: auto;
	padding-top: 28px;
}

.ohc-home-showcase .ohc-home-showcase__link,
.ohc-home-showcase .ohc-home-showcase__link:visited {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ohc-primary) !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 520;
}

.ohc-home-showcase .ohc-home-showcase__link:hover,
.ohc-home-showcase .ohc-home-showcase__link:focus {
	color: var(--ohc-dark) !important;
}

.ohc-home-showcase-slide__media {
	position: relative;
	min-height: var(--ohc-hs-media-h);
	border-radius: calc(var(--ohc-hs-card-radius) - 8px);
	overflow: hidden;
	background:
		radial-gradient(circle at 16% 18%, color-mix(in srgb, var(--ohc-accent) 28%, transparent), transparent 26%),
		linear-gradient(145deg, #eaf6f6, #ddeff0);
	border: 1px solid color-mix(in srgb, var(--ohc-primary) 13%, transparent);
}

.ohc-home-showcase-slide__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ohc-home-showcase--image-contain .ohc-home-showcase-slide__image {
	object-fit: contain;
	padding: 24px;
}

.ohc-home-showcase-slide__placeholder {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	width: 100%;
	height: 100%;
	padding: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.72)),
		radial-gradient(circle at 82% 14%, color-mix(in srgb, var(--ohc-primary) 17%, transparent), transparent 28%);
}

.ohc-home-showcase-slide__placeholder span {
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.84);
	color: var(--ohc-primary);
	font-size: 12px;
	font-weight: 520;
}

.ohc-home-showcase-slide__placeholder strong {
	max-width: 360px;
	font-size: 30px;
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 520;
	color: var(--ohc-dark);
}

.ohc-home-showcase-slide__placeholder small {
	max-width: 360px;
	font-size: 14px;
	line-height: 1.65;
	font-weight: 370;
	color: var(--ohc-text);
}

.ohc-home-showcase__nav {
	display: grid;
	gap: 12px;
}

.ohc-home-showcase-nav-card {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 16px;
	border: 1px solid rgba(38, 56, 59, 0.075);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.72);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(38, 56, 59, 0.04);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ohc-home-showcase-nav-card:hover,
.ohc-home-showcase-nav-card.is-active {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.94);
	border-color: color-mix(in srgb, var(--ohc-primary) 22%, transparent);
	box-shadow: 0 14px 34px rgba(38, 56, 59, 0.075);
}

.ohc-home-showcase-nav-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 15px;
}

.ohc-home-showcase-nav-card__icon svg {
	width: 22px;
	height: 22px;
}

.ohc-home-showcase-nav-card strong,
.ohc-home-showcase-nav-card small {
	display: block;
}

.ohc-home-showcase-nav-card strong {
	font-size: 15px;
	line-height: 1.25;
	font-weight: 520;
	color: var(--ohc-dark);
}

.ohc-home-showcase-nav-card small {
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 430;
	color: rgba(102, 117, 122, 0.88);
}

.ohc-home-showcase__mobile-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}

.ohc-home-showcase--nav-hidden .ohc-home-showcase__mobile-controls {
	justify-content: center;
}

.ohc-home-showcase__arrow {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(38, 56, 59, 0.1);
	background: rgba(255, 255, 255, 0.85);
	color: var(--ohc-dark);
	cursor: pointer;
}

.ohc-home-showcase__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	flex: 1;
}

.ohc-home-showcase__dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: rgba(38, 56, 59, 0.18);
	padding: 0;
	cursor: pointer;
}

.ohc-home-showcase__dot.is-active {
	background: var(--ohc-primary);
	transform: scale(1.2);
}

.ohc-home-showcase-grid {
	display: grid;
	grid-template-columns: repeat(var(--ohc-hs-grid-cols), minmax(0, 1fr));
	gap: var(--ohc-hs-gap);
}

.ohc-home-showcase-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border-radius: var(--ohc-hs-card-radius);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(38, 56, 59, 0.075);
	box-shadow: 0 18px 46px rgba(38, 56, 59, 0.055);
	overflow: hidden;
}

.ohc-home-showcase-card.is-featured {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 250, 0.96)),
		radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--ohc-primary) 12%, transparent), transparent 30%);
}

.ohc-home-showcase-card__media {
	display: block;
	height: min(260px, var(--ohc-hs-media-h));
	background: linear-gradient(145deg, #eaf6f6, #ddeff0);
	overflow: hidden;
}

.ohc-home-showcase-card__media .ohc-home-showcase-slide__image {
	height: 100%;
}

.ohc-home-showcase-card__placeholder {
	height: 100%;
	background:
		radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--ohc-primary) 14%, transparent), transparent 30%),
		linear-gradient(145deg, #eaf6f6, #ddeff0);
}

.ohc-home-showcase-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(20px, 3vw, 28px);
}

.ohc-home-showcase-card h3 {
	margin: 20px 0 12px;
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.08;
	letter-spacing: -0.035em;
	font-weight: 520;
	color: var(--ohc-dark);
}

.ohc-home-showcase-card h3 a,
.ohc-home-showcase-card h3 a:visited {
	color: inherit !important;
}

.ohc-home-showcase-grid--minimal .ohc-home-showcase-card {
	box-shadow: none;
	background: rgba(255, 255, 255, 0.62);
}

.ohc-home-showcase-grid--minimal .ohc-home-showcase-card__media {
	height: 180px;
}

@media (max-width: 1100px) {
	.ohc-home-showcase__layout,
	.ohc-home-showcase--nav-bottom .ohc-home-showcase__layout,
	.ohc-home-showcase--nav-hidden .ohc-home-showcase__layout {
		grid-template-columns: 1fr;
	}

	.ohc-home-showcase__nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ohc-home-showcase-grid {
		grid-template-columns: repeat(var(--ohc-hs-grid-cols-tablet), minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.ohc-home-showcase {
		padding: var(--ohc-hs-mobile-py) 12px;
	}

	.ohc-home-showcase__shell {
		padding: var(--ohc-hs-mobile-shell-p);
		border-radius: min(var(--ohc-hs-shell-radius), 30px);
	}

	.ohc-home-showcase__header {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 22px;
	}

	.ohc-home-showcase__actions {
		justify-content: flex-start;
	}

	.ohc-home-showcase--header-center .ohc-home-showcase__actions {
		justify-content: center;
	}

	.ohc-home-showcase h2 {
		font-size: clamp(28px, 10vw, var(--ohc-hs-heading-mobile));
		line-height: 1.04;
		letter-spacing: -0.045em;
	}

	.ohc-home-showcase__copy p {
		font-size: 15px;
		line-height: 1.72;
	}

	.ohc-home-showcase-slide {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 14px;
		border-radius: min(var(--ohc-hs-card-radius), 26px);
	}

	.ohc-home-showcase--mobile-media-top .ohc-home-showcase-slide__media {
		order: -1;
	}

	.ohc-home-showcase--mobile-media-bottom .ohc-home-showcase-slide__media {
		order: 2;
	}

	.ohc-home-showcase--mobile-media-hide .ohc-home-showcase-slide__media,
	.ohc-home-showcase--mobile-nav-hidden .ohc-home-showcase__nav,
	.ohc-home-showcase--mobile-nav-hidden .ohc-home-showcase__mobile-controls,
	.ohc-home-showcase--mobile-nav-dots .ohc-home-showcase__nav {
		display: none;
	}

	.ohc-home-showcase-slide__media {
		min-height: var(--ohc-hs-mobile-media-h);
		height: var(--ohc-hs-mobile-media-h);
		border-radius: min(var(--ohc-hs-card-radius), 22px);
	}

	.ohc-home-showcase-slide__content {
		padding: 6px 4px 8px;
	}

	.ohc-home-showcase-slide__icon {
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}

	.ohc-home-showcase-slide h3 {
		margin-top: 18px;
		font-size: clamp(28px, 9vw, var(--ohc-hs-slide-title-mobile));
		line-height: 1.02;
	}

	.ohc-home-showcase-slide p {
		font-size: 15px;
		line-height: 1.72;
	}

	.ohc-home-showcase-slide__chips {
		gap: 8px;
		margin-top: 18px;
	}

	.ohc-home-showcase-slide__chips span {
		font-size: 11px;
		padding: 9px 10px;
	}

	.ohc-home-showcase-slide__actions {
		padding-top: 22px;
	}

	.ohc-home-showcase .ohc-home-showcase__btn {
		min-height: 46px;
		padding: 13px 17px;
	}

	.ohc-home-showcase__nav {
		display: flex;
		overflow-x: auto;
		gap: 10px;
		padding: 2px 2px 8px;
		margin-top: 16px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.ohc-home-showcase-nav-card {
		min-width: 230px;
		max-width: 250px;
		flex: 0 0 auto;
		scroll-snap-align: start;
		padding: 13px;
		border-radius: 20px;
	}

	.ohc-home-showcase-grid {
		grid-template-columns: repeat(var(--ohc-hs-grid-cols-mobile), minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.ohc-home-showcase {
		padding-left: 10px;
		padding-right: 10px;
	}

	.ohc-home-showcase__actions,
	.ohc-home-showcase-slide__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ohc-home-showcase .ohc-home-showcase__btn,
	.ohc-home-showcase .ohc-home-showcase__link {
		width: 100%;
		justify-content: center;
	}

	.ohc-home-showcase-slide__placeholder {
		padding: 18px;
	}

	.ohc-home-showcase-slide__placeholder strong {
		font-size: 24px;
	}

	.ohc-home-showcase-nav-card {
		min-width: 215px;
	}
}


/* v3.6.4 surgical refinements: stable carousel UX, cleaner media alignment, safer hover states. */
.ohc-home-showcase--style-soft .ohc-home-showcase__shell {
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 22px 58px rgba(38, 56, 59, .052);
}

.ohc-home-showcase-slide {
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 50px rgba(38, 56, 59, .055);
}

.ohc-home-showcase-slide h3 a,
.ohc-home-showcase-slide h3 a:visited {
	color: inherit !important;
	text-decoration: none !important;
}

.ohc-home-showcase-slide h3 a:hover,
.ohc-home-showcase-slide h3 a:focus {
	color: var(--ohc-primary) !important;
}

.ohc-home-showcase-slide__media {
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, #edf8f8, #e3f2f3);
}

.ohc-home-showcase-slide__image {
	width: 100%;
	height: 100%;
	object-position: center center;
}

.ohc-home-showcase--image-contain .ohc-home-showcase-slide__image {
	object-fit: contain;
	padding: clamp(14px, 2vw, 24px);
}

.ohc-home-showcase-nav-card:hover,
.ohc-home-showcase-nav-card.is-active {
	background: linear-gradient(145deg, #ffffff, color-mix(in srgb, var(--ohc-accent) 16%, #ffffff));
	border-color: color-mix(in srgb, var(--ohc-primary) 58%, transparent);
	box-shadow: 0 14px 32px rgba(38, 56, 59, .065);
}

.ohc-home-showcase-nav-card:hover .ohc-home-showcase-nav-card__icon,
.ohc-home-showcase-nav-card.is-active .ohc-home-showcase-nav-card__icon {
	background: #ffffff;
	color: var(--ohc-primary);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ohc-primary) 18%, transparent);
}

.ohc-home-showcase-nav-card:hover strong,
.ohc-home-showcase-nav-card.is-active strong {
	color: var(--ohc-dark);
}

.ohc-home-showcase-nav-card:hover small,
.ohc-home-showcase-nav-card.is-active small {
	color: rgba(102, 117, 122, .92);
}

.ohc-home-showcase__mobile-controls {
	align-items: center;
}

.ohc-home-showcase__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 18px;
	border: 1.5px solid var(--ohc-primary);
	background: #fff;
	color: var(--ohc-primary);
	box-shadow: 0 8px 20px rgba(38, 56, 59, .045);
	transition: transform .18s ease, box-shadow .18s ease;
}

.ohc-home-showcase__arrow:hover,
.ohc-home-showcase__arrow:focus {
	transform: translateY(-1px);
	background: #fff;
	color: var(--ohc-primary);
	border-color: var(--ohc-primary);
	box-shadow: 0 10px 24px rgba(38, 56, 59, .06);
}

@media (max-width: 820px) {
	.ohc-home-showcase-slide__media {
		min-height: min(var(--ohc-hs-mobile-media-h), 270px);
		height: min(var(--ohc-hs-mobile-media-h), 270px);
	}

	.ohc-home-showcase-slide__image {
		object-position: center center;
	}

	.ohc-home-showcase__mobile-controls {
		gap: 10px;
	}

	.ohc-home-showcase__arrow {
		width: 42px;
		height: 42px;
		font-size: 17px;
		flex: 0 0 42px;
	}
}

@media (max-width: 480px) {
	.ohc-home-showcase-slide__media {
		min-height: min(var(--ohc-hs-mobile-media-h), 235px);
		height: min(var(--ohc-hs-mobile-media-h), 235px);
	}
}

/* v3.6.5: interaction polish, no page-level horizontal scroll, refined navigation states. */
.ohc-home-showcase {
	max-width: 100%;
	overflow-x: clip;
}

@supports not (overflow: clip) {
	.ohc-home-showcase { overflow-x: hidden; }
}

.ohc-home-showcase__shell {
	max-width: 100%;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(38, 56, 59, .055);
}

.ohc-home-showcase--style-soft .ohc-home-showcase__shell {
	background:
		radial-gradient(circle at 8% 10%, rgba(147, 199, 204, .16), transparent 26%),
		linear-gradient(145deg, #fbfefe 0%, #f3fbfb 100%);
}

.ohc-home-showcase__stage {
	max-width: 100%;
	min-width: 0;
	touch-action: pan-y;
}

.ohc-home-showcase-slide {
	box-shadow: 0 18px 54px rgba(38, 56, 59, .055);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(249, 253, 253, .98)),
		radial-gradient(circle at 86% 20%, rgba(81, 168, 177, .075), transparent 34%);
}

.ohc-home-showcase-slide__media {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #effafa 0%, #dff1f2 100%);
}

.ohc-home-showcase-slide__image {
	width: 100%;
	height: 100%;
	object-position: center center;
}

.ohc-home-showcase--image-contain .ohc-home-showcase-slide__image {
	object-fit: contain;
	padding: clamp(16px, 2.2vw, 30px);
}

.ohc-home-showcase-slide h3 a,
.ohc-home-showcase-slide h3 a:visited {
	color: var(--ohc-dark) !important;
	text-decoration: none !important;
}

.ohc-home-showcase-slide h3 a:hover,
.ohc-home-showcase-slide h3 a:focus-visible {
	color: var(--ohc-primary) !important;
}

.ohc-home-showcase .ohc-home-showcase__btn:focus:not(:focus-visible),
.ohc-home-showcase .ohc-home-showcase__btn:active,
.ohc-home-showcase .ohc-home-showcase__link:focus:not(:focus-visible),
.ohc-home-showcase .ohc-home-showcase__link:active {
	outline: none;
}

.ohc-home-showcase__header .ohc-home-showcase__btn--light,
.ohc-home-showcase__header .ohc-home-showcase__btn--light:visited {
	min-height: 52px;
	padding: 15px 24px;
	background: #fff !important;
	color: var(--ohc-dark) !important;
	border: 1.5px solid rgba(81, 168, 177, .58) !important;
	box-shadow: 0 12px 30px rgba(38, 56, 59, .055) !important;
}

.ohc-home-showcase__header .ohc-home-showcase__btn--light:hover,
.ohc-home-showcase__header .ohc-home-showcase__btn--light:focus-visible {
	background: var(--ohc-primary) !important;
	color: #fff !important;
	border-color: var(--ohc-primary) !important;
	box-shadow: 0 18px 42px rgba(81, 168, 177, .20) !important;
}

.ohc-home-showcase__header .ohc-home-showcase__btn--light:focus:not(:focus-visible),
.ohc-home-showcase__header .ohc-home-showcase__btn--light:active {
	background: #fff !important;
	color: var(--ohc-dark) !important;
	border-color: rgba(81, 168, 177, .58) !important;
	box-shadow: 0 12px 30px rgba(38, 56, 59, .055) !important;
}

.ohc-home-showcase-nav-card {
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, .92);
	border-color: rgba(81, 168, 177, .20);
	box-shadow: 0 10px 26px rgba(38, 56, 59, .035);
	transform: none;
	transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ohc-home-showcase-nav-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 0;
	border-radius: 0 999px 999px 0;
	background: var(--ohc-primary);
	transition: width .18s ease;
}

.ohc-home-showcase-nav-card:hover:not(.is-active) {
	background: #f6fcfc;
	border-color: rgba(81, 168, 177, .42);
	box-shadow: 0 14px 32px rgba(38, 56, 59, .055);
	transform: translateX(-2px);
}

.ohc-home-showcase-nav-card:hover:not(.is-active)::before {
	width: 3px;
}

.ohc-home-showcase-nav-card.is-active,
.ohc-home-showcase-nav-card.is-active:hover,
.ohc-home-showcase-nav-card:focus-visible {
	background: linear-gradient(135deg, #eefafa 0%, #ffffff 100%);
	border-color: var(--ohc-primary);
	box-shadow: 0 18px 42px rgba(38, 56, 59, .075);
	transform: translateX(-4px);
}

.ohc-home-showcase-nav-card.is-active::before,
.ohc-home-showcase-nav-card:focus-visible::before {
	width: 5px;
}

.ohc-home-showcase-nav-card:focus:not(:focus-visible),
.ohc-home-showcase-nav-card:active {
	outline: none;
}

.ohc-home-showcase-nav-card:hover .ohc-home-showcase-nav-card__icon,
.ohc-home-showcase-nav-card:focus-visible .ohc-home-showcase-nav-card__icon {
	background: rgba(81, 168, 177, .13);
	color: var(--ohc-primary);
}

.ohc-home-showcase-nav-card.is-active .ohc-home-showcase-nav-card__icon,
.ohc-home-showcase-nav-card.is-active:hover .ohc-home-showcase-nav-card__icon {
	background: var(--ohc-primary);
	color: #fff;
}

.ohc-home-showcase-nav-card:hover strong,
.ohc-home-showcase-nav-card.is-active strong {
	color: var(--ohc-dark);
}

.ohc-home-showcase-nav-card:hover small,
.ohc-home-showcase-nav-card.is-active small {
	color: rgba(102, 117, 122, .92);
}

.ohc-home-showcase__arrow,
.ohc-home-showcase__arrow:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	background: #fff !important;
	color: var(--ohc-primary) !important;
	border-color: rgba(81, 168, 177, .85) !important;
}

.ohc-home-showcase__arrow:hover,
.ohc-home-showcase__arrow:focus-visible {
	background: #fff !important;
	color: var(--ohc-primary) !important;
	border-color: var(--ohc-primary) !important;
	box-shadow: 0 12px 30px rgba(38, 56, 59, .08);
}

.ohc-home-showcase__arrow:focus:not(:focus-visible),
.ohc-home-showcase__arrow:active {
	background: #fff !important;
	color: var(--ohc-primary) !important;
	border-color: rgba(81, 168, 177, .85) !important;
	box-shadow: none;
	outline: none;
}

@media (max-width: 820px) {
	.ohc-home-showcase {
		overflow-x: hidden;
	}

	.ohc-home-showcase__shell {
		overflow: hidden;
	}

	.ohc-home-showcase__nav {
		overflow-x: visible !important;
		-webkit-overflow-scrolling: auto !important;
	}

	.ohc-home-showcase--mobile-nav-cards .ohc-home-showcase__nav {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0;
	}

	.ohc-home-showcase-nav-card {
		min-width: 0 !important;
		max-width: 100% !important;
		width: 100%;
		transform: none !important;
	}

	.ohc-home-showcase-nav-card.is-active,
	.ohc-home-showcase-nav-card.is-active:hover {
		transform: none !important;
	}

	.ohc-home-showcase-slide__media {
		align-items: center;
		justify-content: center;
	}

	.ohc-home-showcase-slide__image {
		object-position: center center;
	}
}

@media (max-width: 480px) {
	.ohc-home-showcase__header .ohc-home-showcase__btn--light {
		width: 100%;
		justify-content: center;
	}
}
