.lf-ws-wrap {
	--lf-lilac-1: #f6edff;
	--lf-lilac-2: #eaf8f4;
	font-family: inherit;
	padding: 12px 0;
}

.lf-ws-slider {
	position: relative;
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: 48px;
}

.lf-ws-viewport {
	overflow: hidden;
	border-radius: var(--radius-xl);
}

.lf-ws-track {
	display: flex;
	direction: rtl;
	touch-action: pan-y;
	will-change: transform;
}

.lf-ws-slide {
	flex: 0 0 100%;
	min-width: 100%;
	user-select: none;
}

.lf-ws-card {
	background: #fff;
	border: 1px solid var(--lf-border-soft);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
	display: grid;
	grid-template-columns: 38% 62%;
	min-height: 200px;
	overflow: hidden;
}

.lf-ws-cover {
	position: relative;
	background: linear-gradient(135deg, var(--lf-lilac-1), var(--lf-lilac-2));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #afa9ec;
	overflow: hidden;
}

.lf-ws-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lf-ws-cover .ti {
	font-size: 32px;
}

.lf-ws-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--lf-purple);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

.lf-ws-body {
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lf-ws-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--lf-ink);
	margin: 0 0 6px;
}

.lf-ws-sub {
	font-size: 13px;
	color: var(--lf-muted);
	margin: 0 0 14px;
	line-height: 1.6;
}

.lf-ws-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12px;
	color: var(--lf-muted);
	margin-bottom: 18px;
}

.lf-ws-meta:empty {
	display: none;
}

.lf-ws-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.lf-ws-meta .ti {
	font-size: 15px;
	color: var(--lf-purple);
}

.lf-ws-btn {
	display: inline-block;
	align-self: flex-start;
	background: #050505;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 24px;
	font-size: 12px;
	font-weight: 700;
}

.lf-ws-btn:hover {
	background: #000;
	color: #fff;
}

.lf-ws-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--lf-border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--lf-ink);
	box-shadow: var(--shadow-soft);
	z-index: 2;
	padding: 0;
}

.lf-ws-nav:hover {
	background: #f8fafc;
}

.lf-ws-nav.is-disabled {
	opacity: 0.3;
	pointer-events: none;
}

.lf-ws-prev {
	right: 0;
}

.lf-ws-next {
	left: 0;
}

.lf-ws-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 18px;
}

.lf-ws-dot {
	width: 8px;
	height: 8px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--lf-border);
	transition: 0.2s ease;
	cursor: pointer;
}

.lf-ws-dot.is-active {
	background: var(--lf-purple);
	width: 18px;
	border-radius: 999px;
}

@media (max-width: 768px) {
	.lf-ws-slider {
		padding-inline: 8px;
	}

	.lf-ws-nav {
		display: none;
	}
}

@media (max-width: 520px) {
	.lf-ws-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lf-ws-cover {
		aspect-ratio: 16 / 9;
	}

	.lf-ws-body {
		padding: 18px 20px;
	}
}
