.mw-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	justify-content: center;
	align-items: center;
}

.mw-lightbox.is-visible {
	display: flex;
}

.mw-lightbox__box {
	position: relative;
	background: #f5f0eb;
	padding: 48px 40px 40px;
	text-align: center;
	max-width: 440px;
	width: 90%;
	animation: mwFadeIn 0.4s ease;
}

@keyframes mwFadeIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.mw-lightbox__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	line-height: 1;
	transition: color 0.2s;
}

.mw-lightbox__close:hover {
	color: #333;
}

.mw-lightbox__img {
	max-width: 320px;
	width: 100%;
	margin: 0 auto 32px;
}

.mw-lightbox__btn {
	display: inline-block;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	color: #f5f0eb;
	background: #2a2a2a;
	padding: 16px 36px 12px;
	line-height: 1;
	transition: background 0.2s;
}

.mw-lightbox__btn:hover {
	background: #444;
	color: #f5f0eb;
}
