.scroll-hijack-sentinel-top,
.scroll-hijack-sentinel-bottom {
	height: 1px;
	width: 100%;
	pointer-events: none;
}

.scroll-hijack-inner-sentinel-top,
.scroll-hijack-inner-sentinel-bottom {
	height: 1px;
	width: 100%;
	pointer-events: none;
}

.scroll-hijack-placeholder {
	min-height: 100vh;
}

.scroll-hijack-container {
	min-height: 100vh;
	position: relative;
}

.scroll-hijack-container.is-sticky-active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}

.scroll-hijack-inner {
	height: 90vh;
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* Scrollbar minimalista: solo la barra, sin carril ni flechas */
.scroll-hijack-inner::-webkit-scrollbar {
	width: 6px;
}

.scroll-hijack-inner::-webkit-scrollbar-button {
	display: none;
}

.scroll-hijack-inner::-webkit-scrollbar-track {
	background: transparent;
}

.scroll-hijack-inner::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}

.scroll-hijack-inner::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive: permitir apilado natural en móvil */
@media (max-width: 781px) {
	.scroll-hijack-container.is-sticky-active {
		height: auto;
		min-height: 100vh;
	}
}
