:root {
	--top-charcoal: #1f252a;
	--top-charcoal-2: #30373c;
	--top-steel: #5f6568;
	--top-blue: #174f70;
	--top-hero-blue: #0f587f;
	--top-blue-2: #3e4850;
	--top-orange: #ff6a00;
	--top-orange-dark: #d95700;
	--top-white: #ffffff;
	--top-bg: #f2f4f5;
	--top-soft: #e9eef1;
	--top-ink: #15191d;
	--top-muted: #68727a;
	--top-line: rgba(35, 42, 49, 0.13);
	--top-card: #ffffff;
	--top-shadow: 0 14px 30px rgba(35, 42, 49, 0.14);
	--top-radius: 6px;
	--top-container: min(1148px, calc(100vw - 128px));
	--top-home-grid: min(1040px, calc(100vw - 128px));
	--top-header-top-height: 28px;
	--top-header-main-height: 82px;
	--top-hero-height: 500px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	background: var(--top-bg);
	color: var(--top-ink);
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.top-container {
	width: var(--top-container);
	margin: 0 auto;
}

.top-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 16px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 10.5px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.top-button:hover {
	transform: translateY(-1px);
}

.top-button--primary {
	background: var(--top-orange);
	color: var(--top-white);
}

.top-button--primary:hover {
	background: var(--top-orange-dark);
}

.top-button--dark {
	background: var(--top-charcoal);
	color: var(--top-white);
}

.top-button--industrial {
	background: var(--top-hero-blue);
	color: var(--top-white);
}

.top-button--industrial:hover {
	background: #0b4767;
}

.top-button--light {
	background: var(--top-white);
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--top-charcoal);
}

.top-site-header {
	position: sticky;
	top: 0;
	z-index: 70;
	background: var(--top-white);
	box-shadow: 0 1px 0 rgba(35, 42, 49, 0.08);
}

.top-header-bar {
	background: var(--top-steel);
	color: var(--top-white);
	font-size: 12px;
}

.top-header-bar__inner,
.top-header-bar__contact,
.top-header-bar__meta {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: var(--top-header-top-height);
}

.top-header-bar__inner {
	justify-content: space-between;
}

.top-header-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
}

.top-header-bar svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.top-main-nav__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: var(--top-header-main-height);
}

.top-logo {
	display: inline-flex;
	align-items: center;
	gap: 0;
	min-width: 230px;
	height: var(--top-header-main-height);
}

.top-logo__mark {
	display: grid;
	place-items: center;
	flex: 0 0 230px;
	width: 230px;
	height: 55px;
	overflow: hidden;
	background: var(--top-white);
}

.top-logo__mark img {
	width: 230px;
	height: 55px;
	object-fit: contain;
	object-position: center;
}

.top-logo__wordmark {
	display: none;
	gap: 1px;
	line-height: 1;
}

.top-logo__wordmark strong {
	color: var(--top-charcoal);
	font-size: 21px;
	font-weight: 900;
	letter-spacing: 0;
}

.top-logo__wordmark small {
	color: var(--top-muted);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: lowercase;
}

.top-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-menu li {
	position: relative;
}

.top-menu a {
	display: inline-flex;
	align-items: center;
	min-height: var(--top-header-main-height);
	color: #111820;
}

.top-menu > li > a:hover {
	color: var(--top-hero-blue);
}

.top-menu .has-flyout > a::after,
.top-menu .menu-item-has-children > a::after {
	content: "";
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 4px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.top-flyout,
.top-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: grid;
	gap: 0;
	min-width: 286px;
	margin: 0;
	padding: 12px;
	background: var(--top-white);
	border: 1px solid rgba(35, 42, 49, 0.1);
	border-radius: 0 0 3px 3px;
	box-shadow: 0 13px 26px rgba(35, 42, 49, 0.14);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.has-flyout:hover .top-flyout,
.top-menu .menu-item-has-children:hover > .sub-menu,
.top-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.top-flyout a,
.top-menu .sub-menu a {
	display: grid;
	gap: 3px;
	align-items: center;
	min-height: 50px;
	padding: 8px 12px;
	color: var(--top-charcoal);
	font-size: 12px;
	font-weight: 700;
	text-transform: none;
	white-space: nowrap;
}

.top-flyout strong {
	display: block;
	margin: 0 0 6px;
	padding: 0 12px 10px;
	border-bottom: 1px solid var(--top-line);
	color: var(--top-orange-dark);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-flyout a span {
	font-size: 12px;
	font-weight: 900;
}

.top-flyout a small {
	color: var(--top-muted);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.1;
}

.top-flyout .top-flyout__all {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	margin-top: 6px;
	background: var(--top-charcoal);
	color: var(--top-white);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-flyout a:hover,
.top-menu .sub-menu a:hover {
	background: var(--top-soft);
}

.top-flyout .top-flyout__all:hover {
	background: var(--top-orange);
}

.top-nav-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 300px;
}

.top-header-quote {
	min-height: 42px;
	padding: 0 24px;
	border-radius: 4px;
	box-shadow: 0 8px 16px rgba(255, 106, 0, 0.24);
}

.top-header-search {
	position: relative;
	display: block;
	width: 154px;
	height: 36px;
}

.top-header-search input[type="search"] {
	width: 100%;
	height: 36px;
	border: 1px solid rgba(35, 42, 49, 0.13);
	border-radius: 3px;
	padding: 0 34px 0 11px;
	background: #f8fafb;
	color: var(--top-ink);
	caret-color: var(--top-ink);
	font-size: 12px;
	font-weight: 700;
	opacity: 1;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, width 160ms ease;
}

.top-header-search input[type="search"]:focus {
	border-color: rgba(255, 106, 0, 0.72);
	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.top-header-search__button {
	position: absolute;
	top: 4px;
	right: 5px;
	width: 28px;
	height: 28px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.top-header-search__button::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 6px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--top-charcoal);
	border-radius: 50%;
}

.top-header-search__button::after {
	content: "";
	position: absolute;
	top: 17px;
	left: 16px;
	width: 7px;
	height: 2px;
	background: var(--top-charcoal);
	transform: rotate(45deg);
	transform-origin: left center;
}

.top-floating-contact {
	position: fixed;
	right: 16px;
	top: 42%;
	z-index: 60;
	display: grid;
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0 12px 26px rgba(18, 29, 38, 0.24);
}

.top-floating-contact a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--top-blue);
	color: var(--top-white);
	font-size: 11px;
	font-weight: 800;
}

.top-floating-contact svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.top-floating-contact a:nth-child(3) {
	background: var(--top-orange);
}

.top-mobile-action-bar {
	display: none;
}

.top-mobile-action-bar svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.top-hero {
	position: relative;
	min-height: var(--top-hero-height);
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(10, 17, 23, 0.34), rgba(10, 17, 23, 0.1)),
		url("../images/generated/hero-industrial-automation-clean.webp") center / cover no-repeat;
	color: var(--top-white);
	isolation: isolate;
}

.top-hero::after {
	content: none;
}

.top-hero__shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(7, 13, 20, 0.38) 0%, rgba(7, 13, 20, 0.24) 42%, rgba(7, 13, 20, 0.1) 78%, rgba(7, 13, 20, 0.05) 100%),
		linear-gradient(90deg, rgba(5, 10, 16, 0.55), rgba(5, 10, 16, 0.1) 48%, rgba(5, 10, 16, 0.28));
	z-index: -1;
}

.top-hero__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: var(--top-hero-height);
	padding: 52px 0 44px;
	text-align: center;
}

.top-hero__eyebrow,
.top-section-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: var(--top-orange);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.top-hero__eyebrow {
	min-height: 28px;
	padding: 0 12px;
	background: rgba(7, 12, 17, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 2px;
	color: #fff0e5;
	backdrop-filter: blur(6px);
}

.top-hero h1 {
	display: grid;
	gap: 0;
	max-width: 1120px;
	margin: 0;
	font-size: clamp(46px, 4.35vw, 70px);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
	text-shadow: 0 3px 13px rgba(0, 0, 0, 0.78);
}

.top-hero h1 span {
	display: block;
	white-space: nowrap;
}

.top-hero p {
	max-width: 760px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(17px, 1.35vw, 22px);
	font-weight: 800;
	line-height: 1.42;
	text-transform: none;
	text-shadow: 0 3px 13px rgba(0, 0, 0, 0.78);
}

.top-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.top-hero .top-button {
	min-height: 42px;
	min-width: 168px;
	border-radius: 3px;
	font-size: 12px;
}

.top-hero .top-button--industrial {
	background: var(--top-orange);
	box-shadow: 0 10px 22px rgba(255, 106, 0, 0.26);
}

.top-hero .top-button--industrial:hover {
	background: var(--top-orange-dark);
}

.top-hero .top-button--light {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.92);
	color: var(--top-white);
}

.top-hero .top-button--light:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: var(--top-white);
}

.top-hero__dots {
	display: none;
}

.top-hero__dots span {
	width: 30px;
	height: 3px;
	background: rgba(255, 255, 255, 0.84);
}

.top-hero__dots span:first-child {
	background: var(--top-hero-blue);
}

.top-hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	width: min(590px, 100%);
	margin-top: 24px;
}

