/* ── Slider container ───────────────────────────────────────────── */
.hero-slider-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-slider {
	width: 100%;
	height: 100vh;
	overflow: hidden; /* prevent adjacent slides bleeding through */
}

/* ── Slide ──────────────────────────────────────────────────────── */
.hero-slider .swiper-slide {
	width: 100% !important; /* override the px value Swiper sets inline */
	flex-shrink: 0;
}

.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* ── Background image ───────────────────────────────────────────── */
.hero-slide__picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-slide__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ── Button anchor — left/top set per-slide via inline style ────── */
.hero-slide__content {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	transform: translate(-50%, -50%); /* centers button on the anchor point */
}

/* ── CTA Button ─────────────────────────────────────────────────── */
.hero-slide__btn {
	display: inline-block;
	padding: 14px 36px;
	background-color: #ffffff;
	color: #1a1a1a;
	pointer-events: auto; /* re-enable clicks on the button itself */
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	letter-spacing: 0.03em;
	white-space: nowrap;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.hero-slide__btn:hover,
.hero-slide__btn:focus-visible {
	background-color: #0033a1;
	color: #ffffff;
	transform: translateY(-2px);
	outline: none;
}

/* ── Navigation arrows ──────────────────────────────────────────── */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	color: #ffffff;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
	font-size: 1.5rem;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ── Pagination dots ────────────────────────────────────────────── */
.hero-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.6;
}

.hero-slider .swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 1;
}

/* ── Breakpoints ────────────────────────────────────────────────── */
@media (max-width: 1023px) {
	.hero-slider {
		height: 900px;
	}
	.hero-slide__content {
    left: 50% !important;
    top: 50% !important;
}
}

@media (max-width: 767px) {
	.hero-slider {
		height: 600px;
	}
}
