.psh-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s;
}

.psh-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.psh-lightbox__backdrop {
	position: absolute;
	inset: 0;
	cursor: zoom-out;
}

.psh-lightbox__inner {
	position: relative;
	z-index: 1;
	max-width: 100%;
	max-height: 100%;
}

.psh-lightbox__inner img,
.psh-lightbox__inner iframe {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	margin: 0 auto;
}

.psh-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
}

.psh-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.25rem;
}

.psh-lightbox__nav--prev { left: 1rem; }
.psh-lightbox__nav--next { right: 1rem; }
