.gkgod-hero-slider {
	overscroll-behavior-x: contain;
	touch-action: pan-y;
}

.gkgod-hero-slider__track,
.gkgod-hero-slider__slide {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.gkgod-hero-slider__slide {
	opacity: 0;
	transform: scale(1.055);
	transition: opacity .8s ease, transform 1.4s cubic-bezier(.22,.61,.36,1);
}

.gkgod-hero-slider__slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.gkgod-hero-slider__slide img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gkgod-hero-slider__slide:nth-child(1) img { object-position: center 58%; }
.gkgod-hero-slider__slide:nth-child(2) img { object-position: center 54%; }
.gkgod-hero-slider__slide:nth-child(3) img { object-position: center 50%; }
.gkgod-hero-slider__slide:nth-child(4) img { object-position: center 56%; }
.gkgod-hero-slider__slide:nth-child(5) img { object-position: center 52%; }

.gkgod-hero-slider .gkgod-hero__shade { z-index: 2; }
.gkgod-hero-slider .gkgod-hero__content { z-index: 3; }

.gkgod-hero-slider .gkgod-hero__content h1 {
	font-size: clamp(3.25rem, 5.15vw, 5.9rem);
	line-height: .96;
	max-width: 850px;
}

.gkgod-hero-slider .gkgod-hero__content > p:not(.gkgod-eyebrow) {
	font-size: clamp(.95rem, 1.15vw, 1.15rem);
	max-width: 640px;
}

.gkgod-hero-slider__controls {
	align-items: center;
	bottom: 36px;
	display: flex;
	gap: 13px;
	position: absolute;
	right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
	z-index: 4;
}

.gkgod-hero-slider__arrow,
.gkgod-hero-slider__dots button {
	appearance: none;
	background: rgba(15,15,12,.3);
	border: 1px solid rgba(255,255,255,.5);
	color: #fff;
	cursor: pointer;
}

.gkgod-hero-slider__arrow {
	align-items: center;
	border-radius: 50%;
	display: flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	width: 38px;
}

.gkgod-hero-slider__dots {
	align-items: center;
	display: flex;
	gap: 6px;
}

.gkgod-hero-slider__dots button {
	background: rgba(15,15,12,.35);
	border: 1px solid rgba(255,255,255,.38);
	height: 50px;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
	width: 70px;
}

.gkgod-hero-slider__dots button img {
	display: block;
	height: 100%;
	object-fit: cover;
	opacity: .58;
	transition: opacity .2s ease, transform .4s ease;
	width: 100%;
}

.gkgod-hero-slider__dots button[aria-current="true"] {
	border-color: #fff;
	transform: translateY(-3px);
}

.gkgod-hero-slider__dots button[aria-current="true"] img {
	opacity: 1;
	transform: scale(1.04);
}

@media (max-width: 640px) {
	.gkgod-hero-slider__controls {
		bottom: 18px;
		right: var(--pad);
	}

	.gkgod-hero-slider__arrow { display: none; }
	.gkgod-hero-slider .gkgod-hero__content { padding-bottom: 72px; }
	.gkgod-hero-slider .gkgod-hero__content h1 {
		font-size: clamp(2.35rem, 10.5vw, 2.8rem);
		line-height: .98;
		max-width: 350px;
	}
	.gkgod-hero-slider .gkgod-hero__content > p:not(.gkgod-eyebrow) {
		font-size: .92rem;
		line-height: 1.5;
		margin: 20px 0 26px;
	}
	.gkgod-hero-slider__dots { gap: 4px; }
	.gkgod-hero-slider__dots button { height: 34px; width: 46px; }
}

@media (prefers-reduced-motion: reduce) {
	.gkgod-hero-slider__slide { transition: opacity .2s linear; }
}
