/* Лайтбокс галерей (assets/js/lightbox.js) */
.an-lb-open { overflow: hidden; }

.an-lb {
	width: 100vw; max-width: none; height: 100dvh; max-height: none;
	margin: 0; padding: 0; border: 0;
	background: #0E0C09; color: var(--an-ivory);
	overscroll-behavior: contain; touch-action: pan-y pinch-zoom;
}
.an-lb::backdrop { background: rgba(14, 12, 9, 0.6); }

.an-lb__bar {
	position: absolute; z-index: 2; top: 0; left: 0; right: 0;
	display: flex; align-items: center; justify-content: space-between;
	padding: 8px 8px 8px var(--an-gutter);
}
.an-lb__count { font-size: 0.875rem; letter-spacing: 0.08em; color: #CFC6B3; }

.an-lb__btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
	background: rgba(22, 20, 15, 0.5); color: var(--an-ivory); cursor: pointer;
}
.an-lb__btn:hover { background: rgba(246, 243, 236, 0.15); }
.an-lb__btn:focus-visible { outline: 2px solid var(--an-gold-light); outline-offset: 2px; }
.an-lb__btn[hidden] { display: none; }
.an-lb__prev, .an-lb__next { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); }
.an-lb__prev { left: 8px; }
.an-lb__next { right: 8px; }

.an-lb__figure {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
	width: 100%; height: 100%; margin: 0; padding: 64px 0 24px;
}
.an-lb__img {
	max-width: 100%; max-height: calc(100% - 40px); object-fit: contain;
	transition: opacity .2s ease; user-select: none; -webkit-user-drag: none;
}
.an-lb.is-loading .an-lb__img { opacity: 0.3; }
.an-lb__caption { max-width: 62ch; padding: 0 var(--an-gutter); font-size: 0.9375rem; text-align: center; color: #CFC6B3; }
.an-lb__caption[hidden] { display: none; }

@media (min-width: 900px) {
	.an-lb__figure { padding: 72px 88px 32px; }
	.an-lb__prev { left: 20px; }
	.an-lb__next { right: 20px; }
}
