.mlt-expanding-showcase {
	--mlt-esw-accent: #467ff7;
	--mlt-esw-dark: #07111f;
	--mlt-esw-ink: #ffffff;
	--mlt-esw-muted: rgba(255, 255, 255, 0.68);
	--mlt-esw-ease: cubic-bezier(0.05, 0.61, 0.41, 0.95);
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 2.25rem 10rem;
	background: var(--mlt-esw-dark);
	color: var(--mlt-esw-ink);
	pointer-events: auto;
}

.mlt-expanding-showcase * {
	box-sizing: border-box;
}

.mlt-expanding-showcase__container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	width: 100%;
	max-width: 115.5rem;
	margin: 0 auto;
	padding-top: 2.25rem;
}

.mlt-expanding-showcase__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	width: 100%;
}

.mlt-expanding-showcase__header-main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 760px;
}

.mlt-expanding-showcase__kicker {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: #fff;
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.15rem);
	font-weight: 700;
	letter-spacing: 0;
}

.mlt-expanding-showcase__corner {
	width: 0.65rem;
	aspect-ratio: 1 / 1;
	border-right: 2px solid var(--mlt-esw-accent);
	border-bottom: 2px solid var(--mlt-esw-accent);
	transform: rotate(180deg);
}

.mlt-expanding-showcase__heading {
	margin: 0;
	color: #fff;
	font-size: clamp(2.5rem, 1.55rem + 4vw, 4.85rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: 0;
}

.mlt-expanding-showcase__subheading {
	max-width: 580px;
	margin: 0;
	color: var(--mlt-esw-muted);
	font-size: clamp(1rem, 0.92rem + 0.45vw, 1.25rem);
	line-height: 1.5;
}

.mlt-expanding-showcase__mark {
	flex: 0 0 auto;
	width: clamp(5rem, 2.8rem + 12vw, 10rem);
	opacity: 0.9;
}

.mlt-expanding-showcase__mark img {
	display: block;
	width: 100%;
	height: auto;
}

.mlt-expanding-showcase__cards {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 470px;
	overflow: hidden;
}

.mlt-expanding-showcase__card {
	position: relative;
	flex: 0 0 64px;
	min-width: 64px;
	margin: 0 5px;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
	outline: none;
	transition:
		flex-basis 560ms var(--mlt-esw-ease),
		min-width 560ms var(--mlt-esw-ease),
		margin 560ms var(--mlt-esw-ease),
		transform 220ms ease,
		box-shadow 220ms ease;
}

.mlt-expanding-showcase__card:first-child {
	margin-left: 0;
}

.mlt-expanding-showcase__card:last-child {
	margin-right: 0;
}

.mlt-expanding-showcase__card.is-active {
	flex: 1 1 auto;
	min-width: 300px;
	margin: 0;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.mlt-expanding-showcase__card:focus-visible {
	box-shadow: 0 0 0 3px rgba(70, 127, 247, 0.85), 0 20px 70px rgba(0, 0, 0, 0.32);
}

.mlt-expanding-showcase__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	filter: grayscale(52%) brightness(0.58);
	transform: scale(1.04);
	transition:
		filter 560ms var(--mlt-esw-ease),
		transform 900ms var(--mlt-esw-ease);
}

.mlt-expanding-showcase__card.is-active .mlt-expanding-showcase__image {
	filter: grayscale(0) brightness(1);
	transform: scale(1);
}

.mlt-expanding-showcase__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.04) 100%);
	transition: background 560ms var(--mlt-esw-ease);
}

.mlt-expanding-showcase__card.is-active .mlt-expanding-showcase__shade {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 52%, rgba(0, 0, 0, 0.02) 100%);
}

.mlt-expanding-showcase__label {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 7px;
	z-index: 2;
	display: flex;
	min-height: 52px;
	transition:
		bottom 560ms var(--mlt-esw-ease),
		left 560ms var(--mlt-esw-ease);
}

