/*
 * Page 411: dependency-free exhibition gallery.  All selectors are scoped so
 * the historical theme and other WordPress galleries keep their appearance.
 */
.haussonder-exhibition-gallery {
	clear: both;
	margin: 1.625em 0;
	max-width: 760px;
}

.haussonder-exhibition-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.haussonder-exhibition-gallery__item {
	margin: 0;
	padding: 0;
}

.haussonder-exhibition-gallery__link {
	background: #fff;
	display: block;
	line-height: 0;
	outline-offset: 3px;
	transition: opacity 160ms ease;
}

.haussonder-exhibition-gallery__link:focus,
.haussonder-exhibition-gallery__link:hover {
	opacity: .78;
}

/* Override the legacy .entry-content img frame only inside this component. */
.entry-content-single .haussonder-exhibition-gallery__link img,
.haussonder-exhibition-gallery__link img {
	background: transparent;
	border: 0;
	display: block;
	height: auto;
	margin: 0;
	max-width: 100%;
	padding: 0;
	position: static;
	width: 100%;
}

.haussonder-exhibition-gallery__overlay[hidden] {
	display: none;
}

.haussonder-exhibition-gallery__overlay {
	align-items: center;
	background: rgba(0, 0, 0, .86);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 10000;
}

.haussonder-exhibition-gallery__dialog {
	box-sizing: border-box;
	max-height: 100%;
	max-width: 1120px;
	position: relative;
	width: 100%;
}

.haussonder-exhibition-gallery__figure {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-height: calc(100vh - 48px);
}

.haussonder-exhibition-gallery__full-image {
	background: #111;
	border: 0;
	display: block;
	height: auto;
	margin: 0;
	max-height: calc(100vh - 108px);
	max-width: 100%;
	padding: 0;
	width: auto;
}

.haussonder-exhibition-gallery__caption {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	margin: 10px 48px 0;
	text-align: center;
}

.haussonder-exhibition-gallery__close,
.haussonder-exhibition-gallery__previous,
.haussonder-exhibition-gallery__next {
	background: rgba(0, 0, 0, .58);
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	padding: 10px 12px;
	position: absolute;
	z-index: 1;
}

.haussonder-exhibition-gallery__close {
	font-size: 28px;
	right: 0;
	top: 0;
}

.haussonder-exhibition-gallery__previous,
.haussonder-exhibition-gallery__next {
	font-size: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.haussonder-exhibition-gallery__previous {
	left: 0;
}

.haussonder-exhibition-gallery__next {
	right: 0;
}

.haussonder-exhibition-gallery__close:focus,
.haussonder-exhibition-gallery__close:hover,
.haussonder-exhibition-gallery__previous:focus,
.haussonder-exhibition-gallery__previous:hover,
.haussonder-exhibition-gallery__next:focus,
.haussonder-exhibition-gallery__next:hover {
	background: #fff;
	color: #111;
}

body.haussonder-exhibition-gallery-open {
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	.haussonder-exhibition-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.haussonder-exhibition-gallery__overlay {
		padding: 12px;
	}

	.haussonder-exhibition-gallery__full-image {
		max-height: calc(100vh - 84px);
	}

	.haussonder-exhibition-gallery__caption {
		margin-left: 34px;
		margin-right: 34px;
	}

	.haussonder-exhibition-gallery__previous,
	.haussonder-exhibition-gallery__next {
		font-size: 20px;
		padding: 8px 10px;
	}
}
