.pv-gallery-grid {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: var(--pv-color-surface-soft);
	border-radius: var(--pv-type-radius-md);
	font-family: var(--pv-font-primary);
}

.pv-gallery-grid__track {
	display: flex;
	height: 100%;
	transition: transform 260ms ease;
	touch-action: pan-y;
}

.pv-gallery-grid__slide {
	flex: 0 0 100%;
	height: 100%;
	margin: 0;
}

.pv-gallery-grid__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pv-gallery-grid__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	width: var(--pv-type-space-2xl);
	height: var(--pv-type-space-2xl);
	padding: 0;
	border: 0;
	border-radius: var(--pv-type-radius-lg);
	background: var(--pv-color-overlay);
	color: var(--pv-color-surface);
	font-family: var(--pv-font-primary);
	font-size: var(--pv-type-size-lg);
	font-weight: var(--pv-type-weight-bold);
	place-items: center;
	transform: translateY(-50%);
	cursor: pointer;
}

.pv-gallery-grid__arrow--prev {
	left: var(--pv-type-space-sm);
}

.pv-gallery-grid__arrow--next {
	right: var(--pv-type-space-sm);
}