.top-hero-proof span {
	display: grid;
	gap: 2px;
	min-height: 56px;
	align-content: center;
	background: rgba(8, 14, 20, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-left: 3px solid var(--top-orange);
	border-radius: 3px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	backdrop-filter: blur(7px);
}

.top-hero-proof strong {
	color: var(--top-white);
	font-size: 24px;
	line-height: 0.95;
}

.top-brand-strip {
	background: #20272d;
	color: rgba(255, 255, 255, 0.78);
}

.top-brand-strip .top-container {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	min-height: 54px;
	align-items: center;
}

.top-brand-strip a {
	position: relative;
	display: grid;
	place-items: center;
	height: 100%;
	border-left: 1px solid rgba(255, 255, 255, 0.09);
	outline: none;
	transition: background 160ms ease, color 160ms ease;
}

.top-brand-strip a::after {
	content: "";
	position: absolute;
	right: 18%;
	bottom: 0;
	left: 18%;
	height: 2px;
	background: var(--top-orange);
	opacity: 0;
	transform: scaleX(0.55);
	transition: opacity 160ms ease, transform 160ms ease;
}

.top-brand-strip a:hover,
.top-brand-strip a:focus-visible {
	background: rgba(255, 255, 255, 0.045);
	color: var(--top-white);
}

.top-brand-strip a:hover::after,
.top-brand-strip a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.top-brand-strip span {
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.top-brand-strip a:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.top-section {
	padding: 52px 0;
}

.top-section--white {
	background: var(--top-white);
}

.top-section--soft {
	background: var(--top-soft);
}

.top-section h2,
.top-page-hero h1 {
	margin: 0;
	text-transform: uppercase;
}

.top-section-heading {
	display: grid;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 28px;
	text-align: center;
}

.top-section-heading h2,
.top-section > .top-container > h2 {
	width: 100%;
	font-size: 28px;
	line-height: 1;
	text-align: center;
}

.top-section-kicker + h2,
.top-section-heading .top-section-kicker + h2 {
	margin-top: -4px;
}

.top-section-heading > a {
	display: none;
}

.top-section-heading .top-section-heading__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 14px;
	background: var(--top-soft);
	border: 1px solid var(--top-line);
	border-radius: 3px;
	color: var(--top-orange-dark);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.top-section-lead {
	max-width: 660px;
	margin: 10px auto 0;
	color: var(--top-muted);
	font-size: 14px;
	line-height: 1.55;
	text-align: center;
}

.top-section-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.top-section-cta .top-button {
	min-height: 38px;
	min-width: 170px;
}

.top-process {
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.92)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px);
	color: var(--top-white);
	padding: 28px 0 30px;
}

.top-process .top-container {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	max-width: var(--top-home-grid);
}

.top-process__head {
	display: grid;
	gap: 8px;
	text-align: left;
}

.top-process__head .top-section-kicker {
	justify-content: flex-start;
	margin-bottom: 0;
	color: var(--top-orange);
}

.top-process h2 {
	margin: 0;
	font-size: 23px;
	line-height: 1.08;
	text-transform: uppercase;
}

.top-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--top-radius);
	overflow: hidden;
}

.top-process-card {
	position: relative;
	display: grid;
	gap: 7px;
	min-height: 112px;
	align-content: start;
	padding: 15px 14px 14px;
	background: rgba(255, 255, 255, 0.06);
}

.top-process-card span {
	color: var(--top-orange);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.top-process-card h3 {
	margin: 0;
	font-size: 13px;
	line-height: 1.16;
	text-transform: uppercase;
}

.top-process-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 10.5px;
	line-height: 1.4;
}

.top-why {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(240, 247, 249, 0.92) 0%, rgba(255, 255, 255, 0.98) 47%, rgba(239, 247, 249, 0.92) 100%),
		url("../images/generated/why-automation-bg.webp") center / cover no-repeat;
	padding: 44px 0 46px;
	text-align: center;
}

.top-why::before,
.top-why::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.top-why::before {
	top: -58px;
	left: -54px;
	width: 560px;
	height: 292px;
	background:
		linear-gradient(90deg, rgba(15, 76, 112, 0.84), rgba(18, 92, 130, 0.48)),
		url("../images/generated/design-packaging-line.webp") center / cover no-repeat;
	border-radius: 0 0 430px 0;
	opacity: 0.96;
}

.top-why::after {
	top: -34px;
	right: -42px;
	width: 500px;
	height: 282px;
	background:
		linear-gradient(90deg, rgba(18, 92, 130, 0.5), rgba(15, 76, 112, 0.86)),
		url("../images/generated/design-automotive-line.webp") center / cover no-repeat;
	clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%);
	opacity: 0.94;
}

.top-why .top-container {
	position: relative;
	z-index: 1;
}

.top-why .top-container::before {
	content: "";
	position: absolute;
	top: -44px;
	left: 50%;
	z-index: -1;
	width: min(820px, 74vw);
	height: 154px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.95));
	clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
	transform: translateX(-50%);
}

.top-why h2 {
	position: relative;
	z-index: 1;
	max-width: none;
	margin-right: auto;
	margin-left: auto;
	font-size: 30px;
	text-align: center;
	text-transform: none;
}

.top-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: var(--top-home-grid);
	margin: 28px auto 0;
}

.top-why-card,
.top-product-card,
.top-home-inquiry,
.top-contact-panel,
.top-contact-form-panel,
.top-product-gallery,
.top-product-summary,
.top-content-panel,
.top-news-card {
	background: var(--top-card);
	border: 1px solid var(--top-line);
	border-radius: 4px;
	box-shadow: 0 13px 28px rgba(35, 42, 49, 0.13);
}

.top-why-card {
	min-height: 132px;
	padding: 22px 24px 20px;
	text-align: left;
	border-color: rgba(35, 42, 49, 0.09);
	box-shadow: 0 14px 24px rgba(35, 42, 49, 0.11);
}

.top-why-card__head {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin-bottom: 12px;
}

.top-why-card span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--top-blue);
	font-size: 30px;
	font-weight: 800;
}

.top-why-card svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.top-why-card h3,
.top-product-card h3,
.top-solution-card h3 {
	margin: 0 0 10px;
}

.top-why-card__head h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.1;
	text-transform: none;
}

.top-why-card p,
.top-product-card p,
.top-solution-card p,
.top-about-layout p,
.top-page-hero p,
.top-content-panel p {
	color: var(--top-muted);
	line-height: 1.55;
}

.top-why-card p {
	margin: 0;
	color: #333b42;
	font-size: 13px;
	line-height: 1.42;
}

.top-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	max-width: var(--top-home-grid);
	margin: 0 auto;
}

.top-product-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.top-product-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 0.78;
	background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
	border-bottom: 1px solid var(--top-line);
}

.top-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px 14px 3px;
}

.top-product-card--static .top-product-card__media img {
	padding: 4px 16px 3px;
}

.top-product-card__placeholder {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	background: var(--top-blue);
	color: var(--top-white);
	border-radius: 50%;
	font-size: 34px;
	font-weight: 800;
}

.top-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 17px 16px 18px;
	text-align: center;
}

.top-product-card__body > span {
	margin-bottom: 5px;
	color: var(--top-ink);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-product-card h3 {
	min-height: 38px;
	font-size: 14px;
	line-height: 1.16;
	text-transform: uppercase;
}

.top-product-card__part {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	margin: 0 0 9px;
	padding: 0 8px;
	background: #eef3f5;
	border-radius: 2px;
	color: var(--top-blue);
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}

.top-product-card p {
	display: -webkit-box;
	min-height: 42px;
	margin: 0 0 13px;
	overflow: hidden;
	color: #333;
	font-size: 12px;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.top-product-card__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	width: 100%;
}

.top-product-card__actions .top-button {
	flex: 1 1 92px;
	min-height: 32px;
	padding: 0 10px;
	background: #1f2326;
	border-radius: 2px;
	color: var(--top-white);
	font-size: 9px;
}

.top-product-assist {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	max-width: var(--top-home-grid);
	margin: 24px auto 0;
	padding: 18px 22px;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.96), rgba(31, 37, 42, 0.9)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px);
	border-radius: var(--top-radius);
	color: var(--top-white);
	text-align: left;
	box-shadow: 0 14px 28px rgba(35, 42, 49, 0.14);
}

.top-product-assist div {
	display: grid;
	gap: 5px;
}

.top-product-assist strong {
	font-size: 18px;
	line-height: 1.1;
	text-transform: uppercase;
}

.top-product-assist span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	line-height: 1.4;
}

.top-product-assist .top-button {
	min-height: 40px;
	min-width: 160px;
}

.home .top-product-card__actions .top-button--primary {
	display: inline-flex;
	background: var(--top-orange);
	color: var(--top-white);
}

.home .top-product-card__actions .top-button--primary:hover {
	background: var(--top-orange-dark);
}

.top-solutions {
	background:
		linear-gradient(180deg, #e7ecec 0%, #f4f6f6 100%);
	padding-top: 52px;
	padding-bottom: 58px;
	text-align: center;
}

.top-solution-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: var(--top-home-grid);
	margin-top: 24px;
	margin-right: auto;
	margin-left: auto;
}

.top-solution-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 206px;
	padding: 16px;
	overflow: hidden;
	border-radius: var(--top-radius);
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0), rgba(13, 18, 22, 0.8)),
		url("../images/generated/design-packaging-line.webp") center / cover no-repeat;
	color: var(--top-white);
	text-align: left;
	box-shadow: 0 18px 34px rgba(30, 39, 46, 0.18);
}

.top-solution-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(13, 17, 21, 0.78)),
		linear-gradient(90deg, rgba(255, 106, 0, 0.2), transparent 34%);
	transition: background 180ms ease;
}

