.homePageSlider {
	background:
		linear-gradient(180deg, #FFFFFF 0%, rgba(204, 186, 145, 0.15) 100%);
	border-bottom: 4px solid #CCBA91;
	padding: 80px 0 140px;
	position: relative;
	overflow: hidden;
}

.homePageSlider__carousel {
	position: relative;
}

.homePageSlider__slide {
	position: relative;
	transform: scale(0.90);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.homePageSlider .owl-item.center .homePageSlider__slide {
	transform: scale(1);
}

.homePageSlider__image {
	aspect-ratio: 777 / 528;
	overflow: hidden;
	background: #000000;
}

.homePageSlider__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Callouts are rendered as siblings of the carousel and positioned absolutely
   to the section, so the active callout appears at a fixed bottom-left
   position regardless of which slide is centered. JS toggles the [hidden]
   attribute on slide change. */
.homePageSlider__callouts {
	position: absolute;
	left: max(30px, calc(50% - 600px + 90px));
	bottom: 70px;
	width: 400px;
	max-width: calc(100% - 60px);
	z-index: 5;
	pointer-events: none;
}

.homePageSlider__callout {
	background: #FFFFFF;
	border-bottom: 4px solid #A69097;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	pointer-events: auto;
}

.homePageSlider__callout[hidden] {
	display: none;
}

.homePageSlider__headline {
	font-family: "Artifex Hand CF", serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #665D4A;
	margin: 0;
}

.homePageSlider__copy {
	font-family: "Ancizar Serif", serif;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.homePageSlider__copy p {
	margin: 0 0 12px;
}

.homePageSlider__copy p:last-child {
	margin-bottom: 0;
}

.homePageSlider__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 10px 0;
	border-bottom: 3px solid #D1A76C;
	font-family: "Artifex Hand CF", serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 25px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.homePageSlider__cta:hover,
.homePageSlider__cta:focus,
.homePageSlider__cta:active {
	color: #000000;
	border-bottom-color: #000000;
	text-decoration: none;
}

.homePageSlider__cta:focus {
	outline: 2px solid #1F677F;
	outline-offset: 4px;
}

/* Owl Carousel — nav arrows */
.homePageSlider .owl-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	margin: 0;
}

.homePageSlider .owl-nav button.owl-prev,
.homePageSlider .owl-nav button.owl-next {
	pointer-events: auto;
	width: 60px;
	height: 80px;
	background: #454545;
	color: #FFFFFF;
	border: none;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.homePageSlider .owl-nav button.owl-prev:focus,
.homePageSlider .owl-nav button.owl-next:focus {
	outline: none;
}

.homePageSlider .owl-nav button.owl-prev:focus-visible,
.homePageSlider .owl-nav button.owl-next:focus-visible {
	outline: 2px solid #FFFFFF;
	outline-offset: -4px;
}

.homePageSlider__navIcon {
	font-size: 32px;
	line-height: 1;
}

/* Owl Carousel — dots */
.homePageSlider .owl-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 70px;
}

.homePageSlider .owl-dots button.owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid #665D4A;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}

.homePageSlider .owl-dots button.owl-dot.active {
	background: #665D4A;
}

.homePageSlider .owl-dots button.owl-dot:focus-visible {
	outline: 2px solid #1F677F;
	outline-offset: 2px;
}

/* Mobile card section — hidden on desktop. */
.homePageSlider__mobileCards {
	display: none;
}

/* Screen-reader-only utility (used inside nav buttons). */
.homePageSlider .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1024px) {
	.homePageSlider {
		padding: 40px 0 40px;
	}
	.homePageSlider__callouts {
		position: static;
		left: auto;
		bottom: auto;
		width: 100%;
		max-width: none;
		margin: 20px auto 0;
		padding: 0 30px;
	}
	.homePageSlider__callout {
		padding: 32px 30px;
	}
	.homePageSlider .owl-nav {
		top: 40%;
	}
	.homePageSlider .owl-nav button.owl-prev,
	.homePageSlider .owl-nav button.owl-next {
		width: 48px;
		height: 64px;
	}
	.homePageSlider .owl-dots {
		margin-top: 25px;
	}
}

@media (max-width: 767px) {
	.homePageSlider {
		padding: 32px 0 40px;
	}

	/* Hide the desktop carousel and related chrome. */
	.homePageSlider__carousel--desktop,
	.homePageSlider__callouts--desktop,
	.homePageSlider__dots--desktop {
		display: none !important;
	}

	/* Show the mobile card stack. */
	.homePageSlider__mobileCards {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 0 20px;
	}

	.homePageSlider__mobileCard {
		background: #FFFFFF;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
		overflow: hidden;
	}

	.homePageSlider__mobileCard .homePageSlider__image {
		aspect-ratio: unset;
		height: 250px;
	}

	.homePageSlider__mobileCallout {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 28px 24px;
		border-bottom: 4px solid #A69097;
	}
}

@media (prefers-reduced-motion: reduce) {
	.homePageSlider__slide,
	.homePageSlider__callout,
	.homePageSlider__cta,
	.homePageSlider .owl-nav button {
		transition: none;
	}
}
