.ink-features-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ink-features-slider .ink-fs-track {
	position: relative;
	width: 100%;
	height: auto;
}

.ink-features-slider .ink-fs-slide {
	position: relative;
	width: 100%;
	height: 600px;
	display: none;
}

.ink-features-slider .ink-fs-slide.is-active {
	display: block;
}

.ink-features-slider .ink-fs-slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ink-features-slider .ink-fs-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
	pointer-events: none;
}

.ink-features-slider .ink-fs-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding: 60px;
	box-sizing: border-box;
}

.ink-features-slider .ink-fs-text {
	max-width: 45%;
	text-align: left;
}

.ink-features-slider .ink-fs-title {
	font-family: 'Playfair Display', serif;
	font-size: 44px;
	font-weight: 400;
	color: #111111;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.ink-features-slider .ink-fs-desc {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #333333;
	margin: 0;
	line-height: 1.5;
}

.ink-features-slider .ink-fs-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.85);
	color: #111111;
	cursor: pointer;
	z-index: 5;
	transition: background-color 0.3s ease;
	padding: 0;
}

.ink-features-slider .ink-fs-arrow:hover {
	background-color: #ffffff;
}

.ink-features-slider .ink-fs-arrow-prev {
	left: 24px;
}

.ink-features-slider .ink-fs-arrow-next {
	right: 24px;
}

.ink-fs-dots {
	position: relative;
	width: 100%;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.ink-fs-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background-color: rgba(0,0,0,0.3);
	cursor: pointer;
	padding: 7px;
	margin: -7px;
	box-sizing: content-box;
	background-clip: content-box;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.ink-fs-dot:hover {
	background-color: rgba(0,0,0,0.55);
}

.ink-fs-dot.is-active {
	background-color: #000000;
	transform: scale(1.15);
}

@media (max-width: 767px) {
	.ink-features-slider .ink-fs-content {
		padding: 30px;
	}

	.ink-features-slider .ink-fs-text {
		max-width: 100%;
	}

	.ink-features-slider .ink-fs-title {
		font-size: 28px;
	}

	.ink-features-slider .ink-fs-desc {
		font-size: 15px;
	}

	.ink-features-slider .ink-fs-arrow {
		width: 36px;
		height: 36px;
	}
}