.top-solution-card::after {
	content: "";
	position: absolute;
	left: 16px;
	bottom: 16px;
	width: 34px;
	height: 3px;
	background: var(--top-orange);
	opacity: 0.92;
}

.top-solution-card > div {
	position: relative;
	max-width: 94%;
	padding-bottom: 10px;
}

.top-solution-card span {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 5px 7px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 2px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.top-solution-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.top-solution-card h3 {
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.04;
	text-transform: uppercase;
}

.top-solution-card p {
	font-size: 10px;
	line-height: 1.38;
}

.top-solution-packaging {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 428px;
	padding: 22px;
}

.top-solution-packaging h3 {
	font-size: 22px;
	max-width: 360px;
}

.top-solution-packaging p {
	max-width: 390px;
	font-size: 13px;
}

.top-solution-automotive {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0), rgba(16, 24, 31, 0.76)),
		url("../images/generated/design-automotive-line.webp") center / cover no-repeat;
}

.top-solution-power {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0), rgba(16, 24, 31, 0.78)),
		url("../images/generated/design-power-plant.webp") center / cover no-repeat;
}

.top-solution-logistic {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0), rgba(16, 24, 31, 0.76)),
		url("../images/generated/design-logistics-line.webp") center / cover no-repeat;
}

.top-solution-service {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0), rgba(16, 24, 31, 0.76)),
		url("../images/generated/design-worker-inspection.webp") center / cover no-repeat;
}

.top-why-products {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f5f7f7 100%),
		#ffffff;
	padding-top: 44px;
	padding-bottom: 52px;
	text-align: center;
}

.top-why-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: var(--top-home-grid);
	margin: 26px auto 0;
}

.top-why-product-card {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 0;
	min-height: 218px;
	padding: 0;
	overflow: hidden;
	border-radius: var(--top-radius);
	background:
		linear-gradient(180deg, #ffffff, #fbfcfc);
	border: 1px solid rgba(35, 42, 49, 0.1);
	color: var(--top-ink);
	text-align: left;
	box-shadow: 0 16px 30px rgba(30, 39, 46, 0.12);
}

.top-why-product-card::before,
.top-why-product-card::after {
	content: none;
}

.top-why-product-card i {
	display: grid;
	place-items: start center;
	padding-top: 22px;
	background:
		linear-gradient(180deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.92)),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px);
	color: var(--top-orange);
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
}

.top-why-product-card > div {
	position: relative;
	display: grid;
	gap: 10px;
	align-content: start;
	padding: 22px 20px 20px;
	background: transparent;
}

.top-why-product-card span {
	display: inline-flex;
	justify-self: start;
	margin-bottom: 0;
	padding: 5px 7px;
	background: #eef3f5;
	border-radius: 2px;
	color: var(--top-blue);
	font-size: 8px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-why-product-card h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.04;
	text-transform: uppercase;
}

.top-why-product-card p {
	margin: 0;
	color: var(--top-muted);
	font-size: 12px;
	line-height: 1.45;
}

.top-why-product-card strong {
	display: block;
	margin-top: 2px;
	padding-top: 10px;
	border-top: 1px solid rgba(35, 42, 49, 0.11);
	color: var(--top-ink);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
}

.top-procurement-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 22px;
	padding: 0 18px;
	background: var(--top-charcoal);
	border-radius: 3px;
	color: var(--top-white);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transition: background 160ms ease, transform 160ms ease;
}

.top-procurement-link:hover,
.top-procurement-link:focus-visible {
	background: var(--top-orange);
	transform: translateY(-1px);
}

.top-about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 470px;
	gap: 46px;
	align-items: center;
	max-width: var(--top-home-grid);
}

.top-about-band {
	padding: 52px 0;
	background:
		linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f2f5f5 50%, #f2f5f5 100%);
}

.top-about-layout h2 {
	max-width: 560px;
	font-size: 30px;
	line-height: 1.08;
	text-align: left;
}

.top-about-layout p {
	max-width: 600px;
	color: var(--top-muted);
	font-size: 14px;
	line-height: 1.65;
}

.top-about-checks {
	display: grid;
	gap: 8px;
	margin-top: 18px;
	max-width: 620px;
}

.top-about-checks div {
	display: grid;
	grid-template-columns: 158px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(35, 42, 49, 0.09);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
}

.top-about-checks strong {
	color: var(--top-ink);
	font-size: 12px;
	line-height: 1.25;
	text-transform: uppercase;
}

.top-about-checks span {
	color: var(--top-muted);
	font-size: 12px;
	line-height: 1.45;
}

.top-about-photo {
	position: relative;
	min-height: 326px;
	overflow: hidden;
	border-radius: var(--top-radius);
	background:
		linear-gradient(90deg, rgba(15, 24, 31, 0.04), rgba(15, 24, 31, 0.01)),
		url("../images/generated/about-sourcing-operations-premium.webp") center / cover no-repeat,
		linear-gradient(135deg, #f5f7f7, #dce3e5);
	box-shadow: 0 16px 34px rgba(35, 42, 49, 0.12);
}

.top-about-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(22, 31, 38, 0.18)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 74px);
}

.top-about-photo::after {
	content: none;
}

.top-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 18px 0 20px;
}

.top-stats span {
	display: grid;
	gap: 4px;
	padding: 12px 14px 11px;
	background: #f1f5f5;
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-stats strong {
	color: var(--top-orange-dark);
	font-size: 24px;
	line-height: 1;
}

.top-lower-grid-section {
	padding: 48px 0 56px;
}

.top-lower-stack {
	display: grid;
	gap: 36px;
	max-width: var(--top-home-grid);
	margin: 0 auto;
}

.top-featured-cases h2 {
	text-align: center;
}

.top-featured-cases {
	text-align: center;
}

.top-case-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	width: 100%;
	margin: 24px 0 0;
}

.top-procurement-panel {
	position: relative;
	padding: 28px 30px 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
		repeating-linear-gradient(90deg, rgba(31, 37, 42, 0.035) 0 1px, transparent 1px 64px);
	border: 1px solid rgba(35, 42, 49, 0.08);
	border-radius: var(--top-radius);
	box-shadow: 0 18px 38px rgba(35, 42, 49, 0.1);
}

.top-procurement-panel__head {
	margin-bottom: 20px;
	text-align: center;
}

.top-procurement-panel__head h2 {
	font-size: 25px;
	line-height: 1;
}

.top-procurement-panel__head p {
	max-width: 620px;
	margin: 9px auto 0;
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.5;
}

.top-procurement-panel__head .top-section-kicker {
	margin-bottom: 9px;
}

.top-procurement-panel h3 {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1;
	text-transform: uppercase;
}

.top-news-inquiry-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 24px;
	align-items: stretch;
	width: 100%;
	margin: 0;
}

.top-latest-news {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.top-rfq-ready {
	margin-bottom: 18px;
	padding: 20px 22px;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.9)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 54px);
	border-radius: var(--top-radius);
	color: var(--top-white);
	text-align: left;
}

.top-rfq-ready h3 {
	margin-bottom: 14px;
	color: var(--top-white);
	font-size: 20px;
}

.top-rfq-ready ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-rfq-ready li {
	position: relative;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.35;
}

.top-rfq-ready li::before {
	content: "";
	position: absolute;
	top: 0.54em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--top-orange);
}

.top-case-row article {
	overflow: hidden;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: 0 14px 28px rgba(35, 42, 49, 0.12);
}

