.hot-random-image {
	cursor: zoom-in;
}

.hot-random-image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(0, 0, 0, 0.88);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	cursor: zoom-out;
}

.hot-random-image-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.hot-random-image-lightbox__img {
	max-width: min(96vw, 100%);
	max-height: 96vh;
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
	transform: scale(0.92);
	transition: transform 0.25s ease;
	cursor: zoom-out;
}

.hot-random-image-lightbox.is-open .hot-random-image-lightbox__img {
	transform: scale(1);
}

body.hot-random-image-lightbox-open {
	overflow: hidden;
}
