.su-device-related-section,
.su-device-related-section * {
	box-sizing: border-box;
	font-family: var(--e-global-typography-text-font-family, "Poppins", sans-serif);
}

.su-device-related-section {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 20px clamp(14px, 2vw, 30px) 40px;
	background: #ffffff;
	overflow: hidden;
}

.su-device-related-inner {
	width: 100%;
	max-width: 1760px;
	margin: 0 auto;
}

.su-device-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.su-device-related-header h2 {
	margin: 0;
	color: #2776EA;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
}

.su-device-related-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.su-device-related-arrow,
.su-device-related-arrow:hover,
.su-device-related-arrow:focus,
.su-device-related-arrow:active {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	border: 2px solid #2776EA !important;
	border-radius: 50% !important;
	background: #2776EA !important;
	color: #ffffff !important;
	font-size: 26px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	transition: transform .2s ease, opacity .2s ease;
	outline: none !important;
}

.su-device-related-arrow:hover,
.su-device-related-arrow:focus,
.su-device-related-arrow:active {
	background: #1f67d8 !important;
	border-color: #1f67d8 !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

.su-device-related-arrow.is-hidden {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

.su-device-related-slider {
	position: relative;
	width: 100%;
}

.su-device-related-track {
	display: flex;
	gap: 16px;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding: 2px 2px 8px;
	outline: none;
}

.su-device-related-track::-webkit-scrollbar {
	display: none;
}

.su-device-related-card {
	flex: 0 0 calc((100% - 80px) / 6);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 320px;
	border: 1px solid #e8eef7;
	border-radius: 22px;
	padding: 14px;
	text-align: center;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
	transition: transform .22s ease, box-shadow .22s ease;
}

.su-device-related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.075);
}

.su-device-related-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 145px;
	margin-bottom: 8px;
}

.su-device-related-image img {
	max-width: 100%;
	max-height: 135px;
	object-fit: contain;
	display: block;
}

.su-device-related-card h3 {
	width: 100%;
	margin: 6px 0 12px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.su-device-related-card h3 a {
	color: #2776EA;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.su-device-related-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 9px 14px;
	border-radius: 12px;
	background: #2776EA;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.su-device-related-btn:hover {
	background: #1f67d8;
	color: #ffffff !important;
}

@media (max-width: 1400px) {
	.su-device-related-card {
		flex-basis: calc((100% - 48px) / 4);
	}
}

@media (max-width: 900px) {
	.su-device-related-card {
		flex-basis: calc((100% - 16px) / 2);
	}
}

@media (max-width: 600px) {
	.su-device-related-section {
		padding: 16px 14px 34px;
	}

	.su-device-related-header h2 {
		font-size: 26px;
	}

	.su-device-related-arrow,
	.su-device-related-arrow:hover,
	.su-device-related-arrow:focus,
	.su-device-related-arrow:active {
		width: 34px !important;
		height: 34px !important;
		font-size: 24px !important;
		background: #2776EA !important;
		border-color: #2776EA !important;
		color: #ffffff !important;
	}

	.su-device-related-track {
		gap: 14px;
	}

	.su-device-related-card {
		flex-basis: 86%;
		min-height: 300px;
		padding: 14px;
	}

	.su-device-related-image {
		height: 140px;
	}

	.su-device-related-image img {
		max-height: 130px;
	}

	.su-device-related-card h3,
	.su-device-related-card h3 a {
		font-size: 15px;
	}
}