.fxm-manset {
	--fxm-overlay-solid: rgba(4, 31, 89, 0.92);
	--fxm-overlay-soft: rgba(4, 31, 89, 0.62);
	--fxm-overlay-clear: rgba(4, 31, 89, 0);
	--fxm-overlay-clear-stop: 82%;
	--fxm-overlay-bottom-stop: 44%;
	--fxm-title-color: #ffffff;
	--fxm-title-font-family: 'Poppins', sans-serif;
	--fxm-title-font-weight: 700;
	--fxm-title-font-size: 46px;
	--fxm-title-font-size-m: 24px;
	--fxm-nav-bg: #ececef;
	--fxm-nav-text: #121212;
	--fxm-nav-active-bg: #2f539d;
	--fxm-nav-active-text: #ffffff;
	position: relative;
	width: 100%;
	margin: 0 0 1.25rem;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--fxm-nav-bg);
}

.fxm-manset__viewport {
	position: relative;
	overflow: hidden;
	background: #0a0f1a;
}

.fxm-manset__slides {
	position: relative;
	aspect-ratio: 16 / 9;
}

.fxm-manset__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.fxm-manset__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.fxm-manset__link {
	display: block;
	height: 100%;
	position: relative;
	color: inherit;
}

.fxm-manset__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fxm-manset__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		var(--fxm-overlay-solid) 0%,
		var(--fxm-overlay-soft) var(--fxm-overlay-bottom-stop),
		var(--fxm-overlay-clear) var(--fxm-overlay-clear-stop)
	);
}

.fxm-manset__content {
	position: absolute;
	left: clamp(16px, 2.6vw, 46px);
	right: clamp(16px, 2.6vw, 46px);
	top: auto;
	transform: none;
	bottom: clamp(18px, 2.9vw, 44px);
	z-index: 3;
	max-width: min(88%, 1220px);
}

.fxm-manset__title {
	margin: 0 !important;
	color: var(--fxm-title-color) !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	max-width: min(27ch, 100%);
	font-family: var(--fxm-title-font-family) !important;
	font-weight: var(--fxm-title-font-weight) !important;
	font-size: min(var(--fxm-title-font-size), clamp(24px, 3.2vw, 58px)) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: none !important;
}

.fxm-manset__nav {
	display: grid !important;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	overflow-x: hidden;
	gap: 1px;
	background: rgba(0, 0, 0, 0.08);
	justify-content: stretch;
	align-items: stretch;
}

.fxm-manset__dot {
	appearance: none;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	border: 0 !important;
	background: var(--fxm-nav-bg) !important;
	color: var(--fxm-nav-text) !important;
	min-height: clamp(48px, 4.6vw, 66px);
	font-size: clamp(0.88rem, 1.2vw, 1.35rem) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	transition: background-color 0.15s ease, color 0.15s ease;
	white-space: nowrap;
	text-align: center;
}

.fxm-manset__dot::before,
.fxm-manset__dot::after,
.fxm-manset__nav::before,
.fxm-manset__nav::after {
	content: none !important;
}

.fxm-manset__dot.is-active {
	background: var(--fxm-nav-active-bg) !important;
	color: var(--fxm-nav-active-text) !important;
}

.fxm-manset__dot:focus-visible {
	outline: 2px solid var(--fxm-nav-active-bg);
	outline-offset: -2px;
}

@media (max-width: 1200px) {
	.fxm-manset__content {
		max-width: min(92%, 920px);
	}

	.fxm-manset__title {
		max-width: min(27ch, 100%);
	}
}

@media (max-width: 900px) {
	.fxm-manset__content {
		left: clamp(14px, 2.4vw, 32px);
		right: clamp(14px, 2.4vw, 32px);
		bottom: clamp(14px, 2.2vw, 26px);
		max-width: 100%;
	}

	.fxm-manset__title {
		max-width: min(23ch, 100%);
		font-size: min(var(--fxm-title-font-size), clamp(22px, 4vw, 46px)) !important;
	}

	.fxm-manset__dot {
		min-height: 52px;
	}
}

@media (max-width: 640px) {
	.fxm-manset__overlay {
		background: linear-gradient(
			to top,
			var(--fxm-overlay-solid) 0%,
			var(--fxm-overlay-soft) 48%,
			var(--fxm-overlay-clear) 100%
		);
	}

	.fxm-manset__content {
		left: 14px;
		right: 14px;
		bottom: 12px;
		max-width: 100%;
	}

	.fxm-manset__title {
		max-width: 100%;
		font-size: min(var(--fxm-title-font-size-m), clamp(18px, 6.2vw, 30px)) !important;
		line-height: 1.12;
		-webkit-line-clamp: 3;
	}

	.fxm-manset__dot {
		flex: 0 0 auto;
		display: block !important;
		width: 10px !important;
		min-width: 10px !important;
		max-width: 10px !important;
		height: 10px !important;
		min-height: 10px !important;
		padding: 0 !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 999px;
		background: rgba(20, 20, 20, 0.25) !important;
		color: transparent !important;
		font-size: 0 !important;
		line-height: 0 !important;
		text-indent: -9999px;
		overflow: hidden;
	}

	.fxm-manset__nav {
		display: flex !important;
		overflow-x: auto;
		justify-content: center;
		gap: 7px;
		padding: 10px 12px 12px;
		background: var(--fxm-nav-bg);
	}

	.fxm-manset__dot.is-active {
		width: 20px !important;
		min-width: 20px !important;
		max-width: 20px !important;
		border-radius: 999px;
	}

}
