html, body {
	overflow-x: hidden !important;
}

.fde-hero {
	display: flex !important;
	gap: 0;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box;
}

.fde-hero__slide {
	flex: 0 0 50%;
	width: 50%;
	min-width: 0;
	overflow: hidden;
	border-radius: 0;
	position: relative;
}

.fde-hero__track {
	display: flex;
	cursor: grab;
	will-change: transform;
	user-select: none;
	-webkit-user-select: none;
}

.fde-hero__track.is-animating {
	transition: transform 0.5s ease;
}

.fde-hero__track.is-dragging {
	cursor: grabbing;
}

.fde-hero__card {
	flex: 0 0 auto;
	height: var(--fde-hero-height-desktop, 500px);
	background-size: cover;
	background-position: center;
	background-color: #222;
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.fde-hero__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.15) 50%,
		transparent 100%
	);
	pointer-events: none;
}

.fde-hero__card-title {
	position: relative;
	z-index: 2;
	margin: 0;
	width: 100%;
	font-family: var(--fde-hero-font-family, inherit);
	font-size: var(--fde-hero-font-size, 1.4rem);
	font-weight: 700;
	line-height: 1.3;
	padding: 1.8rem 2.5rem;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.fde-hero__slide:first-child .fde-hero__card-title {
	text-align: right;
}

.fde-hero__slide:last-child .fde-hero__card-title {
	text-align: left;
}

.fde-hero__card-title a {
	color: #fff;
	text-decoration: none;
}

.fde-hero__card-title a:hover,
.fde-hero__card-title a:focus {
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
	.fde-hero__card {
		height: var(--fde-hero-height-tablet, 400px);
	}
}

@media (max-width: 768px) {
	.fde-hero {
		flex-direction: column;
	}

	.fde-hero__slide {
		flex: 0 0 100%;
		width: 100%;
	}

	.fde-hero__card {
		height: var(--fde-hero-height-mobile, 280px);
		align-items: center;
		justify-content: center;
	}

	.fde-hero__card-overlay {
		background: rgba(0, 0, 0, 0.4);
	}

	.fde-hero__card-title {
		font-size: 1.3rem;
		padding: 1rem;
		text-align: center;
	}

	.fde-hero__slide:first-child .fde-hero__card-title,
	.fde-hero__slide:last-child .fde-hero__card-title {
		text-align: center;
	}
}
