.moya-lws-wrap {
	position: relative;
}

.moya-lws {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	gap: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.moya-lws__dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transform: translateX(-50%);
}

.moya-lws__dot {
	box-sizing: content-box;
	width: 9px;
	height: 9px;
	min-width: 0;
	padding: 0;
	border: 5px solid transparent;
	border-radius: 50%;
	background-clip: content-box;
	background-color: rgba(255, 255, 255, .55);
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease;
}

.moya-lws__dot[aria-current="true"] {
	background-color: #fff;
	transform: scale(1.25);
}

.moya-lws__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.moya-lws::-webkit-scrollbar {
	display: none;
}

.moya-lws__card {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-width: 0;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.moya-lws__card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(0, 0, 0, .45);
}

.moya-lws__content {
	width: 100%;
	padding: clamp(24px, 4vw, 56px);
	color: #fff;
}

.moya-lws__title {
	margin: 0 0 12px;
	color: inherit;
	font-size: clamp(30px, 4vw, 54px);
	line-height: 1.05;
	color: inherit;
}

.moya-lws__description {
	max-width: 620px;
	margin: 0 0 24px;
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.55;
}

.moya-lws__button {
	display: inline-block;
	padding: 13px 24px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease;
}

.moya-lws__button:visited {
	color: #fff;
}

.moya-lws__button:hover,
.moya-lws__button:focus-visible {
	background: #fff;
	color: #171717;
}

@media (max-width: 767px) {
	.moya-lws__content { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
	.moya-lws {
		scroll-behavior: auto;
	}
}
