/* Navigation gallery */
nav-gallery {
	position: fixed;
	inset: 0;
	z-index: calc(var(--unk-z-fixed) + 1);
	display: block;
	pointer-events: none;
}

nav-gallery img {
	position: fixed;
	top: 50%;
	left: 50%;
	width: calc(100% - 32px);
	max-width: 768px;
	height: calc(100% - 32px);
	max-height: 768px;
	background: none !important;
	object-fit: contain;
	opacity: 0;
	filter: blur(8px);
	transform: translate(-50%, -50%);
	transition: opacity 0.4s ease, filter 0.4s ease;
}

nav-gallery img.is-visible {
	opacity: 1;
	filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
	nav-gallery img {
		transition: none;
	}
}
