/* Nagaland News Core photo lightbox */

.nnc-lightbox{
	position:fixed;
	inset:0;
	z-index:99990;
	display:none;
	align-items:center;
	justify-content:center;
	background:rgba(10,8,6,0.95);
	padding:20px;
}
.nnc-lightbox.is-open{display:flex;}

.nnc-lb-fig{
	margin:0;
	max-width:92vw;
	max-height:88vh;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.nnc-lb-img{
	max-width:92vw;
	max-height:82vh;
	object-fit:contain;
	box-shadow:0 12px 44px rgba(0,0,0,0.55);
	background:#000;
}
.nnc-lb-cap{
	color:#e8e2d6;
	font-family:var(--sans, system-ui, sans-serif);
	font-size:13px;
	line-height:1.5;
	margin-top:12px;
	text-align:center;
	max-width:680px;
}

.nnc-lb-close,
.nnc-lb-prev,
.nnc-lb-next{
	position:absolute;
	background:rgba(255,255,255,0.10);
	color:#fff;
	border:0;
	cursor:pointer;
	font-size:28px;
	line-height:1;
	width:48px;
	height:48px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:background 0.15s ease;
}
.nnc-lb-close{top:16px;right:16px;}
.nnc-lb-prev{left:16px;top:50%;transform:translateY(-50%);}
.nnc-lb-next{right:16px;top:50%;transform:translateY(-50%);}
.nnc-lb-close:hover,
.nnc-lb-prev:hover,
.nnc-lb-next:hover{background:var(--red, #A81E2C);}

.nnc-lb-single .nnc-lb-prev,
.nnc-lb-single .nnc-lb-next{display:none;}

@media (max-width:560px){
	.nnc-lb-prev,
	.nnc-lb-next{width:40px;height:40px;font-size:22px;}
	.nnc-lb-close{top:10px;right:10px;}
}
