/* Lightbox de la galería de los posts — pareja de assets/js/gallery-lightbox.js */

.rmf-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15, 20, 18, 0.94);
}
.rmf-lightbox.abierta { display: flex; }
body.rmf-lb-bloqueo { overflow: hidden; }

.rmf-lb-figura { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.rmf-lb-figura img {
	max-width: 92vw;
	max-height: 82vh;
	width: auto;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
}
.rmf-lb-contador {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	margin-top: 10px;
	letter-spacing: 0.06em;
}

.rmf-lightbox button {
	position: fixed;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rmf-lightbox button:hover,
.rmf-lightbox button:focus-visible { background: rgba(255, 255, 255, 0.22); outline: none; }
.rmf-lb-cerrar { top: 18px; right: 18px; font-size: 1.9rem; }
.rmf-lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.rmf-lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
	.rmf-lb-prev { left: 6px; }
	.rmf-lb-next { right: 6px; }
}
@media (prefers-reduced-motion: no-preference) {
	.rmf-lightbox.abierta .rmf-lb-figura img { animation: rmf-lb-entra 160ms ease-out; }
	@keyframes rmf-lb-entra { from { opacity: 0; transform: scale(0.985); } to { opacity: 1; transform: none; } }
}
