:root {
	--page-title-display: none;
}

.customers-page {
	background: #fff;
	color: var(--e-global-color-secondary);
	margin-top: 95px;
}

.customers-hero {
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 0 20px;
	background: #fff;
	z-index: 0;
}

.customers-hero::before,
.customers-hero::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 170px;
	height: 360px;
	background: #f0f0f0;
	transform: skewX(-29deg);
}

.customers-hero::before {
	top: -170px;
	right: 25%;
}

.customers-hero::after {
	top: -125px;
	right: 17%;
	background: transparent;
	border: 3px solid #f5f5f5;
}

.customers-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 0 58px;
}

.customers-hero__eyebrow,
.customers-hero h1 {
	margin: 0;
	line-height: var(--heading--line-height-h2, 1.125);
	letter-spacing: 0;
}

.customers-hero__eyebrow {
	color: var(--e-global-color-primary);
	font-family: "Ubuntu", Sans-serif;
	font-size: var(--heading--font-size-h2, 3rem);
	font-weight: 700;
}

.customers-hero h1 {
	color: var(--e-global-color-secondary);
	font-family: "Cairo", Sans-serif;
	font-size: var(--heading--font-size-h2, 3rem);
	font-weight: 600;
}

.customer-section {
	padding: 18px 20px 38px;
	background: #fff;
}

.customer-section__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.customer-section__heading {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	margin: 0 0 26px;
}

.customer-section__heading span {
	height: 1px;
	background: var(--e-global-color-primary);
}

.customer-section__heading h2 {
	margin: 0;
	color: var(--e-global-color-secondary);
	font-family: "Cairo", Sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.customer-logo-grid {
	display: grid;
	gap: 18px;
	align-items: stretch;
}

.customer-logo-grid--auto {
	grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

.customer-logo-grid--parts {
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.customer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 10px;
	border: 0 !important;
	border-radius: 0;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none;
	color: inherit !important;
	cursor: zoom-in;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	-webkit-appearance: none;
	appearance: none;
}

.customer-logo:hover,
.customer-logo:focus {
	border-color: transparent !important;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	outline: none;
	transform: translateY(-2px);
}

.customer-logo:focus-visible {
	outline: 2px solid var(--e-global-color-primary);
	outline-offset: 3px;
}

.customer-logo img {
	display: block;
	width: 100%;
	max-width: 210px;
	max-height: 104px;
	object-fit: contain;
}

.customer-logo-grid--parts .customer-logo {
	min-height: 96px;
}

.customer-logo-grid--parts .customer-logo img {
	max-width: 190px;
	max-height: 62px;
}

body.ati-customer-lightbox-open {
	overflow: hidden;
}

.ati-customer-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 36px;
	background: rgba(0, 0, 0, 0.78);
}

.ati-customer-lightbox[aria-hidden="false"] {
	display: flex;
}

.ati-customer-lightbox__image {
	max-width: min(92vw, 1180px);
	max-height: 86vh;
	object-fit: contain;
	background: #fff;
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
	cursor: zoom-out;
}

.ati-customer-lightbox__close {
	position: fixed;
	top: 18px;
	right: 22px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #1f1f1f;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.ati-customer-lightbox__close:hover,
.ati-customer-lightbox__close:focus {
	background: #fff;
	outline: 2px solid var(--e-global-color-primary);
	outline-offset: 2px;
}

@media (max-width: 640px) {
	.customers-hero {
		padding: 22px 18px;
	}

	.customers-hero__inner {
		padding-bottom: 34px;
	}

	.customers-hero::before,
	.customers-hero::after {
		right: -30px;
	}

	.customer-section {
		padding: 16px 18px 32px;
	}

	.customer-section__heading {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 20px;
	}

	.customer-section__heading span {
		display: none;
	}

	.customer-logo-grid,
	.customer-logo-grid--auto,
	.customer-logo-grid--parts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.customer-logo,
	.customer-logo-grid--parts .customer-logo {
		min-height: 84px;
		padding: 8px;
	}

	.customer-logo img,
	.customer-logo-grid--parts .customer-logo img {
		max-width: 100%;
		max-height: 72px;
	}

	.customer-logo-grid--parts .customer-logo img {
		max-height: 58px;
	}

	.ati-customer-lightbox {
		padding: 18px;
	}

	.ati-customer-lightbox__image {
		max-width: 96vw;
		max-height: 82vh;
	}
}
