.hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

.hero-slider-track {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 460px;
	max-height: 800px;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
	text-decoration: none;
	color: inherit;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

/* "slide" transition mode overrides the fade defaults via JS-added classes */
.hero-slider[data-transition="slide"] .hero-slide {
	transition: transform 0.6s ease, opacity 0.6s ease;
	transform: translateX(100%);
	opacity: 1;
	visibility: visible;
}

.hero-slider[data-transition="slide"] .hero-slide.is-active {
	transform: translateX(0);
	z-index: 2;
}

.hero-slider[data-transition="slide"] .hero-slide.is-prev {
	transform: translateX(-100%);
}

.hero-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-slide-content {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	padding: 40px 60px;
	color: #fff;
	box-sizing: border-box;
	font-family: "Manrope", Sans-serif;
}

.hero-slide-heading {
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.15;
	margin: 0 0 16px;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	font-family: "Manrope", Sans-serif;
}

.hero-slide-description {
	font-size: clamp(15px, 1.6vw, 19px);
	line-height: 1.6;
	margin: 0 0 24px;
	color: #f1f1f1;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	font-family: "Manrope", Sans-serif;
}

.hero-slide-description p {
	margin: 0 0 10px;
	font-family: "Manrope", Sans-serif;
}

.hero-slide-button {
	display: inline-block;
	padding: 14px 32px;
	background: #fad112;
	color: #111;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	font-size:14px;
}

.hero-slide-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	color: #111;
}

.hero-slide-button-disabled {
	opacity: 0.6;
	cursor: default;
	pointer-events: none;
}

/* --- Arrows ---------------------------------------------------------------- */
.hero-slider-arrow {
	position: absolute;
	bottom: 20px;
	top: auto;
	right: 0;
	z-index: 5;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid var(--gt-color-FFFFFF, #fff);
	background: transparent;
	color: var(--gt-color-FFFFFF, #fff);
	cursor: pointer;
	margin: 5px;
	outline: 0;
	padding: 0;
	transition: background 0.2s ease, color 0.2s ease;
}
.hero-slider-arrow:focus{
    background:#fff;
    color: #111;
}
.hero-slider-arrow svg {
	width: 20px;
	height: 20px;
	display: block;
}
.hero-slider-arrow polyline {
    fill: none;
}
.hero-slider-arrow:hover {
	background: #fff;
	color: #111;
}

.hero-slider-prev {
	right: 90px;
}

.hero-slider-next {
	right: 30px;
}

/* --- Dots -------------------------------------------------------------------- */
.hero-slider-dots {
	position: absolute;
	bottom: 32px;
	left: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 10px;
	pointer-events: none;
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	padding: 0;
	pointer-events: auto;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.is-active {
	background: #fff;
	transform: scale(1.2);
}

.hero-slider-empty-notice {
	padding: 16px;
	background: #fff8e5;
	border-left: 4px solid #dba617;
}

/* --- Responsive -------------------------------------------------------------- */
@media (max-width: 768px) {
	.hero-slider-track {
		height: 56vh;
		min-height: 320px;
	}

	.hero-slide-content {
		padding: 28px 28px;
		max-width: 100%;
	}

	.hero-slider-arrow {
		width: 36px;
		height: 36px;
		bottom: 16px;
	}

	.hero-slider-arrow svg {
		width: 17px;
		height: 17px;
	}

	.hero-slider-prev {
		right: 56px;
	}

	.hero-slider-next {
		right: 16px;
	}
}
