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

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