/*
 * Sirocco lightbox
 * Styles for js/sirocco-lightbox.js. The plugin this replaces
 * (jquery.lightbox.min.js) never had its stylesheet added to the theme, which is
 * exactly why it silently did nothing. Added 2026-09-02.
 */

.sl-box {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(20, 20, 18, 0.94);
}

.sl-box.is-open {
	display: flex;
}

.sl-img {
	max-width: 100%;
	max-height: 82vh;
	border-radius: 10px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.sl-cap {
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	margin: 0;
	padding: 0 70px;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	line-height: 24px;
}

.sl-box button {
	position: absolute;
	padding: 10px 16px;
	border: none;
	background: transparent;
	color: #ffffff;
	font-family: 'Lato', sans-serif;
	line-height: 1;
	cursor: pointer;
}

.sl-box button:hover,
.sl-box button:focus {
	color: #c8d68a;
	outline: none;
}

.sl-close {
	top: 14px;
	right: 18px;
	font-size: 40px;
}

.sl-prev,
.sl-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 46px;
}

.sl-prev { left: 6px; }
.sl-next { right: 6px; }

@media only screen and (max-width: 40.062em) {

	.sl-box {
		padding: 12px;
	}

	.sl-prev,
	.sl-next {
		font-size: 34px;
	}

	.sl-cap {
		padding: 0 44px;
		font-size: 14px;
		line-height: 20px;
	}
}
