/* Image lightbox */
body.pb-lightbox-open {
	overflow: hidden;
}
.pb-lightbox[hidden] {
	display: none !important;
}
.pb-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}
.pb-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 12, 0.82);
}
.pb-lightbox__dialog {
	position: relative;
	z-index: 1;
	max-width: min(96vw, 1100px);
	max-height: 92vh;
}
.pb-lightbox__img {
	display: block;
	max-width: 96vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	background: #111;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.pb-lightbox__close {
	position: absolute;
	top: -0.35rem;
	right: -0.35rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 0;
	background: #7c3aed;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
.pb-lightbox__close:hover {
	background: #6d28d9;
}

/* Hint that image-file links are zoomable */
.pb-page__content a[href*="/wp-content/uploads/"] img,
.pb-blog__content a[href*="/wp-content/uploads/"] img,
.woocommerce-product-gallery__image a img,
.pb-page__featured img {
	cursor: zoom-in;
}
