.cb-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.cb-lightbox--active {
	display: block;
}

.cb-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
}

.cb-lightbox__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
	box-sizing: border-box;
}

.cb-lightbox__image {
	max-width: min(90vw, 1200px);
	max-height: 80vh;
	height: auto;
	width: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cb-lightbox__close {
	align-self: flex-end;
	background: #fff;
	color: #000;
	border: none;
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	font-size: 0.875rem;
	cursor: pointer;
}

.cb-lightbox__close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

