body.single-nis_product {
	background: #384551;
}

body.single-nis_product #content .ast-container,
body.single-nis_product .site-content .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.single-nis_product .content-area,
body.single-nis_product .site-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	float: none;
}

.nqts-product-single {
	--nqts-product-bg: #384551;
	--nqts-product-teal: #00525E;
	--nqts-product-teal-bright: #27B4C1;
	--nqts-product-ink: #101c20;
	--nqts-product-muted: #52616a;
	--nqts-product-line: rgba(56, 69, 81, 0.16);
	--nqts-product-sticky-top: clamp(6.25rem, 4.8vw, 8.25rem);
	--nqts-product-peek: clamp(2.35rem, 3vw, 4rem);
	box-sizing: border-box;
	width: 100vw;
	max-width: none;
	margin: 0 calc(50% - 50vw);
	padding: 0;
	background: var(--nqts-product-bg);
	color: #ffffff;
	font-family: inherit;
	overflow: clip;
}

.nqts-product-single *,
.nqts-product-single *::before,
.nqts-product-single *::after {
	box-sizing: border-box;
}

.nqts-product-single__inner {
	width: min(100%, 1320px);
	max-width: 100%;
	margin: 0 auto;
	padding-inline: clamp(1.125rem, 4vw, 3rem);
}

.nqts-product-single__hero {
	padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(2.75rem, 4.5vw, 4.25rem);
}

.nqts-product-single__back {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1.35rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	letter-spacing: 0;
	transition: color 0.2s ease;
}

.nqts-product-single__back span {
	position: relative;
	width: 26px;
	height: 2px;
	background: currentColor;
}

.nqts-product-single__back span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.nqts-product-single__back:hover,
.nqts-product-single__back:focus-visible {
	color: #ffffff;
	outline: none;
}

.nqts-product-single__title {
	display: block;
	width: min(100%, 58rem);
	max-width: 100%;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.7rem, 4.6vw, 4.8rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0;
	overflow-wrap: break-word;
	text-wrap: balance;
}

.nqts-product-single h1.nqts-product-single__title {
	display: block;
	white-space: normal;
}

.nqts-product-single__body {
	padding: 0 0 clamp(5rem, 8vw, 8rem);
}

.nqts-product-single__cards {
	display: grid;
	gap: clamp(2.75rem, 6vw, 5.5rem);
}

.nqts-product-single__card {
	position: sticky;
	top: calc(var(--nqts-product-sticky-top) + (var(--nqts-product-card-index, 0) * var(--nqts-product-peek)));
	z-index: var(--nqts-product-card-z, 1);
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: stretch;
	grid-auto-rows: 1fr;
	min-height: clamp(31rem, 42vw, 39rem);
	overflow: clip;
	background: #ffffff;
	border: 1px solid var(--nqts-product-line);
	color: var(--nqts-product-ink);
	isolation: isolate;
	box-shadow: none;
	transition:
		transform 0.32s ease,
		box-shadow 0.32s ease,
		border-color 0.32s ease,
		opacity 0.32s ease;
}

.nqts-product-single.is-ready .nqts-product-single__card {
	opacity: 0.86;
	transform: translateY(18px);
}

.nqts-product-single.is-ready .nqts-product-single__card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.nqts-product-single__card:hover {
	border-color: rgba(0, 82, 94, 0.32);
	box-shadow: 0 24px 48px rgba(16, 28, 32, 0.2);
	transform: translateY(-4px);
}

.nqts-product-single.is-ready .nqts-product-single__card.is-visible:hover {
	transform: translateY(-4px);
}

.nqts-product-single__media {
	position: relative;
	min-width: 0;
	min-height: inherit;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 82, 94, 0.055) 1px, transparent 1px),
		linear-gradient(180deg, rgba(56, 69, 81, 0.045) 1px, transparent 1px),
		linear-gradient(135deg, #ffffff 0%, #f3f7f8 100%);
	background-size: 32px 32px, 32px 32px, auto;
}

.nqts-product-single__media::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 42%;
	height: 4px;
	background: var(--nqts-product-teal);
	transition:
		width 0.32s ease,
		background 0.32s ease;
}

.nqts-product-single__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(0, 82, 94, 0.13) 0%, rgba(0, 82, 94, 0.035) 34%, transparent 62%);
	pointer-events: none;
}

.nqts-product-single__card:hover .nqts-product-single__media::before {
	width: 70%;
	background: var(--nqts-product-teal-bright);
}

.nqts-product-single__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none !important;
	object-fit: contain;
	object-position: center;
	padding: clamp(2rem, 4vw, 4rem);
	mix-blend-mode: multiply;
	transform: scale(1.01);
	transition: transform 0.45s ease;
	-webkit-user-drag: none;
	user-select: none;
}

.nqts-product-single__card:hover .nqts-product-single__media img {
	transform: scale(1.045);
}

.nqts-product-single__placeholder {
	position: absolute;
	inset: clamp(3rem, 7vw, 6rem);
	border: 1px dashed rgba(0, 82, 94, 0.24);
	background: rgba(255, 255, 255, 0.48);
}

