.cdtg-gallery {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 100vh;
	min-height: 100svh;
	margin: 0;
	padding: 0;
	isolation: isolate;
}

.cdtg-gallery__sticky {
	position: relative;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	background: #000;
	z-index: 1;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

.cdtg-gallery__track {
	display: flex;
	width: var(--cdtg-track-width, 100%);
	height: 100%;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.cdtg-gallery__slide {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex: 0 0 var(--cdtg-slide-width, 100%);
	width: var(--cdtg-slide-width, 100%);
	height: 100%;
	overflow: hidden;
	background: #111;
}

.cdtg-gallery__slide--html {
	align-items: center;
}

.cdtg-gallery__slide--html .cdtg-gallery__text {
	top: 50%;
	bottom: auto;
	width: min(70%, 70rem);
	max-width: none;
	transform: translateY(-50%);
}

.cdtg-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
}

.cdtg-gallery__text {
	position: absolute;
	z-index: 1;
	left: clamp(1rem, 5vw, 5rem);
	bottom: clamp(1rem, 7vh, 5rem);
	max-width: min(42rem, calc(100% - 2rem));
	color: #fff;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.3em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
}

.cdtg-gallery__title {
	margin: 0 0 .5em;
	color: inherit;
	font-family: "OpenSauceSans", sans-serif;
	font-size: clamp(1.75rem, 4vw, 4rem);
	font-weight: 300;
	line-height: 1.05;
}

.cdtg-gallery__slide--design::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(165deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
	pointer-events: none;
}

.cdtg-gallery__content {
	display: block;
}

.cdtg-gallery__text > .arrowLink {
	display: inline-block;
	margin-top: 1.25rem;
}

.cdtg-gallery .arrowLink::after {
	bottom: 5px;
}

.cdtg-gallery__text > :first-child { margin-top: 0; }
.cdtg-gallery__text > :last-child { margin-bottom: 0; }

@media (max-width: 999px) {
	.cdtg-gallery__image {
		object-fit: cover;
	}
}

@media (max-width: 768px) {
	.cdtg-gallery {
		height: auto;
		min-height: 0;
	}

	.cdtg-gallery__sticky {
		position: relative;
		height: auto;
		overflow: visible;
	}

	.cdtg-gallery__track {
		display: block;
		width: 100%;
		height: auto;
		transform: none !important;
		will-change: auto;
	}

	.cdtg-gallery__slide {
		flex: none;
		width: 100%;
		height: 50vh;
		min-height: 24rem;
	}

	.cdtg-gallery__slide--html .cdtg-gallery__text {
		top: auto;
		bottom: 1rem;
		width: auto;
		transform: none;
	}
}

@media (max-width: 600px) {
	.cdtg-gallery__slide { min-height: 20rem; }
}

@media (prefers-reduced-motion: reduce) {
	.cdtg-gallery {
		height: auto;
		min-height: 0;
	}

	.cdtg-gallery__sticky {
		position: relative;
		height: auto;
		overflow: visible;
	}

	.cdtg-gallery__track {
		display: block;
		width: 100%;
		transform: none !important;
	}

	.cdtg-gallery__slide {
		width: 100%;
		height: auto;
		min-height: min(100vh, 50rem);
	}
}
