/* Alexander Rudolph Manager – shared lightbox (used by hero + slider) */
.arm-lb {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(15, 15, 15, .95);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 4vw;
}
.arm-lb.arm-open {
	display: flex;
}
.arm-lb img {
	max-width: 92vw;
	max-height: 90vh;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.arm-lb-close {
	position: absolute;
	top: 22px;
	right: 30px;
	color: #fff;
	font-size: 28px;
	font-weight: 200;
	cursor: pointer;
	line-height: 1;
	opacity: .85;
}
.arm-lb-close:hover {
	opacity: 1;
}
