.kv2vp-photo__link {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: none;
}

.kv2vp-photo__link:focus-visible {
	outline: 3px solid var(--vn-gold-light, #f0c77d);
	outline-offset: -4px;
}

.kv2vp-photo__link img {
	transition: transform 220ms ease, filter 220ms ease;
}

.kv2vp-photo__link:hover img {
	filter: brightness(0.88);
	transform: scale(1.025);
}

.kv2vp-photo__zoom {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	display: grid;
	width: 2.25rem;
	height: 2.25rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 50%;
	background: rgba(11, 11, 11, 0.78);
	color: #fff;
	font-size: 1.35rem;
	line-height: 1;
	opacity: 0;
	transition: opacity 180ms ease, transform 180ms ease;
	transform: translateY(4px);
}

.kv2vp-photo__link:hover .kv2vp-photo__zoom,
.kv2vp-photo__link:focus-visible .kv2vp-photo__zoom {
	opacity: 1;
	transform: translateY(0);
}

.kv2vp-lightbox {
	width: min(94vw, 1180px);
	max-width: none;
	max-height: 94vh;
	padding: 0;
	overflow: visible;
	border: 1px solid rgba(211, 167, 93, 0.55);
	border-radius: 18px;
	background: #0b0b0b;
	color: #f7f4ed;
	box-shadow: 0 28px 100px rgba(0, 0, 0, 0.72);
}

.kv2vp-lightbox::backdrop {
	background: rgba(0, 0, 0, 0.84);
	backdrop-filter: blur(4px);
}

.kv2vp-lightbox__inner {
	position: relative;
	display: grid;
	max-height: 94vh;
}

.kv2vp-lightbox__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(94vh - 4.5rem);
	margin: auto;
	object-fit: contain;
}

.kv2vp-lightbox__caption {
	min-height: 3rem;
	margin: 0;
	padding: 0.9rem 4.25rem 0.9rem 1rem;
	color: #d8d2c8;
	font-size: 0.9rem;
	line-height: 1.45;
}

.kv2vp-lightbox__close {
	position: absolute;
	z-index: 2;
	top: 0.7rem;
	right: 0.7rem;
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: rgba(11, 11, 11, 0.88);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 1.6rem;
	line-height: 1;
}

.kv2vp-lightbox__close:focus-visible {
	outline: 3px solid #f0c77d;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.kv2vp-photo__link img,
	.kv2vp-photo__zoom {
		transition: none;
	}
}

@media (forced-colors: active) {
	.kv2vp-photo__link,
	.kv2vp-lightbox,
	.kv2vp-lightbox__close {
		border: 1px solid ButtonText;
	}
}