.mlt-expanding-showcase__card.is-active .mlt-expanding-showcase__label {
	bottom: 18px;
	left: 18px;
	right: 18px;
}

.mlt-expanding-showcase__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--mlt-esw-accent);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
}

.mlt-expanding-showcase__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	margin-left: 15px;
	overflow: hidden;
	color: #fff;
}

.mlt-expanding-showcase__copy > * {
	position: relative;
	left: 20px;
	opacity: 0;
	transition:
		left 560ms var(--mlt-esw-ease),
		opacity 360ms ease;
}

.mlt-expanding-showcase__card.is-active .mlt-expanding-showcase__copy > * {
	left: 0;
	opacity: 1;
}

.mlt-expanding-showcase__card-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.25rem, 1rem + 0.8vw, 2rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.mlt-expanding-showcase__card-description {
	max-width: 560px;
	margin: 0.55rem 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(0.92rem, 0.86rem + 0.25vw, 1.1rem);
	line-height: 1.35;
}

.mlt-expanding-showcase__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0;
	margin: 0.85rem 0 0;
	list-style: none;
}

.mlt-expanding-showcase__chips li {
	padding: 0.34rem 0.68rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	line-height: 1;
}

.mlt-expanding-showcase__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 40px;
	padding: 0.68rem 1rem;
	margin-top: 1rem;
	border: 1px solid var(--mlt-esw-accent);
	border-radius: 8px;
	background: var(--mlt-esw-accent);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.mlt-expanding-showcase__button:hover,
.mlt-expanding-showcase__button:focus {
	background: #fff;
	border-color: #fff;
	color: var(--mlt-esw-dark);
	transform: translateY(-1px);
}

@media (hover: hover) and (pointer: fine) {
	.mlt-expanding-showcase__card:not(.is-active):hover {
		transform: translateY(-2px);
	}
}

@media (max-width: 1199px) and (min-width: 810px) {
	.mlt-expanding-showcase {
		padding: 0 2rem 7.5rem;
	}
}

@media (max-width: 809px), (hover: none) and (pointer: coarse) {
	.mlt-expanding-showcase {
		padding: 0 1.5rem 3.125rem;
	}

	.mlt-expanding-showcase__container {
		gap: 2rem;
	}

	.mlt-expanding-showcase__header {
		flex-direction: column;
	}

	.mlt-expanding-showcase__header-main {
		gap: 0.75rem;
	}

	.mlt-expanding-showcase__mark {
		display: none;
	}

	.mlt-expanding-showcase__cards {
		flex-direction: column;
		height: auto !important;
		overflow: visible;
	}

	.mlt-expanding-showcase__card {
		flex: 0 0 74px;
		min-width: 100%;
		min-height: 74px;
		margin: 0 0 10px;
		border-radius: 12px;
	}

	.mlt-expanding-showcase__card:last-child {
		margin-bottom: 0;
	}

	.mlt-expanding-showcase__card.is-active {
		flex: 1 1 auto;
		min-width: 100%;
		min-height: 330px;
		margin: 0 0 10px;
	}

	.mlt-expanding-showcase__label {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.mlt-expanding-showcase__badge {
		flex-basis: 46px;
		width: 46px;
		height: 46px;
	}

	.mlt-expanding-showcase__copy {
		overflow: visible;
		white-space: normal;
	}

	.mlt-expanding-showcase__card-title {
		font-size: 1.12rem;
	}

	.mlt-expanding-showcase__card-description {
		max-width: 280px;
		font-size: 0.88rem;
	}

	.mlt-expanding-showcase__chips {
		max-width: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mlt-expanding-showcase__card,
	.mlt-expanding-showcase__image,
	.mlt-expanding-showcase__shade,
	.mlt-expanding-showcase__label,
	.mlt-expanding-showcase__copy > *,
	.mlt-expanding-showcase__button {
		transition-duration: 1ms;
	}
}