.gp-gallery {
	--gp-height: 420px;
	--gp-gap: 12px;
	display: flex;
	align-items: stretch;
	gap: 1rem;
	width: 100%;
}

.gp-gallery__viewport {
	overflow: hidden;
	flex: 1 1 auto;
	min-width: 0;
	cursor: grab;
}

.gp-gallery__viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.gp-gallery__track {
	display: flex;
	align-items: stretch;
	gap: var(--gp-gap);
	will-change: transform;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gp-gallery__item {
	flex: 0 0 auto;
	margin: 0;
	height: var(--gp-height);
}

.gp-gallery__image {
	display: block;
	height: var(--gp-height);
	width: auto;
	max-width: none;
	object-fit: cover;
}

.gp-gallery__nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.gp-gallery__btn--next {
	order: 1;
}

.gp-gallery__btn--prev {
	order: 2;
}

.gp-gallery__btn {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: none;
	background-color: transparent;
	box-shadow: none;
	color: #000;
	width: auto;
	min-width: 0;
	height: auto;
	min-height: 0;
	padding: 0;
	margin: 0;
	line-height: 1;
	font-family: inherit;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gp-gallery__chevron {
	display: block;
	color: #000;
	font-size: 1.75rem;
	line-height: 1;
	pointer-events: none;
}

.gp-gallery__btn:hover:not(:disabled) {
	opacity: 0.55;
}

.gp-gallery__btn:disabled {
	opacity: 0.25;
	cursor: default;
}

@media (max-width: 768px) {
	.gp-gallery {
		--gp-height: 280px;
	}
}