.top-case-row span {
	display: block;
	aspect-ratio: 16 / 8.8;
	background:
		url("../images/generated/case-automotive-upgrade-premium.webp") center / cover no-repeat,
		linear-gradient(135deg, #425460 0%, #19222a 100%);
}

.top-case-textile span {
	background:
		url("../images/generated/case-textile-automation-premium.webp") center / cover no-repeat,
		linear-gradient(135deg, #545f63 0%, #20272d 100%);
}

.top-case-chemical span {
	background:
		url("../images/generated/case-chemical-control-premium.webp") center / cover no-repeat,
		linear-gradient(135deg, #5a5347 0%, #18222a 100%);
}

.top-case-auto span {
	background:
		url("../images/generated/case-automotive-upgrade-premium.webp") center / cover no-repeat,
		linear-gradient(135deg, #425460 0%, #19222a 100%);
}

.top-case-row h3 {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.16;
	text-align: left;
	text-transform: uppercase;
}

.top-case-card__body {
	display: grid;
	gap: 7px;
	padding: 16px 16px 17px;
	text-align: left;
}

.top-case-card__body em {
	color: var(--top-orange-dark);
	font-size: 10px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.top-case-card__body h3 {
	padding: 0;
	text-align: left;
}

.top-case-card__body p {
	margin: 0;
	color: var(--top-muted);
	font-size: 12px;
	line-height: 1.45;
}

.top-case-card__body strong {
	display: inline-flex;
	justify-self: start;
	margin-top: 3px;
	padding: 5px 7px;
	background: #eef3f5;
	border-radius: 2px;
	color: var(--top-blue);
	font-size: 9px;
	line-height: 1;
	text-transform: uppercase;
}

.top-news-list {
	display: grid;
	gap: 0;
	flex: 1;
	overflow: hidden;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: none;
}

.top-news-list a {
	position: relative;
	display: grid;
	gap: 5px;
	align-content: center;
	min-height: 76px;
	padding: 15px 20px 15px 22px;
	border-bottom: 1px solid var(--top-line);
}

.top-news-list a:last-child {
	border-bottom: 0;
}

.top-news-list a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--top-orange);
	opacity: 0.42;
	transition: opacity 160ms ease;
}

.top-news-list a:hover::before {
	opacity: 1;
}

.top-news-list strong {
	font-size: 15px;
	line-height: 1.22;
}

.top-news-list span {
	color: var(--top-muted);
	font-size: 12px;
}

.top-home-inquiry {
	position: relative;
	width: auto;
	margin: 0;
	padding: 24px 24px 24px;
	border-top: 4px solid var(--top-orange);
	background: var(--top-white);
}

.home .top-home-inquiry {
	box-shadow: none;
}

.top-home-inquiry__eyebrow {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--top-orange-dark);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.home .top-home-inquiry h3 {
	margin-bottom: 6px;
	font-size: 21px;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
}

.top-home-inquiry__lead {
	max-width: 360px;
	margin: 0 0 12px;
	color: var(--top-muted);
	font-size: 12px;
	line-height: 1.45;
}

.top-home-inquiry__quick {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 12px;
}

.top-home-inquiry__quick a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	background: #f3f6f7;
	border: 1px solid var(--top-line);
	border-radius: 2px;
	color: var(--top-charcoal);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-home-inquiry__quick a:first-child {
	background: var(--top-blue);
	border-color: var(--top-blue);
	color: var(--top-white);
}

.top-home-inquiry__quick a:hover {
	border-color: var(--top-orange);
	color: var(--top-orange-dark);
}

.top-home-inquiry__quick a:first-child:hover {
	background: #0f587f;
	color: var(--top-white);
}

.home .top-home-inquiry .top-rfq-form {
	gap: 9px 12px;
}

.home .top-home-inquiry .top-rfq-form__phone,
.home .top-home-inquiry .top-rfq-form__company,
.home .top-home-inquiry .top-rfq-form__quantity,
.home .top-home-inquiry .top-rfq-form__country {
	display: none;
}

.home .top-home-inquiry .top-rfq-form__hint {
	display: none;
}

.home .top-home-inquiry .top-rfq-form input,
.home .top-home-inquiry .top-rfq-form textarea {
	min-height: 38px;
	padding: 7px 10px;
	font-size: 12px;
}

.home .top-home-inquiry .top-rfq-form textarea {
	min-height: 66px;
}

.home .top-home-inquiry .top-rfq-form__submit {
	min-height: 40px;
}

.top-home-inquiry__promise {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.top-home-inquiry__promise span {
	display: grid;
	align-content: center;
	min-height: 42px;
	padding: 9px 10px;
	background: #f3f6f7;
	border-left: 3px solid var(--top-orange);
	color: var(--top-charcoal);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.home .top-home-inquiry p {
	margin: 13px 0 0;
	font-size: 13px;
}

.top-rfq-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px 14px;
	scroll-margin-top: 130px;
}

.top-rfq-form label {
	display: grid;
	gap: 6px;
	color: #5f6870;
	font-size: 12px;
	font-weight: 700;
}

.top-rfq-form label span {
	text-transform: uppercase;
}

.top-rfq-form input,
.top-rfq-form textarea,
.top-rfq-form select,
.top-product-search input,
.top-product-search select {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--top-line);
	border-radius: 2px;
	background: #fbfcfc;
	padding: 9px 10px;
	font: inherit;
}

.top-rfq-form input:focus,
.top-rfq-form textarea:focus,
.top-product-search input:focus,
.top-product-search select:focus {
	border-color: rgba(215, 126, 53, 0.8);
	box-shadow: 0 0 0 3px rgba(215, 126, 53, 0.12);
	outline: none;
}

.top-rfq-form [name="brand"],
.top-rfq-form [name="part_number"] {
	background: #fff8f2;
	border-color: rgba(215, 126, 53, 0.34);
	font-weight: 800;
}

.top-rfq-form textarea {
	resize: vertical;
}

.top-rfq-form__message,
.top-rfq-form__submit,
.top-rfq-form__trap,
.top-rfq-form__hint,
.top-rfq-form__promise {
	grid-column: 1 / -1;
}

.top-rfq-form__hint {
	margin: -2px 0 2px;
	padding: 7px 9px;
	background: #fff8f2;
	border-left: 3px solid rgba(215, 126, 53, 0.74);
	color: #805027;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
}

.top-rfq-form__trap {
	display: none !important;
}

.top-rfq-form__promise {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: -1px 0 2px;
}

.top-rfq-form__promise span {
	display: flex;
	align-items: center;
	min-height: 30px;
	padding: 0 9px;
	background: #f4f7f8;
	border-left: 3px solid var(--top-blue);
	border-radius: 2px;
	color: var(--top-charcoal);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.18;
	text-transform: uppercase;
}

.top-rfq-form.is-prefilled {
	outline: 1px solid rgba(215, 126, 53, 0.38);
	outline-offset: 8px;
}

.top-rfq-form__submit {
	width: 100%;
	min-height: 44px;
	background: var(--top-orange);
	font-size: 12px;
}

.top-form-success,
.top-form-alert {
	display: grid;
	gap: 3px;
	margin-bottom: 14px;
	padding: 12px;
	border-radius: var(--top-radius);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.top-form-success strong,
.top-form-alert strong {
	font-size: 13px;
	text-transform: uppercase;
}

.top-form-success span,
.top-form-alert span {
	font-weight: 700;
}

.top-form-success {
	background: #e7f4eb;
	color: #1d6b36;
}

.top-form-alert {
	background: #fff1e8;
	color: #9a4615;
}

.top-page-hero {
	background: var(--top-charcoal);
	color: var(--top-white);
	padding: 66px 0;
}

.top-catalog-hero {
	padding: 32px 0;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.97), rgba(31, 37, 42, 0.88)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px),
		linear-gradient(135deg, #263744 0%, #111820 100%);
}

.top-catalog-hero .top-container {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(640px, 1.22fr);
	gap: 30px;
	align-items: end;
}

.top-catalog-hero h1 {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 0.95;
}

.top-catalog-hero p {
	max-width: 560px;
	margin-bottom: 0;
}

.top-catalog-hero__search .top-product-search {
	margin: 0;
}

.top-catalog-page .top-section {
	padding-top: 38px;
}

.top-catalog-page .top-product-grid {
	max-width: none;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.top-catalog-page .top-product-card__actions .top-button {
	min-width: 92px;
}

.top-catalog-page .top-product-card__actions .top-button--primary {
	display: inline-flex;
	background: var(--top-orange);
}

.top-catalog-page .top-section-heading {
	margin-bottom: 22px;
}

.top-catalog-page .top-section-heading h2 {
	text-align: left;
}

.top-catalog-breadcrumb-section {
	padding: 14px 0 0;
	background: var(--top-soft);
}

.top-catalog-breadcrumb-section .top-breadcrumbs {
	margin: 0 auto;
}

.top-archive-links-section {
	padding: 30px 0 12px;
}

.top-archive-links-head {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
	gap: 22px;
	align-items: end;
	margin-bottom: 16px;
}

.top-archive-links-head h2 {
	margin: 0;
	font-size: clamp(24px, 2.7vw, 34px);
	line-height: 1.02;
	text-align: left;
}

.top-archive-links-head p {
	margin: 0;
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.55;
}

.top-archive-link-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.top-archive-link-grid a {
	display: grid;
	gap: 8px;
	min-height: 78px;
	padding: 14px;
	background: #f7f9f9;
	border: 1px solid var(--top-line);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-charcoal);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-archive-link-grid a:hover {
	border-color: rgba(255, 107, 0, 0.45);
	box-shadow: 0 12px 24px rgba(14, 23, 32, 0.08);
	transform: translateY(-2px);
}

.top-archive-link-grid strong {
	font-size: 13px;
	font-weight: 900;
	line-height: 1.15;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.top-archive-link-grid span {
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-product-hero {
	padding: 32px 0 34px;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.88)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px),
		linear-gradient(135deg, #263744 0%, #111820 100%);
}

.top-product-hero h1 {
	max-width: 900px;
	font-size: clamp(32px, 4.2vw, 54px);
	line-height: 1;
}

.top-product-hero p strong {
	color: var(--top-white);
}

.top-page-hero span {
	display: block;
	margin-bottom: 10px;
	color: var(--top-orange);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-page-hero h1 {
	font-size: clamp(34px, 5vw, 56px);
}

.top-page-hero p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.76);
}

.top-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.top-product-search {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 170px) minmax(160px, 200px) 110px;
	gap: 12px;
	margin-top: 28px;
}

.top-product-search .top-button {
	width: 100%;
}

.top-pagination {
	margin-top: 28px;
}

.top-empty-state {
	padding: 34px;
	background: var(--top-soft);
	border-radius: var(--top-radius);
	text-align: center;
}

.top-info-hero {
	padding: 48px 0;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.88)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px),
		linear-gradient(135deg, #263744 0%, #111820 100%);
}

.top-info-hero h1 {
	max-width: 940px;
	font-size: clamp(36px, 4.6vw, 58px);
	line-height: 0.98;
}

.top-info-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
	gap: 42px;
	align-items: center;
}

.top-info-split h2,
.top-info-warranty h2,
.top-info-band h2 {
	margin-bottom: 14px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.02;
	text-transform: uppercase;
}

.top-info-split p,
.top-info-warranty p {
	max-width: 650px;
	color: var(--top-muted);
	font-size: 15px;
	line-height: 1.72;
}

.top-info-photo {
	min-height: 340px;
	overflow: hidden;
	border-radius: var(--top-radius);
	box-shadow: 0 18px 36px rgba(35, 42, 49, 0.14);
}

.top-info-photo--about {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0.02), rgba(16, 24, 31, 0.16)),
		url("../images/generated/about-sourcing-operations-premium.webp") center / cover no-repeat;
}

