.hic-8407-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	position: relative;
	gap: 20px;
	outline: none;
}

.hic-8407-container-outer {
	flex: 1;
	overflow: hidden;
}

.hic-8407-container {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	height: 800px;
	gap: 20px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hic-8407-container::-webkit-scrollbar {
	display: none;
}

.hic-8407-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 800px;
	pointer-events: none;
}

.hic-8407-item img {
	height: 800px;
	width: auto;
	display: block;
}

.hic-8407-arrow {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	user-select: none;
	-webkit-user-select: none;
}

.hic-8407-arrow svg {
	width: 32px;
	height: 32px;
}

.hic-8407-scrollbar {
	margin-top: 20px;
	padding: 0 50px;
	width: 100%;
	box-sizing: border-box;
}

.hic-8407-scrollbar-track {
	height: 6px;
	background-color: #eee;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.hic-8407-scrollbar-thumb {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 20%;
	background-color: #333;
	border-radius: 4px;
	cursor: grab;
}

.hic-8407-scrollbar-thumb:active {
	cursor: grabbing;
}

/* =========================
   TABLET + MOBILE FIX (NO SCROLLBARS)
   ========================= */

@media (max-width: 1024px) {

	/* wrapper */
	.hic-8407-wrapper {
		display: block;
		overflow: hidden !important;
	}

	/* container wrapper */
	.hic-8407-container-outer {
		overflow: hidden !important;
	}

	/* container becomes simple block layout */
	.hic-8407-container {
		display: block;
		height: auto !important;
		overflow: hidden !important;
		gap: 0 !important;
	}

	/* items */
	.hic-8407-item {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		pointer-events: auto;
	}

	.hic-8407-item img {
		width: 100%;
		height: auto !important;
		max-width: 100%;
		display: block;
		object-fit: cover;
	}

	/* hide UI */
	.hic-8407-arrow,
	.hic-8407-scrollbar {
		display: none !important;
	}

	/* HARD STOP: prevent any page-level scroll bleed */
	html, body {
		overflow-x: hidden !important;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	html::-webkit-scrollbar,
	body::-webkit-scrollbar {
		display: none !important;
	}
}