/* ========================================
   GALLERY VIEW PAGE STYLES
   ======================================== */

body.gallery-page {
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 100px 1fr 40px;
	grid-template-areas:
		"header"
		"content"
		"footer";
}

.content-wrapper {
	grid-area: content;
	display: flex;
	height: 100%;
	overflow: hidden;
}

.image-area {
	flex-shrink: 0;
	width: min(100vh, 75vw);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: #ecf0f1;
}

.image-container {
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-container img {
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.text-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 25%;
	background-color: white;
}

.text-area h2 {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 16pt;
	margin-bottom: 0.5em;
	padding: 1rem;
	background-color: #f8f9fa;
	border-bottom: 2px solid #e0e0e0;
}

.text-content {
	flex: 1;
	overflow-y: auto;
	padding: 1rem;
}

.text-content p {
	font-family: "Times New Roman", Serif;
	font-size: 12pt;
	margin-bottom: 0.5em;
}
