.image-modal[hidden] {
	display: none;
}

.image-modal {
	position: fixed;
	inset: 0;
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.image-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.image-modal-content {
	position: relative;
	z-index: 1;
	max-width: 95vw;
	max-height: 95vh;
}

.image-modal-image {
	display: block;
	max-width: 95vw;
	max-height: 95vh;
	width: auto;
	height: auto;
}

.image-modal-close {
	position: absolute;
	top: -0.75rem;
	right: -0.75rem;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.image-modal-close:focus-visible,
.image-modal-trigger:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

body.image-modal-open {
	overflow: hidden;
}

.image-modal-trigger {
	cursor: zoom-in;
}
