/**
 * JICO Dynamic Home
 *
 * Presentation is intentionally isolated from the active theme and the
 * Header/Footer modules. Every selector is rooted at the Home shortcode.
 */

.jico-fs-home {
	--jico-home-content: 1264px;
	--jico-home-gutter: 32px;
	--jico-home-accent: #c00000;
	--jico-home-accent-hover: #a90000;
	--jico-home-ink: #19191a;
	--jico-home-copy: #707070;
	--jico-home-muted: #707070;
	--jico-home-line: #e1e1e1;
	--jico-home-soft-line: #ececec;
	--jico-home-surface: #fafafa;
	--jico-home-soft: #fafbfb;
	--jico-home-focus: #1565c0;
	--jico-home-radius: 8px;
	--jico-home-shadow: 0 15px 15px -10px rgba(0,0,0,.15);
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: var(--jico-home-ink);
	background: #ffffff;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.jico-fs-home *,
.jico-fs-home *::before,
.jico-fs-home *::after {
	box-sizing: border-box;
}

.jico-fs-home img {
	display: block;
	max-width: 100%;
	height: auto;
}

.jico-fs-home button,
.jico-fs-home input,
.jico-fs-home textarea,
.jico-fs-home select {
	font: inherit;
}

.jico-fs-home a {
	color: inherit;
	text-decoration: none;
}

.jico-fs-home button {
	color: inherit;
}

.jico-fs-home a:focus-visible,
.jico-fs-home button:focus-visible {
	outline: 2px solid var(--jico-home-focus);
	outline-offset: 3px;
}

.jico-fs-home > .jico-fs-home__section {
	position: relative;
	width: min(100%, var(--jico-home-content));
	margin: 0 auto;
	padding: 44px var(--jico-home-gutter) 48px;
}

.jico-fs-home > .jico-fs-home__section:first-child {
	padding-top: 0;
}

.jico-fs-home .jico-fs-home__section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	margin: 0 0 24px;
	text-align: center;
}

.jico-fs-home .jico-fs-home__section-title {
	margin: 0;
	color: var(--jico-home-ink);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 32px;
}

.jico-fs-home .jico-fs-home__section-description {
	max-width: 720px;
	margin: 8px auto 0;
	color: var(--jico-home-copy);
	font-size: 14px;
	line-height: 1.55;
}

.jico-fs-home .jico-fs-home__eyebrow {
	margin: 0 0 8px;
	color: var(--jico-home-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-transform: uppercase;
}

.jico-fs-home .jico-fs-home__badge {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	margin: 0 0 10px;
	padding: 2px 8px;
	border-radius: 1px;
	color: #ffffff;
	background: var(--jico-home-accent);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

.jico-fs-home .jico-fs-home__rich-text,
.jico-fs-home .jico-fs-home__rich-text p {
	margin: 0;
}

.jico-fs-home .jico-fs-home__rich-text p + p {
	margin-top: 8px;
}

/* Hero carousel --------------------------------------------------------- */

.jico-fs-home > .jico-fs-home__section--hero-carousel {
	width: 100%;
	max-width: none;
	height: 420px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #1b1b1b;
}

.jico-fs-home .jico-fs-home__carousel,
.jico-fs-home .jico-fs-home__slides,
.jico-fs-home .jico-fs-home__slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.jico-fs-home .jico-fs-home__carousel {
	overflow: hidden;
	isolation: isolate;
}

.jico-fs-home .jico-fs-home__slides {
	background: #1b1b1b;
}

.jico-fs-home .jico-fs-home__slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	visibility: hidden;
	opacity: 0;
	transform: translateX(1.5%);
	transition: opacity 420ms ease, transform 520ms ease, visibility 0s linear 520ms;
}

.jico-fs-home .jico-fs-home__slide[data-active] {
	z-index: 1;
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0s;
}

.jico-fs-home .jico-fs-home__slide-media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	background: #222222;
}

.jico-fs-home .jico-fs-home__slide-media::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background: linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 48%) 34%, rgb(0 0 0 / 12%) 66%, transparent 100%);
}

.jico-fs-home .jico-fs-home__slide-media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.jico-fs-home .jico-fs-home__slide-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(100%, var(--jico-home-content));
	height: 100%;
	margin: 0 auto;
	padding: 34px 76px 42px;
}

.jico-fs-home .jico-fs-home__slide-content {
	width: min(620px, 60%);
	color: #ffffff;
}

.jico-fs-home .jico-fs-home__slide-title {
	margin: 0;
	color: #ffffff;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 48px;
}

.jico-fs-home .jico-fs-home__slide-description {
	max-width: 620px;
	margin: 16px 0 0;
	color: rgb(255 255 255 / 92%);
	font-size: 16px;
	line-height: 1.55;
}

.jico-fs-home .jico-fs-home__slide .jico-fs-home__eyebrow {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 13px;
}

.jico-fs-home .jico-fs-home__carousel-controls {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0 auto;
	padding: 0 var(--jico-home-gutter);
	pointer-events: none;
}

.jico-fs-home .jico-fs-home__carousel-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	pointer-events: auto;
	transform: translateX(-50%);
}

.jico-fs-home .jico-fs-home__carousel-dots button {
	position: relative;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: width 180ms ease;
}

.jico-fs-home .jico-fs-home__carousel-dots button[aria-current="true"] {
	width: 56px;
}

.jico-fs-home .jico-fs-home__carousel-dots button::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	content: "";
	background: rgb(255 255 255 / 50%);
	transform: translate(-50%, -50%);
	transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.jico-fs-home .jico-fs-home__carousel-dots button:hover::before,
.jico-fs-home .jico-fs-home__carousel-dots button[aria-current="true"]::before {
	width: 40px;
	border-radius: 4px;
	background: #ffffff;
}

