.wcs-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 260px;
	background: #07122c;
}

.wcs-slider,
.wcs-slider * {
	box-sizing: border-box;
}

.wcs-slider__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.wcs-slide {
	position: absolute;
	inset: 0;
	display: flex;
	width: 100%;
	height: 100%;
	background-image: var(--wcs-bg-desktop);
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transform: translateX(2%);
	transition: opacity 480ms ease, transform 480ms ease, visibility 480ms ease;
}

.wcs-slide::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background: rgba(2, 10, 30, 0.35);
	opacity: 1;
	mix-blend-mode: normal;
	pointer-events: none;
}

.wcs-slider--overlay-disabled .wcs-slide::before {
	display: none;
}

.wcs-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	z-index: 1;
}

.wcs-slide__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: var(--wcs-container-width, 1200px);
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.wcs-slide__content {
	display: flex;
	flex-direction: column;
	width: min(100%, var(--wcs-content-width, var(--wcs-global-content-width, 520px)));
	max-width: 100%;
	color: #fff;
}

.wcs-slide__sub-title {
	margin: 0 0 10px;
	color: #aebbd4;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.wcs-slide__main-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 56px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.95;
	text-transform: uppercase;
}

.wcs-slide__description {
	margin: 0 0 24px;
	color: #d9e2f3;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.wcs-slide__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	gap: 10px;
	width: fit-content;
	max-width: 100%;
	min-height: 44px;
	text-decoration: none;
	transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.wcs-slide__button:hover,
.wcs-slide__button:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.wcs-slide__button-icon,
.wcs-slider__arrow-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.wcs-slide__button-icon svg,
.wcs-slider__arrow-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.wcs-slide__button-icon-img,
.wcs-slider__arrow-img {
	display: block;
	flex: 0 0 auto;
	width: 1em;
	height: 1em;
	object-fit: contain;
}

.wcs-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #07122c;
	cursor: pointer;
	line-height: 1;
	transform: translateY(-50%);
	transition: background-color 180ms ease, transform 180ms ease;
}

.wcs-slider__arrow:hover,
.wcs-slider__arrow:focus {
	background: #ffd21f;
	transform: translateY(-50%) scale(1.04);
}

.wcs-slider__arrow--prev {
	left: 18px;
}

.wcs-slider__arrow--next {
	right: 18px;
}

.wcs-slider__dots {
	position: absolute;
	right: 24px;
	bottom: 92px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.wcs-slider__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.wcs-slider__dot.is-active {
	background: #ffd21f;
	transform: scale(1.25);
}

.wcs-features {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	min-height: 74px;
	backdrop-filter: blur(8px);
}

.wcs-features__inner {
	width: 100%;
	min-height: 74px;
}

.wcs-features__list {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: var(--wcs-container-width, 1200px);
	min-height: 74px;
	margin-right: auto;
	margin-left: auto;
}

.wcs-feature {
	display: flex;
	flex: 0 0 auto;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	min-width: 0;
	white-space: nowrap;
}

.wcs-feature__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	font-size: 27px;
	line-height: 1;
}

.wcs-feature__icon svg {
	width: 1em;
	height: 1em;
}

.wcs-feature__body {
	min-width: 0;
}

.wcs-feature__title {
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.wcs-feature__text {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
}

@media (max-width: 1024px) {
	.wcs-slide {
		background-image: var(--wcs-bg-tablet);
	}

	.wcs-slide__main-title {
		font-size: 46px;
	}

	.wcs-slider__dots {
		bottom: 88px;
	}
}

@media (max-width: 767px) {
	.wcs-slider--hide-features-mobile .wcs-features {
		display: none;
	}

	.wcs-slide {
		background-image: var(--wcs-bg-mobile);
	}

	.wcs-slide__inner {
		align-items: flex-start;
	}

	.wcs-slide__main-title {
		font-size: 38px;
		line-height: 1;
	}

	.wcs-slide__description {
		font-size: 15px;
	}

	.wcs-slider__arrow {
		width: 36px;
		height: 36px;
	}

	.wcs-slider__arrow--prev {
		left: 10px;
	}

	.wcs-slider__arrow--next {
		right: 10px;
	}

	.wcs-slider__dots {
		right: 16px;
		bottom: 16px;
	}

	.wcs-features {
		overflow: visible;
		min-height: 0;
	}

	.wcs-features__inner {
		min-height: 0;
	}

	.wcs-features__list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		min-height: 0;
	}

	.wcs-feature {
		flex: 0 0 auto;
		align-items: center;
		width: 100%;
		white-space: normal;
	}
}