.nqts-product-single__placeholder span {
	position: absolute;
	inset: 31%;
	clip-path: polygon(0% 0%, 72% 0%, 100% 50%, 100% 100%, 28% 100%, 0% 50%);
	background: rgba(0, 82, 94, 0.1);
	transition:
		transform 0.36s ease,
		background 0.36s ease;
}

.nqts-product-single__card:hover .nqts-product-single__placeholder span {
	background: rgba(0, 82, 94, 0.14);
	transform: translateX(8px);
}

.nqts-product-single__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-width: 0;
	background:
		linear-gradient(90deg, rgba(0, 82, 94, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(56, 69, 81, 0.04) 1px, transparent 1px),
		#ffffff;
	background-size: 32px 32px, 32px 32px, auto;
}

.nqts-product-single__content-inner {
	width: min(100%, 44rem);
	max-width: 100%;
	min-width: 0;
	padding: clamp(2.75rem, 4.8vw, 4.5rem) clamp(2.25rem, 4.7vw, 4.35rem);
}

.nqts-product-single__content h2 {
	--nqts-title-sweep-base: #00525E;
	--nqts-title-sweep-accent: #27B4C1;
	--nqts-title-sweep-ghost: rgba(0, 82, 94, 0.22);
	margin: 0;
	max-width: 34rem;
	color: var(--nqts-product-teal);
	font-size: clamp(1.85rem, 1.9vw, 2.35rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: 0;
	text-transform: uppercase;
	text-wrap: balance;
	overflow-wrap: break-word;
}

.nqts-product-single__text {
	margin: 1.35rem 0 0;
	max-width: 38rem;
	color: var(--nqts-product-muted);
	font-size: clamp(1rem, 0.9vw, 1.08rem);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
}

.nqts-product-single__text > *:first-child {
	margin-top: 0;
}

.nqts-product-single__text > *:last-child {
	margin-bottom: 0;
}

.nqts-product-single__text ul {
	display: grid;
	gap: 0.5rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.nqts-product-single__text ul:first-child {
	margin-top: 0;
}

.nqts-product-single__text li {
	position: relative;
	margin: 0.38rem 0;
	padding-left: 1.15rem;
	max-width: 100%;
	overflow-wrap: break-word;
}

.nqts-product-single__text li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 0.35rem;
	height: 0.35rem;
	background: var(--nqts-product-teal);
	transform: translateY(-50%);
}

.nqts-product-single__empty {
	padding: 2rem;
	background: #ffffff;
	color: var(--nqts-product-muted);
}

@media (max-width: 1024px) {
	.nqts-product-single__card {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		min-height: clamp(29rem, 54vw, 35rem);
	}

	.nqts-product-single__content-inner {
		padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
	}
}

@media (max-width: 768px) {
	.nqts-product-single {
		--nqts-product-peek: 0;
		overflow: hidden;
	}

	.nqts-product-single__inner {
		padding-inline: 0;
	}

	.nqts-product-single__hero {
		padding: 3.5rem 1rem 2.25rem;
	}

	.nqts-product-single__title {
		width: min(100%, 34rem);
		max-width: 100%;
		font-size: clamp(1.8rem, 7vw, 2.35rem);
		line-height: 1.08;
		background-image: none;
		-webkit-text-fill-color: #ffffff;
		color: #ffffff;
	}

	.nqts-product-single__body {
		padding: 0 0 3.5rem;
	}

	.nqts-product-single__cards {
		gap: 1rem;
	}

	.nqts-product-single__card {
		position: relative;
		top: auto;
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		min-height: 0;
		border-left: 0;
		border-right: 0;
		box-shadow: none;
	}

	.nqts-product-single.is-ready .nqts-product-single__card,
	.nqts-product-single.is-ready .nqts-product-single__card.is-visible,
	.nqts-product-single__card:hover,
	.nqts-product-single.is-ready .nqts-product-single__card.is-visible:hover {
		transform: none;
	}

	.nqts-product-single__media {
		order: 2;
		height: clamp(17rem, 68vw, 23rem);
		min-height: 0;
	}

	.nqts-product-single__content {
		order: 1;
	}

	.nqts-product-single__content-inner {
		width: 100%;
		padding: 1.75rem 5rem 1.35rem 1.5rem;
	}

	.nqts-product-single__content h2 {
		font-size: clamp(1.35rem, 5.45vw, 1.75rem);
		line-height: 1.08;
		text-wrap: auto;
		overflow-wrap: break-word;
		max-width: 18rem;
	}

	.nqts-product-single__text {
		max-width: 17.25rem;
		font-size: 0.88rem;
		line-height: 1.45;
		overflow-wrap: break-word;
	}

	.nqts-product-single__placeholder {
		inset: 2rem 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nqts-product-single__card,
	.nqts-product-single__media::before,
	.nqts-product-single__media img,
	.nqts-product-single__placeholder span,
	.nqts-product-single__back {
		transition: none;
	}

	.nqts-product-single.is-ready .nqts-product-single__card {
		opacity: 1;
		transform: none;
	}
}