.jico-fs-home .jico-fs-home__carousel-arrow,
.jico-fs-home .jico-fs-home__carousel-toggle {
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 45%);
	border-radius: 50%;
	color: #ffffff;
	background: rgb(0 0 0 / 24%);
	cursor: pointer;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: opacity 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.jico-fs-home .jico-fs-home__carousel-arrow:hover,
.jico-fs-home .jico-fs-home__carousel-toggle:hover {
	border-color: #ffffff;
	background: rgb(0 0 0 / 48%);
}

.jico-fs-home .jico-fs-home__carousel-toggle[hidden] {
	display: none !important;
}

.jico-fs-home .jico-fs-home__carousel-arrow--previous {
	left: var(--jico-home-gutter);
}

.jico-fs-home .jico-fs-home__carousel-arrow--next {
	right: var(--jico-home-gutter);
}

.jico-fs-home .jico-fs-home__carousel-arrow span {
	display: block;
	width: 9px;
	height: 9px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
}

.jico-fs-home .jico-fs-home__carousel-arrow--previous span {
	transform: translateX(2px) rotate(-135deg);
}

.jico-fs-home .jico-fs-home__carousel-arrow--next span {
	transform: translateX(-2px) rotate(45deg);
}

.jico-fs-home .jico-fs-home__carousel-toggle {
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.jico-fs-home .jico-fs-home__carousel-toggle span {
	position: relative;
	display: block;
	width: 8px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-left: 2px solid currentColor;
}

.jico-fs-home .jico-fs-home__carousel-toggle[data-paused="true"] span {
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5px solid transparent;
	border-right: 0;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
}

/* Actions --------------------------------------------------------------- */

.jico-fs-home .jico-fs-home__actions {
	position: relative;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
}

.jico-fs-home .jico-fs-home__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 124px;
	min-height: 42px;
	padding: 10px 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.jico-fs-home .jico-fs-home__action--primary {
	border-color: var(--jico-home-accent);
	color: #ffffff;
	background: var(--jico-home-accent);
}

.jico-fs-home .jico-fs-home__action--primary:hover {
	border-color: var(--jico-home-accent-hover);
	background: var(--jico-home-accent-hover);
}

.jico-fs-home .jico-fs-home__action--secondary {
	border-color: #999999;
	color: var(--jico-home-ink);
	background: transparent;
}

.jico-fs-home .jico-fs-home__action--secondary:hover {
	border-color: var(--jico-home-ink);
	background: rgb(255 255 255 / 64%);
}

.jico-fs-home .jico-fs-home__slide .jico-fs-home__action--secondary,
.jico-fs-home .jico-fs-home--theme-dark .jico-fs-home__action--secondary {
	border-color: #ffffff;
	color: #ffffff;
}

.jico-fs-home .jico-fs-home__slide .jico-fs-home__action--primary {
	border-color: #ffffff;
	color: #ffffff;
	background: transparent;
}

.jico-fs-home .jico-fs-home__slide .jico-fs-home__action--primary:hover {
	border-color: #ffffff;
	background: rgb(255 255 255 / 12%);
}

.jico-fs-home .jico-fs-home__slide .jico-fs-home__action--secondary:hover,
.jico-fs-home .jico-fs-home--theme-dark .jico-fs-home__action--secondary:hover {
	border-color: #ffffff;
	background: rgb(255 255 255 / 12%);
}

/* Product tabs ---------------------------------------------------------- */

.jico-fs-home [data-jico-home-layout="product-tabs"] {
	padding-top: 0;
	padding-bottom: 24px;
}

/* Match the measured desktop section rhythm without coupling to editable anchors. */
.jico-fs-home [data-jico-home-layout="category-grid"] {
	padding-top: 0;
	padding-bottom: 48px;
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"],
.jico-fs-home [data-jico-home-layout="solution-grid"],
.jico-fs-home [data-jico-home-layout="proof-strip"],
.jico-fs-home [data-jico-home-layout="resource-cards"] {
	padding-top: 0;
	padding-bottom: 48px;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] {
	padding-bottom: 0;
}

.jico-fs-home [data-jico-home-layout="final-cta"] {
	padding-top: 0;
	padding-bottom: 44px;
}

/* FS keeps two deliberate desktop pauses between its first three bands. */
@media (min-width: 769px) {
	.jico-fs-home > [data-jico-home-layout="hero-carousel"] + [data-jico-home-layout="product-tabs"] {
		margin-top: 24px;
	}

	.jico-fs-home > [data-jico-home-layout="product-tabs"] + [data-jico-home-layout="category-grid"] {
		margin-top: 48px;
	}
}

.jico-fs-home .jico-fs-home__tabs {
	min-width: 0;
}

.jico-fs-home .jico-fs-home__tab-list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	min-width: 0;
	margin: 0 0 20px;
	border-bottom: 1px solid var(--jico-home-line);
	overflow-x: auto;
	scrollbar-width: none;
}

.jico-fs-home .jico-fs-home__tab-list::-webkit-scrollbar {
	display: none;
}

.jico-fs-home .jico-fs-home__tab {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 122px;
	min-height: 46px;
	margin: 0;
	padding: 9px 16px 12px;
	border: 0;
	color: var(--jico-home-copy);
	background: transparent;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
}

.jico-fs-home .jico-fs-home__tab::after {
	position: absolute;
	right: 12px;
	bottom: -1px;
	left: 12px;
	height: 2px;
	content: "";
	background: transparent;
	transition: background-color 180ms ease;
}

.jico-fs-home .jico-fs-home__tab:hover,
.jico-fs-home .jico-fs-home__tab[aria-selected="true"] {
	color: var(--jico-home-ink);
}

.jico-fs-home .jico-fs-home__tab[aria-selected="true"]::after {
	background: var(--jico-home-accent);
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab-list {
	justify-content: flex-start;
	gap: 0;
	min-height: 148px;
	margin-bottom: 20px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab {
	flex: 0 0 150px;
	flex-direction: column;
	gap: 12px;
	width: 150px;
	min-width: 150px;
	height: 148px;
	min-height: 148px;
	padding: 18px 8px 17px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab::after {
	display: none;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab .jico-fs-home__icon {
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 4px;
	color: var(--jico-home-copy);
	background: #f5f5f5;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab > span:last-child {
	position: relative;
	display: inline-block;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab > span:last-child::after {
	position: absolute;
	right: 0;
	bottom: -18px;
	left: 0;
	height: 2px;
	content: "";
	background: transparent;
	transition: background-color 180ms ease;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab[aria-selected="true"] > span:last-child::after {
	background: var(--jico-home-accent);
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab:hover .jico-fs-home__icon,
.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab[aria-selected="true"] .jico-fs-home__icon {
	color: var(--jico-home-ink);
}

.jico-fs-home .jico-fs-home__tab-panel[hidden] {
	display: none !important;
}

.jico-fs-home .jico-fs-home__tab-description {
	max-width: 760px;
	margin: 0 auto 16px;
	color: var(--jico-home-copy);
	text-align: center;
}

/* Cards and grids ------------------------------------------------------- */

.jico-fs-home .jico-fs-home__grid {
	display: grid;
	grid-template-columns: repeat(var(--jico-home-columns, 3), minmax(0, 1fr));
	gap: 20px;
	min-width: 0;
}

.jico-fs-home .jico-fs-home__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	border: 1px solid var(--jico-home-soft-line);
	border-radius: var(--jico-home-radius);
	overflow: hidden;
	color: var(--jico-home-ink);
	background: var(--jico-home-surface);
	transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.jico-fs-home .jico-fs-home__card:hover,
.jico-fs-home .jico-fs-home__card:focus-within {
	border-color: #d3d3d3;
	box-shadow: var(--jico-home-shadow);
	transform: none;
}

.jico-fs-home .jico-fs-home__card-hit-area {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.jico-fs-home .jico-fs-home__card-media {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #f6f6f6;
}

.jico-fs-home .jico-fs-home__card-media-image {
	width: 100%;
	height: 190px;
	object-fit: cover;
	object-position: center;
	transition: transform 320ms ease;
}

.jico-fs-home .jico-fs-home__card:hover .jico-fs-home__card-media-image,
.jico-fs-home .jico-fs-home__card:focus-within .jico-fs-home__card-media-image {
	transform: scale(1.025);
}

.jico-fs-home .jico-fs-home__card-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding: 16px 18px 18px;
}

.jico-fs-home .jico-fs-home__card-title {
	margin: 0;
	color: var(--jico-home-ink);
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
}

.jico-fs-home .jico-fs-home__card-description {
	display: -webkit-box;
	margin: 7px 0 0;
	overflow: hidden;
	color: var(--jico-home-copy);
	font-size: 12px;
	line-height: 20px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__eyebrow {
	margin-bottom: 7px;
	font-size: 11px;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__actions {
	margin-top: auto;
	padding-top: 14px;
}

/* Product-family cards may expose four to six independently managed links. */
.jico-fs-home .jico-fs-home__card-links {
	display: flex;
	width: 100%;
	margin: 8px 0 0;
	padding: 0;
	flex-direction: column;
	list-style: none;
	text-align: left;
}

.jico-fs-home .jico-fs-home__card-link-item {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.jico-fs-home .jico-fs-home__card-link,
.jico-fs-home .jico-fs-home__card-title-link {
	position: relative;
	z-index: 4;
}

.jico-fs-home .jico-fs-home__card--has-links .jico-fs-home__card-content {
	z-index: 4;
	pointer-events: none;
}

.jico-fs-home .jico-fs-home__card--has-links .jico-fs-home__card-content a {
	pointer-events: auto;
}

.jico-fs-home .jico-fs-home__card-link {
	display: block;
	overflow: hidden;
	color: var(--jico-home-copy);
	font-size: 12px;
	line-height: 24px;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 180ms ease;
}

.jico-fs-home .jico-fs-home__card-link:hover,
.jico-fs-home .jico-fs-home__card-link:focus-visible,
.jico-fs-home .jico-fs-home__card-title-link:hover,
.jico-fs-home .jico-fs-home__card-title-link:focus-visible {
	color: var(--jico-home-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__action {
	min-width: 0;
	min-height: 0;
	padding: 0 18px 0 0;
	border: 0;
	color: var(--jico-home-accent);
	background: transparent;
	font-size: 13px;
	font-weight: 500;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__action::after {
	position: absolute;
	margin: 5px 0 0 7px;
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__action:hover {
	color: var(--jico-home-accent-hover);
	background: transparent;
}

.jico-fs-home .jico-fs-home__card .jico-fs-home__action:hover::after {
	transform: translateX(3px) rotate(45deg);
}

/* Products are light, image-led catalog tiles like the FS explorer. */
.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
	background: #ffffff;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-media-image {
	height: 145px;
	object-fit: contain;
	padding: 0;
	background: #f7f7f7;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card:not(.jico-fs-home__card--has-links) {
	height: 352px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links {
	height: auto;
	min-height: 352px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-media {
	flex: 0 0 145px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-content {
	flex: 0 0 207px;
	min-height: 207px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links .jico-fs-home__card-content {
	flex: 1 1 auto;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-content,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-content {
	align-items: flex-start;
	padding: 13px 14px 16px;
	text-align: left;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-title {
	font-size: 14px;
	line-height: 22px;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-title {
	width: 100%;
	height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-description,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-description {
	-webkit-line-clamp: 2;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links .jico-fs-home__card-description {
	display: none;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links .jico-fs-home__card-title-link {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links .jico-fs-home__card-link {
	line-height: 20px;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card:hover .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card:focus-within .jico-fs-home__card-title {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Horizontal catalog rows retain four desktop columns per viewport. */
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 1px 12px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid::-webkit-scrollbar {
	display: none;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__product-page {
	display: grid;
	flex: 0 0 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	min-width: 0;
	scroll-snap-align: start;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
	width: 100%;
	height: 302px;
	padding: 20px;
	border: 0;
	border-radius: 8px;
	background: #fafafa;
	scroll-snap-align: start;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media {
	flex: 0 0 180px;
	width: 180px;
	margin: 0 auto;
	border-radius: 8px;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media-image {
	width: 180px;
	height: 180px;
	object-fit: contain;
	padding: 0;
	background: #fafafa;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-content {
	align-items: flex-start;
	min-height: 0;
	padding: 16px 0 0;
	text-align: left;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-description {
	margin-top: 4px;
}

/* Alternating pale bands match the reference page's quiet section rhythm. */
.jico-fs-home [data-jico-home-layout="category-grid"].jico-fs-home__section--featured,
.jico-fs-home [data-jico-home-layout="category-grid"].jico-fs-home--theme-neutral {
	background: var(--jico-home-soft);
	box-shadow: 0 0 0 100vmax var(--jico-home-soft);
	clip-path: inset(0 -100vmax);
}

/* OEM and solution image cards. */
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card {
	height: 287px;
	min-height: 287px;
	border: 0;
	background: #ffffff;
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-media-image {
	height: 160px;
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-media,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-media {
	flex: 0 0 160px;
	background: var(--jico-home-soft);
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-content,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-content {
	flex: 0 0 127px;
	min-height: 127px;
	padding: 20px;
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-description,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-description {
	margin-top: 4px;
	-webkit-line-clamp: 3;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-media-image {
	height: 217px;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card {
	height: 366px;
	border: 0;
	background: #ffffff;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-media {
	flex: 0 0 217px;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-content {
	flex: 0 0 149px;
	min-height: 149px;
	padding: 20px;
}

/* Case cards use the reference layout's text-only content rail. Decorative
 * backend icons stay stored and editable, but do not consume the fixed rail. */
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-content > .jico-fs-home__icon {
	display: none;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-title {
	display: -webkit-box;
	min-height: 44px;
	overflow: hidden;
	font-size: 14px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card .jico-fs-home__eyebrow {
	min-height: 20px;
	margin: 0 0 12px;
	color: var(--jico-home-copy);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	text-transform: none;
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-description {
	display: block;
	width: 100%;
	height: 20px;
	margin-top: 12px;
	overflow: hidden;
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* The five reference content bands use two distinct hover treatments and do
 * not zoom their imagery. */
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card:hover,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card:focus-within,
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:hover,
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:focus-within,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:hover,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:focus-within {
	border-color: transparent;
	box-shadow: 0 15px 15px -10px rgb(0 0 0 / 15%);
}

.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:hover,
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:focus-within {
	border-color: transparent;
	box-shadow: none;
}

.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card:hover .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card:focus-within .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:hover .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:focus-within .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:hover .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:focus-within .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:hover .jico-fs-home__card-media-image,
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:focus-within .jico-fs-home__card-media-image {
	transform: none;
}

.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:hover .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card:focus-within .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:hover .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card:focus-within .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:hover .jico-fs-home__card-title,
.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card:focus-within .jico-fs-home__card-title {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Quick links ----------------------------------------------------------- */

.jico-fs-home .jico-fs-home__section--quick-links {
	padding-top: 22px;
	padding-bottom: 22px;
}

.jico-fs-home .jico-fs-home__quick-links-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	border: 1px solid var(--jico-home-line);
	list-style: none;
}

.jico-fs-home .jico-fs-home__quick-link-item {
	min-width: 0;
	border-right: 1px solid var(--jico-home-line);
}

.jico-fs-home .jico-fs-home__quick-link-item:last-child {
	border-right: 0;
}

.jico-fs-home .jico-fs-home__quick-link {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 86px;
	padding: 13px 17px;
	background: #ffffff;
	transition: background-color 180ms ease;
}

.jico-fs-home a.jico-fs-home__quick-link:hover {
	background: #f7f7f7;
}

.jico-fs-home .jico-fs-home__quick-link-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.jico-fs-home .jico-fs-home__quick-link-copy strong {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.jico-fs-home .jico-fs-home__quick-link-copy > span {
	margin-top: 3px;
	color: var(--jico-home-muted);
	font-size: 12px;
	line-height: 1.4;
}

/* Decorative icons use only CSS and renderer-owned allowlisted keys. */
.jico-fs-home .jico-fs-home__icon {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #d4d4d4;
	border-radius: 50%;
	color: var(--jico-home-accent);
	background: #ffffff;
}

.jico-fs-home .jico-fs-home__icon::before {
	display: block;
	width: 12px;
	height: 12px;
	border: 1.5px solid currentColor;
	content: "";
}

.jico-fs-home .jico-fs-home__icon[data-jico-home-icon="lens"]::before {
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 3px currentColor;
}

.jico-fs-home .jico-fs-home__icon[data-jico-home-icon="engine"]::before {
	border-radius: 2px;
	box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 3px currentColor;
}

.jico-fs-home .jico-fs-home__icon[data-jico-home-icon="projector"]::before {
	width: 15px;
	height: 9px;
	border-radius: 2px;
}

.jico-fs-home .jico-fs-home__icon[data-jico-home-icon="projector"]::after {
	position: absolute;
	right: 8px;
	width: 4px;
	height: 4px;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
}

.jico-fs-home .jico-fs-home__icon[data-jico-home-icon="arrow"]::before {
	width: 10px;
	height: 10px;
	border-width: 1.5px 1.5px 0 0;
	transform: rotate(45deg);
}

/* Product-family glyphs stay data driven, but no longer collapse the final
 * four families into the same placeholder chevron. */
.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="design"]::before {
	width: 14px;
	height: 14px;
	border-radius: 2px;
	box-shadow: inset 0 0 0 3px #f5f5f5, inset 0 0 0 4px currentColor;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="manufacturing"]::before {
	width: 15px;
	height: 11px;
	border-radius: 1px;
	background: linear-gradient(90deg, transparent 0 26%, currentColor 27% 35%, transparent 36% 62%, currentColor 63% 71%, transparent 72%);
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="manufacturing"]::after {
	position: absolute;
	top: 22px;
	left: 50%;
	width: 14px;
	height: 5px;
	border: 1.5px solid currentColor;
	border-bottom: 0;
	content: "";
	transform: translateX(-50%) skewX(-32deg);
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="support"]::before {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	box-shadow: 4px 4px 0 -1px #f5f5f5, 4px 4px 0 0 currentColor;
	transform: translate(-2px, -2px);
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="resource"]::before {
	width: 15px;
	height: 8px;
	border-radius: 4px;
	box-shadow: inset 4px 0 0 -2px #f5f5f5, inset 5.5px 0 0 -2px currentColor;
}

.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__icon[data-jico-home-icon="resource"]::after {
	position: absolute;
	top: 50%;
	left: calc(50% + 3px);
	width: 4px;
	height: 4px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

/* Engineering proof strip --------------------------------------------- */

.jico-fs-home .jico-fs-home__proof-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jico-fs-home .jico-fs-home__proof-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 198px;
	min-height: 198px;
	padding: 28px;
	border: 0;
	border-radius: var(--jico-home-radius);
	background: var(--jico-home-soft);
	text-align: center;
}

.jico-fs-home .jico-fs-home__proof-item .jico-fs-home__icon {
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
}

.jico-fs-home .jico-fs-home__proof-item:nth-child(-n + 3) {
	height: 218px;
	min-height: 218px;
}

.jico-fs-home .jico-fs-home__proof-item strong {
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
}

.jico-fs-home .jico-fs-home__proof-item > span:not(.jico-fs-home__icon) {
	margin-top: 5px;
	color: var(--jico-home-copy);
	font-size: 12px;
	line-height: 20px;
}

/* Final information cards --------------------------------------------- */

.jico-fs-home .jico-fs-home__final-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.jico-fs-home .jico-fs-home__final-cta-inner > .jico-fs-home__rich-text {
	max-width: 720px;
	margin: 0 auto;
	color: var(--jico-home-copy);
	text-align: center;
}

.jico-fs-home .jico-fs-home__final-cta-inner > .jico-fs-home__actions {
	justify-content: center;
}

.jico-fs-home .jico-fs-home__final-cta-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	margin-top: 4px;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card {
	height: 130px;
	min-height: 130px;
	border: 0;
	border-radius: var(--jico-home-radius);
	background: var(--jico-home-soft);
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card-content {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	grid-template-rows: auto auto auto;
	align-content: center;
	align-items: center;
	column-gap: 16px;
	padding: 18px 24px;
	text-align: left;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__icon {
	grid-row: 1 / 4;
	width: 36px;
	height: 36px;
	margin: 0;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card-title {
	align-self: end;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card-description {
	align-self: start;
	margin-top: 3px;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card .jico-fs-home__actions {
	grid-column: 2;
	margin: 3px 0 0;
	padding: 0;
}

.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card .jico-fs-home__action {
	font-size: 12px;
	line-height: 16px;
}

/* Generic grid pagination created by home.js --------------------------- */

.jico-fs-home .jico-fs-home__grid-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-height: 34px;
	margin-top: 14px;
}

.jico-fs-home .jico-fs-home__grid-pagination[hidden] {
	display: none !important;
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease;
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow::before {
	position: absolute;
	inset: 5px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	content: "";
	background: #ffffff;
	transition: border-color 180ms ease;
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow:hover:not(:disabled),
.jico-fs-home .jico-fs-home__grid-pagination-arrow:focus-visible:not(:disabled) {
	color: var(--jico-home-accent);
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow:hover:not(:disabled)::before,
.jico-fs-home .jico-fs-home__grid-pagination-arrow:focus-visible:not(:disabled)::before {
	border-color: var(--jico-home-accent);
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow span {
	position: relative;
	z-index: 1;
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow--previous span {
	transform: translateX(2px) rotate(-135deg);
}

.jico-fs-home .jico-fs-home__grid-pagination-arrow--next span {
	transform: translateX(-2px) rotate(45deg);
}

.jico-fs-home .jico-fs-home__grid-pagination-dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.jico-fs-home .jico-fs-home__grid-pagination-dot {
	position: relative;
	width: 44px;
	height: 44px;
	margin: -18px 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: width 180ms ease;
}

.jico-fs-home .jico-fs-home__grid-pagination-dot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	content: "";
	background: var(--jico-home-copy);
	opacity: 0.4;
	transform: translate(-50%, -50%);
	transition: width 180ms ease, border-radius 180ms ease, opacity 180ms ease;
}

.jico-fs-home .jico-fs-home__grid-pagination-dot[aria-current="true"]::before {
	width: 20px;
	border-radius: 4px;
	opacity: 1;
}

.jico-fs-home .jico-fs-home__grid-pagination-dot[aria-current="true"] {
	width: 56px;
}

/* Desktop product carousels use the reference site's centred 8px bullets. */
@media (min-width: 769px) {
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid {
		padding: 0;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination {
		justify-content: center;
		min-height: 8px;
		height: 8px;
		margin-top: 20px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow {
		position: absolute;
		top: 183px;
		display: inline-flex;
		width: 48px;
		height: 48px;
		opacity: 0;
		pointer-events: none;
		color: #ffffff;
		transition: opacity 180ms ease, color 180ms ease;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow::before {
		inset: 0;
		border: 0;
		background: rgb(0 0 0 / 20%);
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow:disabled::before {
		background: rgb(0 0 0 / 5%);
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow--previous {
		left: -16px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow--next {
		right: -16px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-dots {
		display: flex;
	}
}

@media (min-width: 769px) and (max-width: 1199px) {
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow--previous {
		left: 0;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination-arrow--next {
		right: 0;
	}
}

/* Fine-pointer desktops reveal large edge arrows on intent, as FS does. */
@media (min-width: 769px) and (hover: hover) {
	.jico-fs-home .jico-fs-home__carousel-arrow {
		opacity: 0;
		pointer-events: none;
	}

	.jico-fs-home .jico-fs-home__carousel:hover .jico-fs-home__carousel-arrow,
	.jico-fs-home .jico-fs-home__carousel:focus-within .jico-fs-home__carousel-arrow {
		opacity: 1;
		pointer-events: auto;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"]:hover .jico-fs-home__grid-pagination-arrow,
	.jico-fs-home [data-jico-home-layout="category-grid"]:focus-within .jico-fs-home__grid-pagination-arrow {
		opacity: 1;
		pointer-events: auto;
	}
}

/* Controlled themes and alignment ------------------------------------- */

.jico-fs-home .jico-fs-home--theme-dark {
	color: #ffffff;
	background-color: #202020;
}

.jico-fs-home .jico-fs-home--theme-brand {
	color: #ffffff;
	background-color: var(--jico-home-accent);
}

.jico-fs-home .jico-fs-home--align-center {
	text-align: center;
}

.jico-fs-home .jico-fs-home--align-center .jico-fs-home__actions {
	justify-content: center;
}

/* Tablet: keep desktop columns and horizontal catalog behavior. */
@media (min-width: 769px) and (max-width: 1199px) {
	.jico-fs-home {
		--jico-home-gutter: 24px;
	}

	.jico-fs-home .jico-fs-home--hide-tablet {
		display: none !important;
	}

	.jico-fs-home .jico-fs-home__slide-content {
		width: min(620px, 60%);
	}

	.jico-fs-home .jico-fs-home__slide-title {
		font-size: 36px;
		line-height: 48px;
	}

	.jico-fs-home .jico-fs-home__tab {
		min-width: 112px;
		padding-inline: 12px;
	}

	.jico-fs-home .jico-fs-home__card-media-image {
		height: 166px;
	}
}

@media (min-width: 1200px) {
	.jico-fs-home .jico-fs-home--hide-desktop {
		display: none !important;
	}
}

/* Eight families stay visible across the full tablet band; only mobile scrolls. */
@media (min-width: 769px) and (max-width: 1024px) {
	.jico-fs-home [data-jico-home-layout="product-tabs"] {
		padding-right: 32px;
		padding-left: 32px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab-list {
		width: 100%;
		overflow-x: hidden;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab {
		flex: 1 1 12.5%;
		width: auto;
		min-width: 0;
		padding-right: 4px;
		padding-left: 4px;
		font-size: 12px;
		line-height: 18px;
		white-space: normal;
		text-align: center;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab > span:last-child {
		max-width: 100%;
		min-height: 36px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab > span:last-child::after {
		bottom: -8px;
	}

	/* Four tablet columns remain visible, while product art scales inside each
	 * card instead of being clipped by the desktop 180px media rail. */
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media {
		flex: 0 0 auto;
		width: min(180px, 100%);
		max-width: 100%;
		height: auto;
		aspect-ratio: 1;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media-image {
		width: 100%;
		height: 100%;
		aspect-ratio: 1;
	}
}

/* Inherited Header links retain Header's own 1024px navigation breakpoint. */
@media (min-width: 1025px) {
	.jico-fs-home .jico-fs-home--source-hide-desktop {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.jico-fs-home .jico-fs-home--source-hide-mobile {
		display: none !important;
	}
}

/* Narrow tablets retain the desktop topology and only tighten gutters. */
@media (max-width: 819px) {
	.jico-fs-home {
		--jico-home-gutter: 16px;
	}
}

/* The reference switches to its true mobile topology at 768px. */
@media (max-width: 768px) {
	.jico-fs-home .jico-fs-home--hide-mobile {
		display: none !important;
	}

	.jico-fs-home > .jico-fs-home__section {
		padding: 32px var(--jico-home-gutter) 36px;
	}

	.jico-fs-home > [data-jico-home-layout="category-grid"],
	.jico-fs-home > [data-jico-home-layout="promo-mosaic"],
	.jico-fs-home > [data-jico-home-layout="solution-grid"],
	.jico-fs-home > [data-jico-home-layout="resource-cards"] {
		padding-top: 0;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] {
		padding-top: 0;
	}

	.jico-fs-home .jico-fs-home__section-header {
		align-items: flex-start;
		margin-bottom: 18px;
		text-align: left;
	}

	.jico-fs-home .jico-fs-home__section-title {
		font-size: 24px;
		font-weight: 600;
		letter-spacing: 0;
		line-height: 28px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__section-title {
		font-size: 24px;
		line-height: 32px;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__section-title,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__section-title,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__section-title {
		font-size: 20px;
		line-height: 28px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__section-header,
	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__section-header,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__section-header,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__section-header {
		margin-bottom: 24px;
	}

	.jico-fs-home .jico-fs-home__section-description {
		margin-left: 0;
		font-size: 13px;
	}

	.jico-fs-home > .jico-fs-home__section--hero-carousel {
		height: auto;
		min-height: 0;
		padding: 0;
		aspect-ratio: 16 / 9;
	}

	.jico-fs-home .jico-fs-home__slide-media::after {
		background: linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 42%) 68%, rgb(0 0 0 / 12%) 100%);
	}

	.jico-fs-home .jico-fs-home__slide-media-image {
		object-position: 58% center;
	}

	.jico-fs-home .jico-fs-home__slide-inner {
		align-items: center;
		justify-content: center;
		padding: 14px var(--jico-home-gutter) 28px;
		text-align: center;
	}

	.jico-fs-home .jico-fs-home__slide-content {
		width: min(82%, 560px);
		margin: 0 auto;
	}

	.jico-fs-home .jico-fs-home__slide .jico-fs-home__eyebrow {
		margin-bottom: 5px;
		font-size: 9px;
	}

	.jico-fs-home .jico-fs-home__slide-title {
		display: -webkit-box;
		max-height: 54px;
		overflow: hidden;
		font-size: 22px;
		font-weight: 600;
		letter-spacing: 0;
		line-height: 28px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		text-align: center;
	}

	.jico-fs-home .jico-fs-home__slide .jico-fs-home__eyebrow,
	.jico-fs-home .jico-fs-home__slide .jico-fs-home__badge,
	.jico-fs-home .jico-fs-home__slide-description,
	.jico-fs-home .jico-fs-home__slide .jico-fs-home__rich-text,
	.jico-fs-home .jico-fs-home__slide .jico-fs-home__actions {
		display: none !important;
	}

	.jico-fs-home .jico-fs-home__carousel-controls {
		inset: 0;
		display: block;
		padding-inline: var(--jico-home-gutter);
	}

	.jico-fs-home .jico-fs-home__carousel-arrow {
		display: none !important;
	}

	.jico-fs-home .jico-fs-home__carousel-toggle {
		width: 1px;
		height: 1px;
		margin: -1px;
	}

	.jico-fs-home .jico-fs-home__carousel-dots {
		bottom: 5px;
	}

	.jico-fs-home .jico-fs-home__carousel-dots button {
		width: 44px;
	}

	.jico-fs-home .jico-fs-home__carousel-dots button[aria-current="true"] {
		width: 56px;
	}

	.jico-fs-home .jico-fs-home__section--quick-links {
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.jico-fs-home .jico-fs-home__quick-links-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jico-fs-home .jico-fs-home__quick-link-item {
		border-bottom: 1px solid var(--jico-home-line);
	}

	.jico-fs-home .jico-fs-home__quick-link-item:nth-child(2n) {
		border-right: 0;
	}

	.jico-fs-home .jico-fs-home__quick-link-item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.jico-fs-home .jico-fs-home__quick-link {
		gap: 9px;
		min-height: 70px;
		padding: 10px;
	}

	.jico-fs-home .jico-fs-home__quick-link-copy > span {
		display: none;
	}

	.jico-fs-home .jico-fs-home__quick-link-copy strong {
		font-size: 12px;
	}

	.jico-fs-home .jico-fs-home__quick-link .jico-fs-home__icon {
		width: 28px;
		height: 28px;
	}

	.jico-fs-home .jico-fs-home__tab-list {
		justify-content: flex-start;
		margin-right: calc(-1 * var(--jico-home-gutter));
		margin-bottom: 16px;
		padding-right: var(--jico-home-gutter);
		scroll-snap-type: x proximity;
	}

	.jico-fs-home .jico-fs-home__tab {
		min-width: auto;
		min-height: 42px;
		padding: 8px 14px 11px;
		font-size: 13px;
		scroll-snap-align: start;
	}

	.jico-fs-home .jico-fs-home__tab .jico-fs-home__icon {
		display: none;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab-list {
		gap: 0;
		height: 152px;
		min-height: 152px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab {
		flex: 0 0 80px;
		gap: 10px;
		width: 80px;
		min-width: 80px;
		height: 152px;
		min-height: 152px;
		padding: 17px 0 16px;
		white-space: normal;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__tab .jico-fs-home__icon {
		display: inline-flex;
		width: 64px;
		height: 64px;
	}

	/* Product families use the measured 343px-wide 2 x 2 mobile page. */
	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	/* New and recommended products page as 2 x 2 snap groups. */
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid {
		display: flex;
		gap: 12px;
		padding: 0;
		scroll-snap-type: x mandatory;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__product-page {
		display: grid;
		flex: 0 0 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(2, auto);
		gap: 12px;
		width: 100%;
		scroll-snap-align: start;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
		width: 100%;
		min-height: 100%;
		scroll-snap-align: none;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card:not(.jico-fs-home__card--has-links) {
		height: 352px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card {
		min-height: 352px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-media,
	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-media-image {
		flex: 0 0 145px;
		height: 145px;
		padding: 0;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-content {
		flex: 0 0 207px;
		min-height: 207px;
		padding: 14px 10px 16px;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card--has-links .jico-fs-home__card-content {
		flex: 1 1 auto;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-title,
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-title {
		font-size: 14px;
		line-height: 22px;
	}

	.jico-fs-home .jico-fs-home__card-link {
		font-size: 11px;
		line-height: 20px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-description {
		display: -webkit-box;
		height: 60px;
		margin-top: 4px;
		font-size: 12px;
		line-height: 20px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.jico-fs-home [data-jico-home-layout="product-tabs"] .jico-fs-home__card-description {
		display: -webkit-box;
		font-size: 12px;
		line-height: 18px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
		height: 287px;
		min-height: 287px;
		padding: 20px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media {
		flex: 0 0 145px;
		width: 100%;
		max-width: none;
		height: 145px;
		padding: 0;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media-image {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		object-fit: contain;
		padding: 0;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-content {
		min-height: 0;
		padding: 16px 0 0;
	}

	/* Software/OEM, Solutions and Cases are measured single-card tracks. */
	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__grid,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__grid,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__grid {
		display: flex;
		gap: 12px;
		width: 100%;
		margin: 0;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 2px 0 8px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		overscroll-behavior-inline: contain;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__grid::-webkit-scrollbar,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__grid::-webkit-scrollbar,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__grid::-webkit-scrollbar {
		display: none;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: start;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card {
		height: auto;
		min-height: 0;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-media,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-media,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-media {
		flex: 0 0 auto;
		height: auto;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-media-image,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-media-image,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-media-image {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-content,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-content,
	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-content {
		flex: 0 0 127px;
		min-height: 127px;
	}

	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card {
		height: auto;
		min-height: 0;
	}

	.jico-fs-home [data-jico-home-layout="resource-cards"] .jico-fs-home__card-content {
		flex-basis: 149px;
		min-height: 149px;
	}

	/* Certified/engineering pages three vertically stacked proofs at a time. */
	.jico-fs-home [data-jico-home-layout="proof-strip"] .jico-fs-home__proof-list {
		display: grid;
		grid-auto-columns: 100%;
		grid-auto-flow: column;
		grid-template-columns: none;
		grid-template-rows: repeat(3, minmax(0, auto));
		gap: 12px;
		width: 100%;
		margin: 0;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 2px 0 8px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		overscroll-behavior-inline: contain;
	}

	.jico-fs-home [data-jico-home-layout="proof-strip"] .jico-fs-home__proof-list::-webkit-scrollbar {
		display: none;
	}

	.jico-fs-home [data-jico-home-layout="proof-strip"] .jico-fs-home__proof-item,
	.jico-fs-home [data-jico-home-layout="proof-strip"] .jico-fs-home__proof-item:nth-child(-n + 3) {
		display: grid;
		grid-template-columns: 64px minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 16px;
		width: 100%;
		height: 112px;
		min-height: 112px;
		padding: 20px;
		text-align: left;
		scroll-snap-align: start;
	}

	.jico-fs-home [data-jico-home-layout="proof-strip"] .jico-fs-home__proof-item .jico-fs-home__icon {
		grid-row: 1 / 3;
		margin: 0;
	}

	/* Contact cards remain a simple vertical stack on mobile. */
	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__final-cta-items {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card {
		width: 100%;
		height: 130px;
		min-height: 130px;
	}

	.jico-fs-home .jico-fs-home__grid-pagination {
		justify-content: center;
		height: 8px;
		min-height: 8px;
		margin-top: 10px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__grid-pagination {
		margin-top: 20px;
	}

	.jico-fs-home .jico-fs-home__grid-pagination-arrow {
		display: none;
	}

	.jico-fs-home .jico-fs-home__grid-pagination-dots {
		display: flex;
	}

	.jico-fs-home .jico-fs-home__card:hover,
	.jico-fs-home .jico-fs-home__card:focus-within {
		transform: none;
	}
}

/* 768px needs its own card geometry; it is not a stretched phone layout. */
@media (min-width: 600px) and (max-width: 768px) {
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
		height: 287px;
		min-height: 287px;
		padding: 20px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media,
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media-image {
		flex-basis: 145px;
		width: 145px;
		height: 145px;
	}

	/* FS keeps one full-width image card at this breakpoint, but compresses the
	 * OEM/Solutions copy rail to one title and one description line. */
	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-content,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-content {
		flex-basis: 87px;
		min-height: 87px;
	}

	.jico-fs-home [data-jico-home-layout="promo-mosaic"] .jico-fs-home__card-description,
	.jico-fs-home [data-jico-home-layout="solution-grid"] .jico-fs-home__card-description {
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-line-clamp: 1;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card {
		height: 104px;
		min-height: 104px;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card-content {
		padding: 18px 24px;
	}
}

@media (max-width: 599px) {
	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
		height: 287px;
		min-height: 287px;
		padding: 20px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media {
		flex-basis: 145px;
		width: 100%;
		max-width: none;
		height: 145px;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card {
		height: 112px;
		min-height: 112px;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card-content {
		padding: 20px;
	}
}

@media (max-width: 360px) {
	.jico-fs-home .jico-fs-home__slide-title {
		max-height: 48px;
		font-size: 18px;
		line-height: 24px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card {
		height: 287px;
		min-height: 287px;
	}

	.jico-fs-home [data-jico-home-layout="category-grid"] .jico-fs-home__card-media {
		flex-basis: 145px;
		width: 100%;
		max-width: none;
		height: 145px;
	}

	.jico-fs-home [data-jico-home-layout="final-cta"] .jico-fs-home__card {
		height: 104px;
		min-height: 104px;
	}
}

@media (max-width: 420px) {
	.jico-fs-home .jico-fs-home__slide-content {
		width: 100%;
	}

	.jico-fs-home .jico-fs-home__slide-title {
		font-size: 20px;
	}

}

@media (max-width: 360px) {
	.jico-fs-home .jico-fs-home__slide-title {
		font-size: 18px;
	}
}

/* Keep the native pause/play action discoverable without adding a large visual
 * chrome element: the glyph is small, while its mouse/touch target is 44px. */
.jico-fs-home .jico-fs-home__carousel-toggle:not([hidden]) {
	top: auto;
	right: calc(var(--jico-home-gutter) + 52px);
	bottom: 4px;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	color: rgb(255 255 255 / 80%);
	background: transparent;
	white-space: normal;
	transform: none;
}

.jico-fs-home .jico-fs-home__carousel-toggle:not([hidden]):hover,
.jico-fs-home .jico-fs-home__carousel-toggle:not([hidden]):focus-visible {
	color: #ffffff;
	background: rgb(0 0 0 / 45%);
}

@media (max-width: 768px) {
	/* Keep the 44px pause/play target clear of the full-width mobile dot row. */
	.jico-fs-home .jico-fs-home__carousel-toggle:not([hidden]) {
		top: 4px;
		right: 4px;
		bottom: auto;
	}
}

/* Motion and high-contrast resilience --------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.jico-fs-home *,
	.jico-fs-home *::before,
	.jico-fs-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (forced-colors: active) {
	.jico-fs-home .jico-fs-home__carousel-dots button::before,
	.jico-fs-home .jico-fs-home__grid-pagination-dot::before {
		border: 1px solid ButtonText;
	}

	.jico-fs-home .jico-fs-home__carousel-dots button[aria-current="true"]::before,
	.jico-fs-home .jico-fs-home__grid-pagination-dot[aria-current="true"]::before {
		background: Highlight;
	}
}
