/* 1882 Homestead hero slider --------------------------------------------
   Each slide is a standard core/cover block, so swapping the image, headline,
   or button link is done right in the editor. This file only handles the
   "scroller" behavior (track, arrows, dots, autoplay).
   ----------------------------------------------------------------------- */
.homestead-hero {
	position: relative;
	overflow: hidden;
}
.homestead-hero__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
.homestead-hero__track > .wp-block-cover {
	flex: 0 0 100%;
	min-width: 100%;
	margin: 0;
}
/* Arrows */
.homestead-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(31, 45, 61, 0.65);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.homestead-hero__arrow:hover { background: #9b2a2a; }
.homestead-hero__arrow--prev { left: 16px; }
.homestead-hero__arrow--next { right: 16px; }
/* Dots */
.homestead-hero__dots {
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.homestead-hero__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}
.homestead-hero__dot.is-active { background: #c9a24a; border-color: #c9a24a; }

@media (max-width: 781px) {
	.homestead-hero__arrow { width: 38px; height: 38px; font-size: 1.15rem; }
}
@media (prefers-reduced-motion: reduce) {
	.homestead-hero__track { transition: none; }
}