.top-info-photo--shipping {
	background:
		linear-gradient(180deg, rgba(16, 24, 31, 0.02), rgba(16, 24, 31, 0.16)),
		url("../images/generated/procurement-export-packing-premium.webp") center / cover no-repeat;
}

.top-info-stats,
.top-info-checklist,
.top-info-warranty__grid {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.top-info-stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-info-stats span,
.top-info-checklist span,
.top-info-warranty__grid div {
	display: grid;
	gap: 5px;
	padding: 14px;
	background: #f3f6f6;
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

.top-info-stats strong,
.top-info-card-grid span {
	color: var(--top-orange-dark);
	font-size: 26px;
	line-height: 1;
}

.top-section-heading--center {
	display: block;
	margin-bottom: 24px;
	text-align: center;
}

.top-section-heading--center h2 {
	text-align: center;
}

.top-info-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.top-info-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-info-card-grid article {
	min-height: 210px;
	padding: 22px;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: 0 14px 28px rgba(35, 42, 49, 0.08);
}

.top-info-card-grid h3 {
	margin: 14px 0 10px;
	font-size: 18px;
	line-height: 1.05;
	text-transform: uppercase;
}

.top-info-card-grid p {
	margin: 0;
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.55;
}

.top-info-band {
	padding: 44px 0;
	background: var(--top-charcoal);
	color: var(--top-white);
}

.top-info-band .top-container {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 26px;
	align-items: center;
}

.top-info-band .top-section-kicker {
	color: var(--top-orange);
}

.top-info-band h2 {
	margin: 0;
	color: var(--top-white);
}

.top-info-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--top-radius);
	background: rgba(255, 255, 255, 0.12);
}

.top-info-timeline div {
	padding: 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.top-info-timeline div:last-child {
	border-right: 0;
}

.top-info-timeline strong {
	display: block;
	margin-bottom: 7px;
	color: var(--top-white);
	font-size: 13px;
	text-transform: uppercase;
}

.top-info-timeline span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.48;
}

.top-info-warranty {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	gap: 32px;
	align-items: start;
}

.top-info-warranty__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 0;
}

.top-info-warranty__grid strong {
	color: var(--top-charcoal);
	font-size: 13px;
}

@media (max-width: 1020px) {
	.top-info-split,
	.top-info-band .top-container,
	.top-info-warranty,
	.top-brand-intro,
	.top-catalog-trust,
	.top-news-resource-intro,
	.top-news-detail-layout {
		grid-template-columns: 1fr;
	}

	.top-info-card-grid,
	.top-info-card-grid--three,
	.top-info-timeline,
	.top-catalog-trust__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-info-timeline div:nth-child(2) {
		border-right: 0;
	}

	.top-info-photo {
		min-height: 300px;
	}
}

@media (max-width: 720px) {
	.top-info-hero {
		padding: 32px 0;
	}

	body.top-info-body {
		padding-bottom: 0;
	}

	.top-info-body .top-mobile-action-bar {
		display: none;
	}

	.top-info-hero h1 {
		font-size: 34px;
		line-height: 1.05;
	}

	.top-info-split,
	.top-info-card-grid,
	.top-info-card-grid--three,
	.top-info-stats,
	.top-info-timeline,
	.top-info-warranty__grid,
	.top-brand-proof,
	.top-catalog-trust__cards {
		grid-template-columns: 1fr;
	}

	.top-brand-intro {
		gap: 18px;
	}

	.top-brand-intro h2,
	.top-catalog-trust h2 {
		font-size: 28px;
	}

	.top-catalog-trust {
		gap: 16px;
	}

	.top-info-photo {
		min-height: 220px;
	}

	.top-info-card-grid article {
		min-height: 0;
		padding: 18px;
	}

	.top-info-timeline div,
	.top-info-timeline div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.top-info-timeline div:last-child {
		border-bottom: 0;
	}
}

.top-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.68fr);
	gap: 26px;
	align-items: stretch;
}

.top-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	max-width: var(--top-home-grid);
	margin: -16px auto 18px;
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-breadcrumbs a {
	color: var(--top-charcoal);
	text-decoration: none;
}

.top-breadcrumbs a:hover {
	color: var(--top-orange);
}

.top-breadcrumbs span:last-child {
	max-width: 360px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.top-product-gallery,
.top-product-summary,
.top-content-panel,
.top-product-rfq-panel {
	padding: 22px;
}

.top-product-gallery,
.top-product-summary {
	position: relative;
	overflow: hidden;
}

.top-product-gallery__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--top-line);
}

.top-product-gallery__label strong {
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-product-gallery__label span {
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-product-gallery__stage {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	background: #f8f9f9;
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
}

.top-product-gallery__stage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.top-product-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.top-product-gallery__thumbs button {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 4px;
	background: var(--top-white);
	cursor: pointer;
}

.top-product-gallery__thumbs button.is-active {
	border-color: var(--top-orange);
}

.top-product-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-product-gallery__empty {
	width: 100%;
	height: 360px;
	border-radius: var(--top-radius);
}

.top-product-summary > span {
	color: var(--top-blue);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-product-summary h2 {
	margin: 6px 0 12px;
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1;
	word-break: break-word;
}

.top-product-summary__lead {
	margin: 0 0 18px;
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.5;
}

.top-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px;
	margin-bottom: 18px;
}

.top-spec-grid div {
	display: grid;
	gap: 5px;
	min-height: 70px;
	padding: 11px;
	background: var(--top-soft);
	border-radius: var(--top-radius);
}

.top-spec-grid strong {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--top-muted);
}

.top-spec-link {
	color: var(--top-blue);
	font-weight: 900;
	text-decoration: none;
}

.top-spec-link:hover {
	color: var(--top-orange);
}

.top-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.top-product-summary__checks {
	display: grid;
	gap: 9px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--top-line);
}

