/*
 * Product anchor navigation enhancements.
 * Add these classes in the visual editor:
 * .hs-product-page, .hs-product-layout, .hs-product-sidebar, .hs-product-content,
 * .hs-product-nav-link, .hs-product-section
 */

:root {
	--hs-product-header-height: 88px;
	--hs-product-content-top: 140px;
	--hs-product-nav-active: #e10012;
	--hs-product-text: #061b1b;
	--hs-product-text1: #c8c8c8;
	--hs-product-muted: #5f6872;
}

.hs-products-hero {
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: 100vw !important;
	max-width: none !important;
	min-height: clamp(360px, 32vw, 640px);
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: calc(var(--hs-product-header-height) + clamp(76px, 8vw, 128px)) clamp(24px, 7vw, 120px) clamp(48px, 6vw, 88px);
	overflow: hidden;
	background: var(--hs-products-hero-image, #fff);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.hs-products-hero.has-no-hero-image {
	background: #fff;
	color: var(--hs-product-text);
}

.hs-products-hero.has-no-hero-image::after {
	display: none;
}

.hs-products-hero.has-no-hero-image .hs-products-hero__desc {
	color: var(--hs-product-muted);
}

.hs-products-hero::after {
	display: none;
}

.hs-products-hero__inner {
	position: absolute;
	right: clamp(24px, 7vw, 120px);
	top: calc(var(--hs-product-header-height) + clamp(28px, 4vw, 56px));
	bottom: clamp(32px, 5vw, 72px);
	left: clamp(24px, 7vw, 120px);
	z-index: 1;
	pointer-events: none;
}

.hs-products-hero__title {
	margin: 0;
    /* padding-top: 30px; */
	color: #f0001e;
	background: linear-gradient(90deg, #f0001e 0%, #000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	font-size: clamp(24px, 1.6vw, 32px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.18;
	letter-spacing: 0;
}

.hs-products-hero__desc {
	max-width: 590px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(17px, 1.5vw, 22px);
	line-height: 1.55;
}

.hs-products-hero__button {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 12px 26px;
	border: 1px solid #f0001e;
	border-radius: 999px;
	background: transparent !important;
	color: #f0001e !important;
	font-size: 14px;
	line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	box-shadow: none;
	pointer-events: auto;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hs-products-hero__button:hover,
.hs-products-hero__button:focus {
	background: #f0001e !important;
	color: #fff !important;
}

.hs-product-recommended {
	--hs-product-page-width: min(100% - 48px, 1440px);
	--hs-product-recommended-gap: clamp(18px, 2vw, 28px);
	box-sizing: border-box;
	width: 100vw !important;
	max-width: none !important;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: clamp(32px, 5vw, 64px) 0 clamp(8px, 4vw, 16px);
	background: transparent;
}

.hs-product-recommended__inner {
	box-sizing: border-box;
	width: var(--hs-product-page-width);
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.hs-product-recommended__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.hs-product-recommended__heading {
	display: grid;
	gap: 4px;
}

.hs-product-recommended__eyebrow {
	margin: 0;
	color: #000;
	font-size: clamp(24px, 2.4vw, 36px);
	font-weight: 600;
	line-height: 1.15;
}

.hs-product-recommended__title {
	display: inline-flex;
	margin: 0;
	padding: 0 4px;
	color: #f0001e;
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 500;
	line-height: 1.2;
}

.hs-product-recommended__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hs-product-recommended__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #fff !important;
	color: #253340 !important;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.hs-product-recommended__arrow:disabled {
	opacity: 0.38;
	cursor: default;
}

.hs-product-recommended__viewport {
	overflow: hidden;
	width: 100%;
}

.hs-product-recommended__track {
	display: flex;
	gap: var(--hs-product-recommended-gap);
	overflow-x: auto;
	padding: 0 0 2px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.hs-product-recommended__track::-webkit-scrollbar {
	display: none;
}

.hs-product-recommended-card {
	position: relative;
	isolation: isolate;
	flex: 0 0 calc((100% - var(--hs-product-recommended-gap)) / 2);
	max-width: calc((100% - var(--hs-product-recommended-gap)) / 2);
	min-height: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 16px;
	background: var(--hs-recommended-card-image, #fff);
	background-position: center;
	background-size: cover;
	color: #fff !important;
	text-decoration: none;
	scroll-snap-align: start;
}

.hs-product-recommended-card.has-no-card-image {
	border: 1px solid rgba(217, 224, 232, 0.9);
	background: #fff;
	color: var(--hs-product-text) !important;
}

.hs-product-recommended-card.has-no-card-image .hs-product-recommended-card__shade {
	background: linear-gradient(135deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0.92));
}

.hs-product-recommended-card.has-no-card-image .hs-product-recommended-card__kicker {
	color: var(--hs-product-muted);
}

.hs-product-recommended-card.has-no-card-image .hs-product-recommended-card__title {
	color: var(--hs-product-text);
}

.hs-product-recommended-card__shade {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(8, 19, 35, 0.62) 0%, rgba(8, 19, 35, 0.28) 42%, rgba(8, 19, 35, 0) 76%),
		linear-gradient(180deg, rgba(8, 19, 35, 0.18), rgba(8, 19, 35, 0.08));
}

.hs-product-recommended-card__content {
    position: relative;
    z-index: 1;
	display: flex;
	width: min(68%, 350px);
	height: 100%;
	min-height: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: clamp(26px, 3vw, 44px);
}

.hs-product-recommended-card__kicker {
	display: block;
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 1);
	font-size: clamp(16px, 1.5vw, 22px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.1;
}

.hs-product-recommended-card__title {
	display: block;
	color: #c8c8c8;
	font-size: clamp(12px, 2vw, 14px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.06;
    font-weight: 300;
}

.hs-product-recommended-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	margin-top: clamp(26px, 3vw, 42px);
	padding: 12px 26px;
	border: 1px solid #fff;
	border-radius: 50px;
	background: transparent !important;
	color: #c8c8c8 !important;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	box-shadow: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hs-product-recommended-card:hover .hs-product-recommended-card__button,
.hs-product-recommended-card:focus .hs-product-recommended-card__button {
	background: #f0001e !important;
	border: 1px solid #f0001e !important;
}

.hs-product-recommended__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 20px;
	margin-top: 22px;
}

.hs-product-recommended__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(240, 0, 30, 0.3);
	border-radius: 999px;
	background: transparent !important;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hs-product-recommended__dot.is-active {
	border-color: #f0001e;
	background: #f0001e !important;
	transform: scale(1.15);
}

.hs-product-page.uagb-position__sticky,
.hs-product-page.hs-product-layout.uagb-position__sticky {
	position: relative !important;
	top: auto !important;
	bottom: auto !important;
	z-index: auto !important;
}

.hs-product-page .hs-product-layout:has(> .hs-product-sidebar):has(> .hs-product-content),
.hs-product-page.hs-product-layout:has(> .hs-product-sidebar):has(> .hs-product-content) {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: start;
}

.hs-product-page .hs-product-sidebar {
	position: sticky;
	top: calc(var(--hs-product-header-height) + 32px);
	align-self: start;
	max-height: none;
	overflow: visible;
	padding-right: 10px;
}

.hs-product-page .hs-product-sidebar[data-aos] {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.hs-product-page .hs-product-content {
	min-width: 0;
	height: auto !important;
	min-height: 0;
	max-height: none;
	overflow: visible !important;
	padding-right: 0;
	scroll-behavior: auto;
	align-self: start;
	justify-content: flex-start !important;
}

.hs-product-page .hs-product-nav-group {
	display: block;
	margin: 0 0 10px;
	color: var(--hs-product-text);
}

.hs-product-page .hs-product-nav-link {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	gap: 14px;
	margin: 0;
	padding: 10px 14px;
	border: 1px dashed transparent;
	border-radius: 10px;
	background: transparent;
	color: #333;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hs-product-page .hs-product-nav-link::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #c8c8c8;
	color: #fff;
	content: "";
	font-size: 10px;
	line-height: 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.hs-product-page .hs-product-nav-link:hover {
	background: #f5f5f5;
	color: #000;
	transform: translateX(4px);
}

.hs-product-page .hs-product-nav-link.is-active {
	/* border-color: #000; */
	background: #c8c8c8;
	color: #000;
	transform: translateX(4px);
}

.hs-product-page .hs-product-nav-link:hover::before {
	background: #000;
	transform: translateX(2px);
}

.hs-product-page .hs-product-nav-link.is-active::before {
	background: var(--hs-product-nav-active);
	transform: translateX(2px);
}

.hs-product-page .hs-product-nav-toggle {
	/* background: linear-gradient(90deg, #f0001e 0%, #000 100%); */
	/* -webkit-background-clip: text; */
	/* background-clip: text; */
	color: #f0001e;
	font-size: clamp(16px, 1vw, 20px);
	font-weight: 520;
	/* -webkit-text-fill-color: transparent;
	text-fill-color: transparent; */
}

.hs-product-page .hs-product-nav-toggle:hover,
.hs-product-page .hs-product-nav-toggle.is-active {
	border-color: transparent;
	background: #fff;
	color: #f0001e;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: #f0001e;
	text-fill-color: #f0001e;
}

.hs-product-page .hs-product-nav-children {
	display: block;
	padding: 8px 0 8px 6px;
}

.hs-product-page .hs-product-nav-child-link {
	margin-top: 6px;
	padding: 8px 12px;
	color: var(--hs-product-muted);
	font-size: 15px;
	font-weight: 650;
}

.hs-product-page .hs-product-nav-child-link::before {
	width: 10px;
	height: 3px;
	background: #9aa3aa;
	content: "";
}

.hs-product-page .hs-product-nav-child-link:hover,
.hs-product-page .hs-product-nav-child-link.is-active {
	color: var(--hs-product-text);
}

.hs-product-page .hs-product-nav-child-link.is-active::before {
	background: var(--hs-product-nav-active);
}

.hs-product-page .hs-product-section {
	scroll-margin-top: calc(var(--hs-product-header-height) + 24px);
	margin-bottom: clamp(72px, 8vw, 120px);
}

.hs-product-page .hs-product-section.hs-product-visible {
	animation: hsProductFadeUp 0.45s ease both;
}

.hs-product-page.alignfull {
	box-sizing: border-box;
	position: relative;
	left: 50%;
	width: min(calc(100vw - 48px), 1440px) !important;
	max-width: 1440px !important;
	margin: 0;
	padding: clamp(64px, 6vw, 96px) 0 clamp(64px, 8vw, 112px);
	transform: translateX(-50%);
}

.hs-product-page .hs-product-section__header {
	margin: 0 0 clamp(16px, 2vw, 26px);
}

.hs-product-page .hs-product-section__title {
	margin: 0;
	color: var(--hs-product-text);
	font-size: clamp(18px, 1.2vw, 24px);
	font-weight: bold;
	line-height: 1.02;
	letter-spacing: 0;
    padding-left: 8px;
    border-left: 3px solid #f0001e;
}

.hs-product-page .hs-product-section__desc {
	max-width: 90%;
	margin: 8px 0 0;
	color: var(--hs-product-muted);
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0;
}

.hs-product-page .hs-product-group {
	margin: 0 0 clamp(24px, 3vw, 40px);
}

.hs-product-page .hs-product-group:last-child {
	margin-bottom: 0;
}

.hs-product-page .hs-product-group__header {
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(6, 27, 27, 0.1);
}

.hs-product-page .hs-product-group__title {
	margin: 0;
	color: var(--hs-product-text);
	font-size: clamp(16px, 1vw, 22px);
	font-weight: 520;
	line-height: 1.12;
	letter-spacing: 0;
}

.hs-product-page .hs-product-group__desc {
	max-width: 720px;
	margin: 6px 0 0;
	color: var(--hs-product-muted);
	font-size: 12px;
	line-height: 1.45;
	letter-spacing: 0;
}

.hs-product-page .hs-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(10px, 1.2vw, 16px);
}

.hs-product-page .hs-product-card {
	box-sizing: border-box;
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 0;
	border-radius: 6px;
	background: #fff;
	box-shadow: none;
	color: var(--hs-product-text);
	text-decoration: none;
	transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
	padding: clamp(8px, 0.8vw, 12px) clamp(8px, 0.8vw, 12px) 0;
}

.hs-product-page .hs-product-card:hover {
	background: #fff;
	box-shadow: 0 12px 28px rgba(6, 27, 27, 0.12);
	color: var(--hs-product-text);
	transform: translateY(-4px);
}

.hs-product-page .hs-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f7f8, #eceff1);
	border-radius: 8px;
}

.hs-product-page .hs-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.36s ease;
}

.hs-product-page .hs-product-card:hover .hs-product-card__image {
	transform: scale(1.04);
}

.hs-product-page .hs-product-card__placeholder {
	position: absolute;
	inset: 22%;
	border: 2px solid rgba(225, 0, 18, 0.22);
	border-radius: 999px;
}

.hs-product-page .hs-product-card__placeholder::before,
.hs-product-page .hs-product-card__placeholder::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 52%;
	height: 2px;
	background: rgba(225, 0, 18, 0.28);
	content: "";
	transform: translate(-50%, -50%);
}

.hs-product-page .hs-product-card__placeholder::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hs-product-page .hs-product-card__title {
	display: block;
	padding: clamp(9px, 0.9vw, 12px) 2px 0;
	color: var(--hs-product-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.hs-product-page .hs-product-card__summary {
	display: block;
	padding: 6px 2px 0;
	color: var(--hs-product-muted);
	font-size: 11px;
	line-height: 1.42;
	letter-spacing: 0;
}

.hs-product-page .hs-product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: auto 2px 12px;
	padding-top: 10px;
	color: var(--hs-product-text1);
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
    text-align: right;
}

.hs-product-page .hs-product-card__cta::after {
	content: "\2192";
	font-size: 12px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.hs-product-page .hs-product-card:hover .hs-product-card__cta {
	color: #f0001e;
}

.hs-product-page .hs-product-card:hover .hs-product-card__cta::after {
	transform: translateX(4px);
}

.hs-product-page .hs-product-section--empty {
	width: min(100%, 960px);
	margin: 0 auto;
	padding: clamp(120px, 12vw, 180px) 24px;
	text-align: center;
}

@keyframes hsProductFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hs-product-page .hs-product-nav-link,
	.hs-product-page .hs-product-nav-link::before,
	.hs-product-page .hs-product-section.hs-product-visible {
		animation: none;
		transition: none;
	}
}

@media (max-width: 921px) {
	.hs-products-hero,
	.hs-product-recommended {
		width: 100vw !important;
		max-width: none !important;
		margin-right: calc(50% - 50vw) !important;
		margin-left: calc(50% - 50vw) !important;
	}

	.hs-product-recommended__inner {
		width: min(100% - 44px, 1440px);
	}

	.hs-product-recommended__track {
		padding-right: 0;
	}

	.hs-product-recommended-card {
		flex-basis: 100%;
		max-width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 9;
		border-radius: 16px;
	}

	.hs-product-page .hs-product-layout:has(> .hs-product-sidebar):has(> .hs-product-content),
	.hs-product-page.hs-product-layout:has(> .hs-product-sidebar):has(> .hs-product-content) {
		display: block;
	}

	.hs-product-page .hs-product-sidebar {
		position: static;
		top: auto;
		z-index: auto;
		display: block;
		max-height: none;
		overflow: visible;
		padding: 0 0 28px;
		background: #fff;
	}

	.hs-product-page .hs-product-content {
		max-height: none;
		height: auto !important;
		overflow: visible !important;
		padding-right: 0;
	}

	.hs-product-page .hs-product-nav-group {
		min-width: 0;
		margin-bottom: 10px;
	}

	.hs-product-page .hs-product-nav-link {
		white-space: normal;
	}

	.hs-product-page .hs-product-nav-children {
		padding-left: 18px;
	}

	.hs-product-page.alignfull {
		width: min(calc(100vw - 44px), 1440px) !important;
		padding-top: clamp(92px, 18vw, 132px);
	}

	.hs-product-page .hs-product-grid {
		grid-template-columns: 1fr;
	}

	.site-footer .footer-widget-area,
	.site-footer .footer-widget-area-inner,
	.site-footer .widget,
	.site-footer .widget-title,
	.site-footer .menu,
	.site-footer .menu-item,
	.site-footer .wp-block-heading,
	.site-footer .wp-block-paragraph {
		box-sizing: border-box;
		width: auto !important;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.hs-product-page .hs-product-card__title {
		padding-right: 18px;
		padding-left: 18px;
	}

	.hs-product-page .hs-product-card__summary {
		padding-right: 18px;
		padding-left: 18px;
	}

	.hs-product-page .hs-product-card__cta {
		margin-right: 18px;
		margin-left: 18px;
	}
}

/*
 * R&D and manufacturing layout enhancement.
 * Gutenberg/Spectra owns the markup; these rules only style the tagged section.
 */
.rd-layout-section {
	--rd-card-blue: #1378c9;
	--rd-card-text: #252b33;
	--rd-card-muted: #4f5965;
	--rd-card-border: rgba(74, 154, 210, 0.18);
	--rd-card-shadow: 0 14px 30px rgba(21, 92, 145, 0.1);
	--rd-card-shadow-hover: 0 20px 42px rgba(21, 92, 145, 0.18);
}

.rd-layout-section .uagb-block-ffd1e4b5 {
	display: grid !important;
	grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
	gap: clamp(14px, 1.5vw, 20px) !important;
	width: min(92vw, 1320px) !important;
	max-width: 1320px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	align-items: stretch;
}

.rd-layout-section .uagb-block-a0a296cc {
	position: relative;
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: clamp(28px, 3vw, 42px);
	overflow: hidden;
	border-radius: 8px;
	background:
		radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.34), transparent 18%),
		linear-gradient(180deg, #245fb8 0%, #113b8e 52%, #09275f 100%);
	box-shadow: 0 20px 44px rgba(18, 69, 143, 0.18);
}

.rd-layout-section .uagb-block-a0a296cc::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
	opacity: 0.55;
	pointer-events: none;
}

.rd-layout-section .uagb-block-a0a296cc .uagb-heading-text {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 2.9vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
	writing-mode: vertical-rl;
}

.rd-layout-section .rd-feature-card {
	position: relative;
	isolation: isolate;
	overflow: visible;
	display: flex !important;
	flex-direction: column;
	gap: clamp(12px, 1.2vw, 18px);
	min-width: 0;
	min-height: clamp(148px, 12vw, 182px);
	padding: clamp(20px, 1.7vw, 28px) clamp(18px, 1.7vw, 26px);
	border: 1px solid var(--rd-card-border);
	border-radius: 8px;
	background: linear-gradient(135deg, #fbfcfe 0%, #f3f6fa 100%);
	box-shadow: var(--rd-card-shadow);
	color: var(--rd-card-text);
	text-align: left;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rd-layout-section .rd-feature-card > .wp-block-uagb-container:first-child,
.rd-layout-section .rd-feature-card > .uagb-container-inner-blocks-wrap:first-child {
	display: flex !important;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(12px, 1.2vw, 18px);
	width: 100%;
	min-width: 0;
}

.rd-layout-section .rd-feature-card:hover {
	border-color: rgba(19, 120, 201, 0.28);
	box-shadow: var(--rd-card-shadow-hover);
	transform: translateY(-8px);
}

.rd-layout-section .rd-feature-card .wp-block-uagb-icon,
.rd-layout-section .rd-feature-card .uagb-icon-wrapper,
.rd-layout-section .rd-feature-card .wp-block-image:first-child,
.rd-layout-section .rd-feature-card > figure:first-child,
.rd-layout-section .rd-feature-card > .wp-block-uagb-image:first-child {
	position: static;
	flex: 0 0 clamp(34px, 3vw, 44px) !important;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(34px, 3vw, 44px) !important;
	height: clamp(34px, 3vw, 44px) !important;
	max-width: clamp(34px, 3vw, 44px) !important;
	margin: 0 0 0 auto !important;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	transform: none;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rd-layout-section .rd-feature-card:hover .wp-block-uagb-icon,
.rd-layout-section .rd-feature-card:hover .uagb-icon-wrapper,
.rd-layout-section .rd-feature-card:hover .wp-block-image:first-child,
.rd-layout-section .rd-feature-card:hover > figure:first-child,
.rd-layout-section .rd-feature-card:hover > .wp-block-uagb-image:first-child {
	box-shadow: none;
	transform: scale(1.07);
}

.rd-layout-section .rd-feature-card .wp-block-uagb-icon svg,
.rd-layout-section .rd-feature-card .uagb-icon-wrapper svg,
.rd-layout-section .rd-feature-card .wp-block-image:first-child img,
.rd-layout-section .rd-feature-card > figure:first-child img,
.rd-layout-section .rd-feature-card > .wp-block-uagb-image:first-child img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	color: var(--rd-card-blue);
	fill: currentColor;
}

.rd-layout-section .rd-feature-card h1,
.rd-layout-section .rd-feature-card h2,
.rd-layout-section .rd-feature-card h3,
.rd-layout-section .rd-feature-card h4,
.rd-layout-section .rd-feature-card h5,
.rd-layout-section .rd-feature-card h6,
.rd-layout-section .rd-feature-card .uagb-heading-text {
	margin: 0 0 8px;
	color: var(--rd-card-blue) !important;
	font-size: clamp(18px, 1.35vw, 24px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
	text-align: left !important;
}

.rd-layout-section .rd-feature-card > .wp-block-uagb-container:first-child .wp-block-uagb-advanced-heading,
.rd-layout-section .rd-feature-card > .uagb-container-inner-blocks-wrap:first-child .wp-block-uagb-advanced-heading {
	flex: 1 1 auto;
	min-width: 0;
}

.rd-layout-section .rd-feature-card p,
.rd-layout-section .rd-feature-card .uagb-desc-text {
	margin: 0;
	color: var(--rd-card-muted);
	font-size: clamp(14px, 0.95vw, 16px);
	font-weight: 400;
	line-height: 1.38;
	letter-spacing: 0;
	text-align: left !important;
}

.battery-advantages-right {
	display: flex !important;
	min-height: clamp(240px, 12vw, 480px);
	padding: clamp(40px, 6vw, 92px) clamp(28px, 5vw, 80px);
	flex-direction: column !important;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.battery-advantages-right .battery-advantages-stat {
	display: inline-flex !important;
	align-items: flex-end !important;
	justify-content: center;
	gap: clamp(4px, 0.65vw, 9px) !important;
	line-height: 0.82 !important;
}

.battery-advantages-right .battery-advantages-stat__number,
.battery-advantages-right .battery-advantages-stat__side {
	background: linear-gradient(135deg, #f0001e 0%, #000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: #f0001e !important;
	-webkit-text-fill-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
}

.battery-advantages-right .battery-advantages-stat__number {
	font-size: clamp(50px, 6.65vw, 100px) !important;
	font-weight: 900 !important;
	line-height: 0.82 !important;
	letter-spacing: 0 !important;
}

.battery-advantages-right .battery-advantages-stat__side {
	display: inline-flex !important;
	margin-bottom: clamp(2px, 0.4vw, 6px) !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: clamp(4px, 0.4vw, 6px) !important;
}

.battery-advantages-right .battery-advantages-stat__arrow {
	display: block !important;
	width: clamp(10px, 1.25vw, 18px) !important;
	height: clamp(25px, 2.85vw, 43px) !important;
	background: linear-gradient(135deg, #f0001e 0%, #000 100%);
	clip-path: polygon(50% 0, 100% 30%, 76% 30%, 76% 100%, 24% 100%, 24% 30%, 0 30%);
}

.battery-advantages-right .battery-advantages-stat__percent {
	font-size: clamp(20px, 2.5vw, 40px) !important;
	font-weight: 900 !important;
	line-height: 0.82 !important;
}

.battery-advantages-right .battery-advantages-right__label {
	margin: clamp(14px, 2vw, 27px) 0 0 !important;
	color: #555 !important;
	font-size: clamp(11px, 1.4vw, 18px) !important;
	font-weight: bold !important;
	line-height: 1.25 !important;
	letter-spacing: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 1100px) {
	.rd-layout-section .uagb-block-ffd1e4b5 {
		grid-template-columns: 1fr;
	}

	.rd-layout-section .uagb-block-a0a296cc {
		grid-column: 1 / -1 !important;
		min-height: 180px;
	}

	.rd-layout-section .uagb-block-a0a296cc .uagb-heading-text {
		writing-mode: horizontal-tb;
	}
}

@media (max-width: 640px) {
	.rd-layout-section .uagb-block-ffd1e4b5 {
		grid-template-columns: 1fr;
	}

	.rd-layout-section .rd-feature-card {
		min-height: 150px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rd-layout-section .rd-feature-card,
	.rd-layout-section .rd-feature-card .wp-block-uagb-icon,
	.rd-layout-section .rd-feature-card .uagb-icon-wrapper,
	.rd-layout-section .rd-feature-card .wp-block-image:first-child,
	.rd-layout-section .rd-feature-card > figure:first-child,
	.rd-layout-section .rd-feature-card > .wp-block-uagb-image:first-child {
		transition: none;
	}

	.rd-layout-section .rd-feature-card:hover {
		transform: none;
	}
}

.hs-honors-qualifications {
	--hs-honors-marquee-gap: clamp(18px, 2.6vw, 40px);
	--hs-honors-marquee-distance: 0px;
	--hs-honors-edge-fade: clamp(24px, 4vw, 72px);
	width: 80vw !important;
	max-width: 80vw !important;
	margin-right: auto !important;
	margin-left: auto !important;
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0,
		#000 var(--hs-honors-edge-fade),
		#000 calc(100% - var(--hs-honors-edge-fade)),
		transparent 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0,
		#000 var(--hs-honors-edge-fade),
		#000 calc(100% - var(--hs-honors-edge-fade)),
		transparent 100%
	);
}

.hs-honors-qualifications[data-hs-honors-marquee="true"] {
	display: block;
}

.hs-honors-qualifications__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: hs-honors-marquee var(--hs-honors-marquee-duration, 90s) linear infinite;
}

.hs-honors-qualifications__group {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: var(--hs-honors-marquee-gap);
	padding-right: var(--hs-honors-marquee-gap);
}

.hs-honors-qualifications__group > * {
	flex: 0 0 auto;
}

.hs-honors-qualifications__group img {
	display: block;
    border-radius: 16px;
}

@keyframes hs-honors-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(var(--hs-honors-marquee-distance) * -1), 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hs-honors-qualifications__track {
		animation: none;
		transform: none;
	}
}

.hs-rd-production-tab .spectra-image-gallery__layout--grid .spectra-image-gallery__media--grid {
	aspect-ratio: 16 / 9;
}

.hs-rd-production-tab .spectra-image-gallery__layout--grid .spectra-image-gallery__media-thumbnail--grid {
	object-fit: cover;
}

.hs-rd-production-tab .spectra-image-gallery__layout--grid-col-2 > .spectra-image-gallery__media-wrapper:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

/* R&D production gallery: editable as stacked galleries, enhanced as tabs on the front end. */
.hs-rd-gallery {
	width: min(100% - 40px, 1228px);
	margin-inline: auto;
	color: #061818;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__label {
	display: none;
}

.hs-rd-gallery__tabs {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
	margin: 0 0 clamp(8px, 3vw, 16px);
	padding: 6px;
	border-radius: 6px;
	background: #f5f5f5;
	isolation: isolate;
}

.hs-rd-gallery__tabs::before {
	position: absolute;
	top: 6px;
	bottom: 6px;
	left: 0;
	width: var(--hs-rd-tab-width, 0);
	border-radius: 4px;
	background: #f0001e;
	content: "";
	transform: translate3d(var(--hs-rd-tab-x, 0), 0, 0);
	z-index: -1;
}

.hs-rd-gallery__tabs.is-ready::before {
	transition: width 0.32s ease, transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hs-rd-gallery__tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	min-height: 42px;
	padding: 10px 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: transparent;
	color: #061818;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	z-index: 1;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hs-rd-gallery__tab:hover,
.hs-rd-gallery__tab:focus-visible {
	background: #fff;
	color: #f0001e;
}

.hs-rd-gallery__tab.is-active {
	border-color: transparent;
	background: transparent;
	color: #fff;
}

.hs-rd-gallery__tab:focus-visible {
	outline: 2px solid #061818;
	outline-offset: 3px;
}

.hs-rd-gallery__panel[hidden] {
	display: none !important;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__panel.is-active {
	animation: hs-rd-gallery-fade-in 0.28s ease-out;
}

.hs-rd-gallery__images {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	background: #f3f6f8;
	box-shadow: 0 18px 44px rgba(6, 24, 24, 0.12);
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__images > .spectra-image-gallery {
	--hs-rd-gallery-gap: clamp(10px, 1.5vw, 18px);
	display: flex !important;
	align-items: stretch;
	gap: var(--hs-rd-gallery-gap) !important;
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__images .spectra-image-gallery__media-wrapper {
	flex: 0 0 calc((100% - var(--hs-rd-gallery-gap)) / 2) !important;
	width: calc((100% - var(--hs-rd-gallery-gap)) / 2) !important;
	max-width: none !important;
	padding: 0 !important;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__images .spectra-image-gallery__media-wrapper:only-child {
	flex-basis: 100% !important;
	width: 100% !important;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__images .spectra-image-gallery__media,
.hs-rd-gallery.is-enhanced .hs-rd-gallery__images picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hs-rd-gallery.is-enhanced .hs-rd-gallery__images .spectra-image-gallery__media-thumbnail {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.hs-rd-gallery__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.hs-rd-gallery__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(198, 207, 216, 0.9);
	border-radius: 50%;
	background: #fff;
	color: #061818;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hs-rd-gallery__arrow:hover,
.hs-rd-gallery__arrow:focus-visible {
	border-color: #f0001e;
	background: #f0001e;
	color: #fff;
}

.hs-rd-gallery__arrow:focus-visible {
	outline: 2px solid #061818;
	outline-offset: 3px;
}

.hs-rd-gallery__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hs-rd-gallery__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c6cfd8;
	cursor: pointer;
	transition: width 0.2s ease, background-color 0.2s ease;
}

.hs-rd-gallery__dot.is-active {
	width: 24px;
	background: #f0001e;
}

.hs-rd-gallery__dot:focus-visible {
	outline: 2px solid #061818;
	outline-offset: 3px;
}

@keyframes hs-rd-gallery-fade-in {
	from {
		opacity: 0;
		transform: translateX(var(--hs-rd-panel-enter-x, 18px));
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.hs-rd-gallery {
		width: min(100% - 28px, 720px);
	}

	.hs-rd-gallery__tabs {
		margin-inline: -14px;
		padding: 6px 14px;
		border-radius: 0;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.hs-rd-gallery__tabs::-webkit-scrollbar {
		display: none;
	}

	.hs-rd-gallery__tab {
		flex: 0 0 min(78vw, 300px);
		max-width: none;
	}

	.hs-rd-gallery__controls {
		gap: 12px;
		margin-top: 16px;
	}

	.hs-rd-gallery__arrow {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hs-rd-gallery.is-enhanced .hs-rd-gallery__images > .spectra-image-gallery,
	.hs-rd-gallery.is-enhanced .hs-rd-gallery__panel.is-active {
		animation: none;
		transition: none;
	}
}
