/*
 * SHARED EXHIBITION STYLES
 * 
 * This file contains shared styling for exhibition information overlays and media containers.
 * Used by exhibitions that display information cards.
 * 
 * Note: Generic media container positioning is handled in src/styling/slides.css
 * This file adds exhibition-specific media styling that can be reused.
 */

/* Visit button styling */
.url {
	cursor: pointer;
}

/* Generic exhibition media container styling */
/* Use class .exhibit-media-low-opacity for reduced opacity media (e.g., opacity: 0.2) */
.exhibit-media-low-opacity .media-container video,
.exhibit-media-low-opacity .media-container img {
	opacity: 0.2;
}

/* Information overlay container */
.information {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-30%, -50%);
	width: 55%;
	min-width: 420px;
	height: 90%;
	z-index: 200;
	background-color: white;
	overflow: hidden;
	overflow-y: scroll;
}

/* Information overlay paragraph content */
.information p {
	text-transform: uppercase;
	font-size: 1rem;
	width: 50%;
	min-width: 200px;
	max-width: 270px;
	height: 90%;
	margin: 50px 0px 0px 40px;
	opacity: 0.5;
	line-height: 17px;
}

/* Mobile responsive styles */
@media only screen and (max-width: 700px) {
	.information {
		display: none;
		overflow: auto;
		left: 0;
		top: 10%;
		transform: translate(0%, 0%);
		width: 100%;
	}

	.information p {
		text-transform: uppercase;
		font-size: 1rem;
		width: 90%;
		margin: 50px 0px 0px 40px;
	}
}