.top-product-summary__checks span {
	display: flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	background: #f7f9f9;
	border-left: 3px solid var(--top-orange);
	color: var(--top-charcoal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-related-products-section {
	padding-top: 10px;
	background: linear-gradient(180deg, var(--top-white) 0%, #f6f8f8 100%);
}

.top-related-products-section .top-container {
	max-width: var(--top-home-grid);
}

.top-related-products-heading {
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 7px 18px;
	margin: 0 0 18px;
	text-align: left;
}

.top-related-products-heading .top-section-kicker,
.top-related-products-heading h2,
.top-related-products-heading p {
	grid-column: 1;
}

.top-related-products-heading h2 {
	text-align: left;
}

.top-related-products-heading p {
	max-width: 680px;
	margin: 0;
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.55;
}

.top-related-products-heading .top-section-heading__action {
	grid-row: 1 / span 3;
	grid-column: 2;
	align-self: end;
	white-space: nowrap;
}

.top-related-products-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.top-related-products-grid .top-product-card__media {
	aspect-ratio: 4 / 3;
}

.top-product-rfq-panel {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	max-width: var(--top-home-grid);
	margin: 0 auto;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: var(--top-shadow);
}

.top-product-rfq-panel .top-rfq-form {
	gap: 10px 12px;
}

.top-product-rfq-panel .top-rfq-form input,
.top-product-rfq-panel .top-rfq-form textarea {
	min-height: 38px;
	padding: 7px 10px;
	font-size: 12px;
}

.top-product-rfq-panel .top-rfq-form textarea {
	min-height: 76px;
}

.top-contact-layout {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.top-contact-panel,
.top-contact-form-panel {
	padding: 24px;
}

.top-contact-hero {
	padding: 38px 0;
	background:
		linear-gradient(90deg, rgba(31, 37, 42, 0.98), rgba(31, 37, 42, 0.86)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px),
		linear-gradient(135deg, #263744 0%, #111820 100%);
}

.top-contact-hero h1 {
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1;
}

.top-contact-page .top-section {
	padding: 42px 0 48px;
	background: linear-gradient(90deg, #f5f7f7 0%, #ffffff 52%, #f5f7f7 100%);
}

.top-contact-panel {
	position: sticky;
	top: 118px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
		repeating-linear-gradient(90deg, rgba(35, 42, 49, 0.08) 0 1px, transparent 1px 34px),
		linear-gradient(135deg, #f6f8f8, #ffffff);
}

.top-contact-panel h2,
.top-contact-form-panel h2 {
	margin-top: 0;
	text-transform: uppercase;
}

.top-contact-panel__lead,
.top-contact-form-panel__head p {
	color: var(--top-muted);
	font-size: 13px;
	line-height: 1.5;
}

.top-contact-panel li {
	padding: 11px 0;
	border-bottom: 1px solid var(--top-line);
}

.top-contact-panel li:last-child {
	border-bottom: 0;
}

.top-contact-panel a,
.top-contact-panel span {
	font-weight: 800;
}

.top-contact-trust {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: 20px;
}

.top-contact-trust span {
	display: flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	background: var(--top-soft);
	border-left: 3px solid var(--top-orange);
	color: var(--top-charcoal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-contact-checklist {
	display: grid;
	gap: 8px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--top-line);
}

.top-contact-checklist h3 {
	margin: 0 0 2px;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
}

.top-contact-checklist span {
	position: relative;
	display: block;
	padding-left: 16px;
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.top-contact-checklist span::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--top-orange);
	border-radius: 50%;
}

.top-contact-form-panel {
	border-top: 3px solid var(--top-orange);
}

.top-contact-form-panel__head {
	display: grid;
	gap: 5px;
	margin-bottom: 18px;
}

.top-contact-form-panel__head > span {
	color: var(--top-orange-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-contact-panel ul,
.top-site-footer ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-contact-panel li {
	display: grid;
	gap: 4px;
}

.top-contact-panel strong {
	color: var(--top-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.top-news-archive {
	display: grid;
	gap: 16px;
}

.top-news-card {
	padding: 22px;
}

.top-brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.top-section-heading--compact {
	align-items: end;
	margin: 30px 0 16px;
}

.top-section-heading--compact h2 {
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.02;
	text-align: left;
}

.top-brand-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	gap: 28px;
	align-items: end;
	margin-bottom: 28px;
}

.top-brand-intro h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.02;
	text-align: left;
	text-transform: uppercase;
}

.top-brand-intro p {
	max-width: 680px;
	color: var(--top-muted);
	font-size: 15px;
	line-height: 1.65;
}

.top-brand-proof {
	display: grid;
	gap: 10px;
}

.top-brand-proof span {
	display: grid;
	gap: 4px;
	padding: 14px;
	background: var(--top-soft);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

.top-brand-proof strong {
	color: var(--top-charcoal);
	font-size: 13px;
}

.top-brand-directory-summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0 0 4px;
}

.top-brand-directory-summary span {
	display: grid;
	gap: 5px;
	min-height: 74px;
	padding: 14px 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
		repeating-linear-gradient(90deg, rgba(35, 42, 49, 0.06) 0 1px, transparent 1px 36px);
	border: 1px solid var(--top-line);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-brand-directory-summary strong {
	color: var(--top-charcoal);
	font-size: 20px;
	line-height: 1;
}

.top-brand-grid--featured {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.top-brand-card {
	display: grid;
	gap: 8px;
	padding: 22px;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: var(--top-shadow);
}

.top-brand-card strong {
	font-size: 18px;
}

.top-brand-card span {
	color: var(--top-muted);
	font-size: 13px;
}

.top-brand-card em {
	color: var(--top-orange-dark);
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.top-brand-assist {
	margin-top: 28px;
}

.top-brand-directory-heading {
	margin-top: 34px;
}

.top-brand-directory-groups {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.top-brand-group {
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: 0 10px 22px rgba(35, 42, 49, 0.07);
}

.top-brand-group summary {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	min-height: 52px;
	padding: 0 14px;
	cursor: pointer;
	list-style: none;
}

.top-brand-group summary::-webkit-details-marker {
	display: none;
}

.top-brand-group summary strong {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	background: var(--top-charcoal);
	border-radius: 2px;
	color: var(--top-white);
	font-size: 13px;
}

.top-brand-group summary span {
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-brand-group__links {
	display: grid;
	max-height: 380px;
	overflow: auto;
	padding: 0 10px 12px;
}

.top-brand-group__links a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	min-height: 30px;
	padding: 6px 4px;
	border-top: 1px solid rgba(35, 42, 49, 0.08);
}

.top-brand-group__links span {
	overflow: hidden;
	color: var(--top-charcoal);
	font-size: 12px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.top-brand-group__links em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 20px;
	padding: 0 6px;
	background: #eef3f5;
	border-radius: 2px;
	color: var(--top-blue);
	font-size: 10px;
	font-style: normal;
	font-weight: 900;
}

.top-catalog-trust-section {
	padding: 34px 0;
}

.top-catalog-trust {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr) auto;
	gap: 22px;
	align-items: center;
}

.top-catalog-trust h2 {
	margin: 0 0 10px;
	font-size: clamp(26px, 2.7vw, 36px);
	line-height: 1.02;
	text-align: left;
	text-transform: uppercase;
}

.top-catalog-trust p {
	margin: 0;
	color: var(--top-muted);
	font-size: 14px;
	line-height: 1.6;
}

.top-catalog-trust__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.top-catalog-trust__cards span {
	display: grid;
	gap: 4px;
	min-height: 84px;
	padding: 13px;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

.top-catalog-trust__cards strong {
	color: var(--top-charcoal);
	font-size: 13px;
}

.top-news-card span {
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-news-card h2 {
	margin: 8px 0;
}

.top-news-resource-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
	gap: 32px;
	align-items: end;
}

.top-news-resource-intro h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.02;
	text-align: left;
	text-transform: uppercase;
}

.top-news-resource-intro p {
	max-width: 650px;
	color: var(--top-muted);
	font-size: 15px;
	line-height: 1.65;
}

.top-news-resource-grid {
	display: grid;
	gap: 10px;
}

.top-news-resource-grid span {
	display: grid;
	gap: 4px;
	padding: 14px;
	background: var(--top-soft);
	border-left: 3px solid var(--top-orange);
	border-radius: var(--top-radius);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

.top-news-resource-grid strong {
	color: var(--top-charcoal);
	font-size: 13px;
}

.top-news-resource-list {
	display: grid;
	gap: 14px;
}

.top-news-resource-card {
	display: grid;
	grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
	gap: 0;
	align-items: center;
	overflow: hidden;
	padding: 0;
	background: var(--top-white);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: 0 14px 28px rgba(35, 42, 49, 0.08);
}

.top-news-card__media {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	background: #eef3f5;
	border-right: 1px solid var(--top-line);
}

.top-news-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 180ms ease;
}

.top-news-resource-card:hover .top-news-card__media img {
	transform: scale(1.025);
}

.top-news-card__placeholder {
	display: grid;
	align-content: end;
	gap: 6px;
	width: 100%;
	height: 100%;
	min-height: 220px;
	padding: 22px;
	background:
		linear-gradient(135deg, rgba(255, 102, 0, 0.92), rgba(26, 64, 86, 0.94)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 38px);
	color: var(--top-white);
}

.top-news-card__placeholder strong {
	font-size: 24px;
	line-height: 1;
}

.top-news-card__placeholder em {
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.top-news-card__body {
	display: grid;
	align-content: center;
	padding: 24px 26px;
}

.top-news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.top-news-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0 8px;
	background: #eef3f5;
	border-left: 3px solid var(--top-orange);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-news-resource-card h2 {
	margin: 0 0 10px;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.08;
	text-transform: uppercase;
}

.top-news-resource-card p {
	max-width: 760px;
	margin: 0 0 18px;
	color: var(--top-muted);
	font-size: 14px;
	line-height: 1.58;
}

.top-news-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.top-news-card__actions .top-section-heading__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	background: #eef3f5;
	border: 1px solid var(--top-line);
	border-radius: 2px;
	color: var(--top-charcoal);
	font-size: 12px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.top-news-card__actions .top-section-heading__action:hover {
	background: var(--top-orange);
	border-color: var(--top-orange);
	color: var(--top-white);
}

.top-news-card__rfq {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	background: var(--top-charcoal);
	border: 1px solid var(--top-charcoal);
	border-radius: 2px;
	color: var(--top-white);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-news-card__rfq:hover {
	background: var(--top-blue);
	border-color: var(--top-blue);
	color: var(--top-white);
}

.top-news-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
}

.top-news-detail-content {
	overflow: hidden;
	padding: 0;
}

.top-news-breadcrumbs {
	padding: 18px 28px 0;
}

.top-news-featured-image {
	margin: 18px 0 0;
	background: #f5f7f8;
	border-top: 1px solid var(--top-line);
	border-bottom: 1px solid var(--top-line);
}

.top-news-featured-image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.top-news-article-shell {
	max-width: 760px;
	margin: 0 auto;
	padding: 30px 34px 36px;
}

.top-news-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.top-news-article-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	background: #eef3f5;
	border-left: 3px solid var(--top-orange);
	color: var(--top-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.top-news-prose {
	color: #2b3339;
	font-size: 16px;
	line-height: 1.78;
}

.top-news-prose > *:first-child {
	margin-top: 0;
}

.top-news-prose > *:last-child {
	margin-bottom: 0;
}

.top-news-prose p {
	margin: 0 0 18px;
	color: #2b3339;
}

.top-news-prose h2 {
	margin: 34px 0 12px;
	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.12;
	text-transform: uppercase;
}

.top-news-prose h3 {
	margin: 26px 0 10px;
	font-size: 20px;
	line-height: 1.2;
	text-transform: none;
}

.top-news-prose ul,
.top-news-prose ol {
	display: grid;
	gap: 9px;
	margin: 0 0 20px;
	padding-left: 22px;
}

.top-news-prose li::marker {
	color: var(--top-orange);
	font-weight: 900;
}

.top-news-prose a {
	color: var(--top-blue);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.top-news-prose strong {
	color: var(--top-ink);
}

.top-news-prose figure,
.top-news-prose .wp-block-image,
.top-news-prose .wp-caption {
	margin: 28px 0;
}

.top-news-prose figure img,
.top-news-prose .wp-block-image img,
.top-news-prose .wp-caption img,
.top-news-prose > p > img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
	box-shadow: 0 14px 28px rgba(35, 42, 49, 0.10);
}

.top-news-prose figcaption,
.top-news-prose .wp-element-caption,
.top-news-prose .wp-caption-text {
	margin-top: 9px;
	color: var(--top-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
	text-align: center;
}

.top-news-prose blockquote {
	margin: 28px 0;
	padding: 18px 20px;
	background: #f4f7f8;
	border-left: 4px solid var(--top-orange);
	color: var(--top-charcoal);
	font-weight: 800;
}

.top-news-prose table {
	width: 100%;
	margin: 26px 0;
	border-collapse: collapse;
	font-size: 14px;
}

.top-news-prose th,
.top-news-prose td {
	padding: 10px 12px;
	border: 1px solid var(--top-line);
	vertical-align: top;
}

.top-news-prose th {
	background: #eef3f5;
	color: var(--top-charcoal);
	text-align: left;
}

.top-news-sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: calc(var(--top-header-top-height) + var(--top-header-main-height) + 18px);
}

.top-news-sidebar > div {
	padding: 22px;
	background: var(--top-soft);
	border: 1px solid var(--top-line);
	border-radius: var(--top-radius);
}

.top-news-sidebar h2 {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.05;
	text-align: left;
	text-transform: uppercase;
}

.top-news-sidebar ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--top-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

.top-news-sidebar li {
	padding-left: 12px;
	border-left: 3px solid var(--top-orange);
}

.top-news-sidebar__cta {
	background: var(--top-charcoal) !important;
	color: var(--top-white);
}

.top-news-sidebar__cta strong,
.top-news-sidebar__cta span {
	display: block;
}

.top-news-sidebar__cta strong {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.1;
	text-transform: uppercase;
}

.top-news-sidebar__cta span {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.5;
}

.top-site-footer {
	background:
		linear-gradient(180deg, rgba(32, 35, 38, 0.98), rgba(23, 26, 29, 1)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px);
	color: rgba(255, 255, 255, 0.82);
	padding: 48px 0 22px;
}

.top-site-footer h2,
.top-site-footer h3 {
	margin-top: 0;
	color: var(--top-white);
}

.top-footer-brand {
	display: inline-flex;
	align-items: center;
	margin: -7px 0 18px;
}

.top-footer-logo {
	display: block;
	width: min(280px, 100%);
	height: auto;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.top-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 36px;
}

.top-footer-social,
.top-cert-row,
.top-footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.top-footer-badges {
	margin: 18px 0 16px;
}

.top-footer-badges span,
.top-footer-social a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 2px;
	color: var(--top-white);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-cert-row span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	font-weight: 800;
}

.top-footer-note {
	max-width: 220px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 12px;
	line-height: 1.5;
}

.top-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
}

@media (max-width: 1020px) {
	.top-main-nav__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 12px 0;
	}

	.top-logo,
	.top-nav-actions {
		justify-self: center;
	}

	.top-menu {
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.top-flyout,
	.top-menu .sub-menu {
		min-width: 320px;
	}

	.top-product-grid,
	.top-solution-grid,
	.top-brand-grid,
	.top-brand-directory-summary,
	.top-brand-directory-groups,
	.top-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.top-about-layout,
	.top-lower-grid,
	.top-news-inquiry-grid,
	.top-product-detail,
	.top-product-rfq-panel,
	.top-contact-layout {
		grid-template-columns: 1fr;
	}

	.top-contact-panel {
		position: static;
	}

	.top-contact-form-panel {
		order: -1;
	}

	.top-catalog-hero .top-container,
	.top-catalog-page .top-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-catalog-hero .top-container {
		align-items: start;
	}
}

@media (max-width: 720px) {
	html {
		scroll-padding-top: 178px;
	}

	body {
		padding-bottom: 68px;
	}

	:root {
		--top-container: min(100vw - 24px, 1180px);
		--top-home-grid: min(100vw - 24px, 1040px);
		--top-header-top-height: 28px;
		--top-header-main-height: 50px;
		--top-hero-height: 510px;
	}

	.top-header-bar__inner,
	.top-nav-actions,
	.top-hero__actions,
	.top-section-heading,
	.top-footer-bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.top-header-bar__inner {
		gap: 0;
		padding: 5px 0;
	}

	.home .top-header-bar__meta {
		display: none;
	}

	.top-header-bar__contact,
	.top-header-bar__meta {
		min-height: auto;
		justify-content: center;
		flex-wrap: wrap;
		gap: 7px 14px;
		font-size: 11px;
	}

	.top-main-nav__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		min-height: auto;
		padding: 8px 0 10px;
	}

	.top-logo {
		justify-self: center;
		height: 38px;
		min-width: 112px;
	}

	.top-logo__mark {
		width: 112px;
		height: 34px;
		flex-basis: 112px;
	}

	.top-logo__mark img {
		width: 112px;
		height: 34px;
	}

	.top-logo__wordmark strong {
		font-size: 20px;
	}

	.top-menu {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 6px;
		width: 100%;
		overflow-x: auto;
		padding-bottom: 1px;
		font-size: 11px;
		scrollbar-width: none;
	}

	.top-menu::-webkit-scrollbar {
		display: none;
	}

	.top-nav-links {
		width: 100%;
		overflow: hidden;
	}

	body:not(.home) .top-nav-links {
		display: none;
	}

	.top-menu a {
		min-height: 32px;
		padding: 0 10px;
		background: #f4f6f6;
		border: 1px solid var(--top-line);
		border-radius: 2px;
		white-space: nowrap;
	}

	.top-flyout,
	.top-menu .sub-menu {
		position: fixed;
		top: 106px;
		left: 12px;
		right: 12px;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-width: 0;
		padding: 10px;
		overflow: hidden;
		border-radius: 3px;
		transform: translateY(6px);
	}

	.top-flyout strong,
	.top-flyout .top-flyout__all {
		grid-column: 1 / -1;
	}

	.top-flyout a,
	.top-menu .sub-menu a {
		min-height: 48px;
		padding: 8px 10px;
		font-size: 11px;
	}

	.top-flyout a span {
		font-size: 11px;
	}

	.top-flyout a small {
		font-size: 9px;
	}

	.top-header-search {
		flex: 1 1 auto;
		width: auto;
		min-width: 0;
	}

	.top-header-search input {
		width: 100%;
	}

	.top-nav-actions {
		flex-direction: row;
		gap: 8px;
		width: 100%;
		min-width: 0;
	}

	.top-header-quote {
		flex: 0 0 auto;
		min-height: 36px;
		padding: 0 14px;
		font-size: 10px;
	}

	.top-catalog-hero,
	.top-product-hero {
		padding: 28px 0;
	}

	.top-catalog-hero .top-container,
	.top-catalog-page .top-product-grid,
	.top-archive-links-head,
	.top-product-search {
		grid-template-columns: 1fr;
	}

	.top-archive-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-page-hero h1,
	.top-product-hero h1,
	.top-catalog-hero h1 {
		font-size: 34px;
		line-height: 1.05;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.top-contact-hero h1 {
		font-size: 38px;
	}

	.top-page-actions {
		gap: 10px;
	}

	.top-hero,
	.top-hero__inner {
		min-height: var(--top-hero-height);
	}

	.top-hero {
		background-position: 53% center;
	}

	.top-hero h1 {
		max-width: 98%;
		font-size: clamp(34px, 9vw, 42px);
		line-height: 1.13;
	}

	.top-hero h1 span {
		white-space: normal;
	}

	.top-hero p {
		max-width: 92%;
		margin-top: 12px;
		font-size: clamp(14px, 4.1vw, 18px);
	}

	.top-hero .top-button {
		min-width: 156px;
		min-height: 40px;
		font-size: 11px;
	}

	.top-hero-proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: min(100%, 340px);
		margin-top: 18px;
	}

	.top-hero-proof span {
		min-height: 54px;
		padding: 0 5px;
		font-size: 8px;
	}

	.top-hero-proof strong {
		font-size: 18px;
	}

	.top-brand-strip .top-container {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.top-brand-strip a {
		min-height: 40px;
	}

	.top-brand-strip span {
		font-size: 9px;
	}

	.top-why::before,
	.top-why::after {
		width: 190px;
		opacity: 0.11;
	}

	.top-why-grid,
	.top-case-row,
	.top-brand-grid,
	.top-brand-directory-summary,
	.top-brand-directory-groups,
	.top-stats,
	.top-footer-grid,
	.top-rfq-form,
	.top-spec-grid,
	.top-product-search {
		grid-template-columns: 1fr;
	}

	.top-product-grid,
	.top-solution-grid,
	.top-why-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-section-lead {
		max-width: min(100%, 560px);
		font-size: 13px;
	}

	.top-section-cta {
		margin-top: 18px;
	}

	.top-why-product-card {
		min-height: 210px;
	}

	.top-solution-packaging {
		grid-column: span 2;
		grid-row: span 1;
		min-height: 250px;
	}

	.top-product-card h3 {
		min-height: 42px;
	}

	.top-process .top-container {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.top-process__head,
	.top-process__head .top-section-kicker {
		text-align: center;
		justify-content: center;
	}

	.top-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-process-card {
		min-height: 112px;
	}

	.top-product-assist {
		grid-template-columns: 1fr;
		gap: 13px;
		padding: 16px;
		text-align: center;
	}

	.top-product-assist strong {
		font-size: 16px;
	}

	.top-product-assist .top-button {
		width: 100%;
	}

	.top-procurement-panel {
		padding: 24px 20px 26px;
	}

	.top-news-inquiry-grid {
		gap: 22px;
	}

	.top-floating-contact {
		display: none;
	}

	.top-mobile-action-bar {
		position: fixed;
		right: 10px;
		bottom: 10px;
		left: 10px;
		z-index: 90;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		padding: 8px;
		background: rgba(23, 29, 34, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 6px;
		box-shadow: 0 16px 34px rgba(10, 14, 18, 0.32);
		backdrop-filter: blur(10px);
	}

	.top-mobile-action-bar a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-height: 42px;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 4px;
		color: var(--top-white);
		font-size: 10px;
		font-weight: 900;
		line-height: 1;
		text-transform: uppercase;
	}

	.top-mobile-action-bar__quote {
		background: var(--top-orange) !important;
		border-color: var(--top-orange) !important;
	}

	.top-contact-page + .top-site-footer ~ .top-mobile-action-bar,
	body:has(.top-contact-page) .top-mobile-action-bar,
	body:has(.top-catalog-page) .top-mobile-action-bar {
		display: none;
	}

	.top-product-gallery,
	.top-product-summary,
	.top-content-panel,
	.top-product-rfq-panel {
		padding: 16px;
	}

	.top-content-panel {
		overflow: hidden;
	}

	.top-content-panel table {
		display: table;
		table-layout: fixed;
		width: 100%;
		max-width: 100%;
		white-space: normal;
	}

	.top-content-panel h2,
	.top-content-panel h3 {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.top-content-panel th,
	.top-content-panel td {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.top-product-gallery__stage {
		aspect-ratio: 1 / 1;
	}

	.top-product-actions .top-button {
		flex: 1 1 120px;
	}

	.top-related-products-heading {
		grid-template-columns: 1fr;
	}

	.top-related-products-heading .top-section-heading__action {
		grid-row: auto;
		grid-column: 1;
		justify-self: start;
	}

	.top-contact-form-panel__head {
		margin-bottom: 14px;
	}

	.top-rfq-form {
		scroll-margin-top: 330px;
	}

	.top-rfq-form__promise {
		grid-template-columns: 1fr;
	}

	.top-section {
		padding: 34px 0;
	}

	.top-why {
		padding: 32px 0 34px;
	}

	.top-why-grid {
		gap: 14px;
	}

	.top-why-card {
		min-height: 0;
		padding: 18px 20px;
	}

	.top-why-card__head {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		margin-bottom: 10px;
	}

	.top-why-card span {
		width: 44px;
		height: 44px;
	}

	.top-why-card svg {
		width: 38px;
		height: 38px;
	}

	.top-why-card__head h3 {
		font-size: 17px;
	}

	.top-solutions,
	.top-why-products,
	.top-about-band,
	.top-lower-grid-section {
		padding-top: 34px;
		padding-bottom: 36px;
	}

	.top-about-layout h2 {
		font-size: 24px;
	}

	.top-about-checks div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.top-case-row {
		gap: 16px;
	}

	.top-case-card__body {
		padding: 14px;
	}

	.home .top-main-nav__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 7px;
		padding: 7px 0 8px;
	}

	.home .top-logo {
		grid-column: 1;
		grid-row: 1;
		width: 150px;
		height: 36px;
		justify-self: start;
	}

	.home .top-logo__mark,
	.home .top-logo__mark img {
		width: 150px;
		height: 36px;
	}

	.home .top-nav-actions {
		grid-column: 2;
		grid-row: 1;
		flex-direction: row;
		justify-self: end;
		align-self: center;
		width: auto;
	}

	.home .top-nav-links {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		overflow: hidden;
	}

	.home .top-menu {
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 6px;
		width: 100%;
		overflow-x: auto;
		padding-bottom: 1px;
		scrollbar-width: none;
	}

	.home .top-menu::-webkit-scrollbar {
		display: none;
	}

	.home .top-menu a {
		min-height: 32px;
		padding: 0 10px;
		background: #f4f6f6;
		border: 1px solid var(--top-line);
		border-radius: 2px;
		white-space: nowrap;
	}

	.home .top-header-search {
		display: none;
	}

	.home .top-header-search input {
		height: 34px;
	}

	.home .top-nav-actions {
		gap: 8px;
	}

	.home .top-nav-actions .top-button {
		min-height: 32px;
		padding: 0 11px;
		font-size: 10px;
	}

	.home .top-hero__inner {
		padding: 34px 0 38px;
	}

	.home .top-product-card__media {
		aspect-ratio: 16 / 11;
	}

	.home .top-product-card__media img {
		padding: 4px 12px 3px;
	}

	.home .top-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.home .top-product-card__body {
		padding: 11px 9px 12px;
	}

	.home .top-product-card h3 {
		min-height: 48px;
		font-size: 10px;
		line-height: 1.18;
	}

	.home .top-product-card p {
		min-height: 42px;
		font-size: 10px;
		-webkit-line-clamp: 3;
	}

	.home .top-product-card__actions .top-button {
		min-height: 26px;
		padding: 0 10px;
		font-size: 8px;
	}

	.home .top-product-card__actions {
		gap: 6px;
	}

	.home .top-floating-contact {
		display: none;
	}
}

@media (max-width: 520px) {
	.top-procurement-panel {
		padding: 22px 14px 24px;
	}

	.top-procurement-panel__head h2 {
		font-size: 22px;
		line-height: 1.1;
	}

	.top-procurement-panel h3 {
		font-size: 18px;
	}

	.top-procurement-panel__head p {
		font-size: 12px;
	}

	.top-rfq-ready {
		padding: 16px;
	}

	.top-rfq-ready h3 {
		font-size: 18px;
	}

	.top-rfq-ready li {
		font-size: 12px;
	}

	.top-news-list a {
		min-height: 72px;
		padding: 13px 15px 13px 18px;
	}

	.top-news-list strong {
		font-size: 13px;
	}

	.top-home-inquiry {
		padding: 20px 16px 18px;
	}

	.top-home-inquiry__promise {
		grid-template-columns: 1fr;
	}

	.home .top-product-grid {
		grid-template-columns: minmax(0, 1fr);
		max-width: 315px;
	}

	.home .top-product-card__media {
		aspect-ratio: 16 / 10.5;
	}

	.home .top-product-card__body {
		padding: 13px 14px 14px;
	}

	.home .top-product-card h3 {
		min-height: 0;
		font-size: 12px;
	}

	.home .top-product-card p {
		min-height: 0;
		font-size: 11px;
	}

	.home .top-product-card__actions .top-button {
		min-height: 30px;
		padding: 0 13px;
		font-size: 8px;
	}

	.top-about-checks div {
		padding: 11px 12px;
	}

	.top-about-checks strong,
	.top-about-checks span {
		font-size: 11px;
	}

	.top-case-row span {
		aspect-ratio: 16 / 8.5;
	}

	.top-case-card__body h3 {
		font-size: 12px;
	}

	.top-case-card__body p {
		font-size: 11px;
	}

	.home .top-floating-contact {
		display: none;
	}

	.home .top-floating-contact:hover,
	.home .top-floating-contact:focus-within {
		transform: none;
	}

	.top-solution-grid,
	.top-why-product-grid {
		grid-template-columns: 1fr;
	}

	.top-section-cta {
		display: grid;
		grid-template-columns: 1fr;
	}

	.top-section-cta .top-button,
	.top-procurement-link {
		width: 100%;
	}

	.top-why-product-card {
		grid-template-columns: 44px minmax(0, 1fr);
		min-height: 0;
	}

	.top-why-product-card i {
		padding-top: 18px;
		font-size: 16px;
	}

	.top-why-product-card > div {
		gap: 8px;
		padding: 17px 16px 16px;
	}

	.top-why-product-card h3 {
		font-size: 13px;
	}

	.top-why-product-card p,
	.top-why-product-card strong {
		font-size: 11px;
	}

	.top-process .top-container {
		gap: 12px;
	}

	.top-process h2 {
		font-size: 20px;
	}

	.top-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-process-card {
		min-height: 104px;
		padding: 12px 12px;
	}

	.top-process-card span {
		font-size: 18px;
	}

	.top-process-card h3 {
		font-size: 10.5px;
	}

	.top-process-card p {
		font-size: 9.5px;
		line-height: 1.35;
	}

	body:not(.home) .top-product-grid {
		grid-template-columns: 1fr;
	}

	.top-solution-packaging {
		grid-column: span 1;
	}
}

@media (max-width: 720px) {
	body:has(.top-brand-directory-page) {
		padding-bottom: 0;
	}

	body:has(.top-brand-directory-page) .top-mobile-action-bar {
		display: none;
	}

	.top-brand-intro,
	.top-catalog-trust {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		width: 100%;
	}

	.top-brand-intro h2,
	.top-catalog-trust h2 {
		font-size: 28px;
		line-height: 1.06;
	}

	.top-brand-intro p,
	.top-catalog-trust p {
		max-width: none;
		font-size: 14px;
	}

	.top-brand-proof,
	.top-catalog-trust__cards {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.top-catalog-trust .top-button {
		width: 100%;
	}

	.top-news-resource-intro,
	.top-news-detail-layout,
	.top-news-resource-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.top-news-resource-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.top-news-resource-card h2 {
		font-size: 20px;
	}

	.top-news-card__media,
	.top-news-card__media img,
	.top-news-card__placeholder {
		min-height: 190px;
	}

	.top-news-card__media {
		border-right: 0;
		border-bottom: 1px solid var(--top-line);
	}

	.top-news-card__body {
		padding: 18px;
	}

	.top-news-card__actions .top-section-heading__action,
	.top-news-card__rfq {
		width: 100%;
	}

	.top-news-breadcrumbs {
		padding: 14px 16px 0;
	}

	.top-news-featured-image {
		margin-top: 14px;
	}

	.top-news-featured-image img {
		aspect-ratio: 4 / 3;
	}

	.top-news-article-shell {
		max-width: none;
		padding: 24px 16px 28px;
	}

	.top-news-prose {
		font-size: 15px;
		line-height: 1.72;
	}

	.top-news-prose h2 {
		font-size: 23px;
	}

	.top-news-sidebar {
		position: static;
	}
}
