.commercial-maint-popup {
	position: fixed;
	inset: 0;
	z-index: 99990;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.commercial-maint-popup[hidden] {
	display: none !important;
}

.commercial-maint-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(4px);
}

.commercial-maint-popup__card {
	position: relative;
	z-index: 1;
	width: min(100%, 64rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1rem;
	background: #080808;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
	animation: commercial-maint-popup-in 0.24s ease-out;
}

.commercial-maint-popup__image-link {
	display: block;
}

.commercial-maint-popup__image-link img {
	display: block;
	width: 100%;
	height: auto;
}

.commercial-maint-popup__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 0, 0, 0.58);
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
}

.commercial-maint-popup__close:hover,
.commercial-maint-popup__close:focus-visible {
	background: rgba(227, 27, 35, 0.9);
}

.commercial-maint-popup__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: #0a0a0a;
}

.commercial-maint-popup__dismiss {
	border: 0;
	color: rgba(255, 255, 255, 0.78);
	background: transparent;
	cursor: pointer;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

body.commercial-maint-popup-open {
	overflow: hidden;
}

@keyframes commercial-maint-popup-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 640px) {
	.commercial-maint-popup {
		padding: 0.65rem;
	}

	.commercial-maint-popup__card {
		border-radius: 0.75rem;
	}

	.commercial-maint-popup__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.commercial-maint-popup__actions .btn {
		width: 100%;
	}
}
