/* ------------------------------------------------------------------
 * lightbox.css -- full-screen image viewer (see js/lightbox.js).
 * Layered over the theme, non-destructive: remove this <link> + the
 * lightbox.js <script> to revert. Used by the band-member photos.
 * ------------------------------------------------------------------ */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.88);
}
.lightbox[hidden] {
	display: none;
}
.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 2px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
	position: absolute;
	top: 10px;
	right: 16px;
	padding: 8px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
}
.lightbox-close:hover {
	opacity: 0.8;
}
