/* Lokale Vanilla-Lightbox (ersetzt jquery.fancybox.css). Keine externen Ressourcen. */
.mn-lightbox {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	display: none;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.88);
	align-items: center;
	justify-content: center;
	text-align: center;
}
.mn-lightbox.is-open { display: flex; }

.mn-lb-figure {
	margin: 0;
	max-width: 92vw;
	max-height: 92vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.mn-lb-img {
	display: block;
	max-width: 90vw;
	max-height: 82vh;
	width: auto;
	height: auto;
	background: #fff;
	padding: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.mn-lb-caption {
	color: #fff;
	font-family: 'MyriadPro-Cond', Arial, sans-serif;
	font-size: 18px;
	line-height: 1.4;
	margin-top: 16px;
	max-width: 90vw;
}
.mn-lb-close, .mn-lb-prev, .mn-lb-next {
	position: absolute;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	opacity: 0.75;
	transition: opacity 0.2s ease;
	line-height: 1;
	font-family: Arial, sans-serif;
	-webkit-tap-highlight-color: transparent;
}
.mn-lb-close:hover, .mn-lb-prev:hover, .mn-lb-next:hover,
.mn-lb-close:focus, .mn-lb-prev:focus, .mn-lb-next:focus { opacity: 1; outline: none; }

.mn-lb-close { top: 16px; right: 24px; font-size: 44px; }
.mn-lb-prev, .mn-lb-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 52px;
	padding: 12px 20px;
}
.mn-lb-prev { left: 8px; }
.mn-lb-next { right: 8px; }

@media (max-width: 640px) {
	.mn-lb-close { font-size: 34px; top: 10px; right: 14px; }
	.mn-lb-prev, .mn-lb-next { font-size: 36px; padding: 8px 12px; }
}
