.lsq-mobile-slider{
	display:block;
	position:relative;
	--lsq-ms-gap:20px;
	--lsq-ms-cols:3;
}

.lsq-mobile-slider__viewport{
	position:relative;
}

/* Desktop/tablet: normal layout (no slider) */
.lsq-mobile-slider__scroller{
	overflow:visible;
}

.lsq-mobile-slider__list{
	display:grid;
	gap:var(--lsq-ms-gap);
	grid-template-columns:repeat(var(--lsq-ms-cols), minmax(0, 1fr));
	align-items:stretch;
}

.lsq-mobile-slider__item{
	min-width:0;
	display:flex;
}

.lsq-mobile-slider__card{
	background:rgba(0,0,0,.2);
	border:1px solid #e5e7eb;
	border-radius:12px;
	padding:28px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	gap:12px;
	overflow:hidden;
	color:#fff;
	min-height:284px;
	width:100%;
	height:100%;
}

.lsq-mobile-slider__trigger{
	color:#f9c416;
	font-weight:700;
	font-size:10px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.lsq-mobile-slider__title{
	color:#fff;
	font-weight:600;
	font-size:13px;
	line-height:1.45;
}

.lsq-mobile-slider__desc{
	color:#ddd;
	font-weight:400;
	font-size:13px;
	line-height:1.65;
}

.lsq-mobile-slider__desc p{
	margin:0;
}

.lsq-mobile-slider__outcome{
	margin-top:auto;
	background:rgba(240,253,244,.1);
	border:0.5px solid #16a34a !important;
	border-radius:5px;
	padding:4px 10px;
	height:30px;
	display:flex;
	align-items:center;
	overflow:hidden;
}

.lsq-mobile-slider__outcome-text{
	color:#16a34a;
	font-weight:700;
	font-size:11px;
	letter-spacing:.44px;
	white-space:nowrap;
}

.lsq-mobile-slider__controls{
	display:flex;
	gap:12px;
	align-items:center;
	justify-content:center;
	margin-top:16px;
}

/* Safety: never show controls above mobile breakpoint */
@media (min-width: 768px){
	.lsq-mobile-slider__controls{
		display:none !important;
	}
}

.lsq-mobile-slider__arrow{
	appearance:none;
	width:46px;
	height:46px;
	padding:1px;
	border-radius:999px;
	background:#fff;
	border:1px solid #e2e8f0;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
}

.lsq-mobile-slider__arrow:hover{
	background:rgba(255,255,255,.95);
}

.lsq-mobile-slider__arrow[disabled]{
	opacity:.4;
	cursor:not-allowed;
}

.lsq-mobile-slider__arrow-icon{
	display:block;
	width:24px;
	height:24px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18l6-6-6-6' stroke='%231E2939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lsq-mobile-slider__arrow--prev .lsq-mobile-slider__arrow-icon{
	transform:rotate(180deg);
}

/* Mobile: enable slider behavior */
@media (max-width: 767px){
	.lsq-mobile-slider__viewport{
		overflow:hidden;
		padding-bottom:70px; /* reserve room for fixed bottom arrows */
	}

	.lsq-mobile-slider__scroller{
		overflow-x:auto;
		overflow-y:hidden;
		scroll-behavior:smooth;
		-webkit-overflow-scrolling:touch;
		scroll-snap-type:x mandatory;
		touch-action:pan-x;
		cursor:grab;
		user-select:none;
	}

	.lsq-mobile-slider.is-dragging .lsq-mobile-slider__scroller{
		cursor:grabbing;
	}

	.lsq-mobile-slider__scroller{
		scrollbar-width:none;
	}

	.lsq-mobile-slider__scroller::-webkit-scrollbar{
		display:none;
	}

	.lsq-mobile-slider__list{
		display:flex;
		flex-wrap:nowrap;
		align-items:stretch;
		padding:0 0px;
	}

	.lsq-mobile-slider__item{
		flex:0 0 auto;
		width: 100%;
		scroll-snap-align:start;
		display:flex;
	}

	.lsq-mobile-slider__controls{
		position:absolute;
		left:50%;
		bottom:0px;
		transform:translateX(-50%);
		margin-top:0;
		z-index:2;
	}
}

