.exhibition-page {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 40px);
	max-width: 1200px;
	flex-direction: column;
}

.main-content {
    flex: 2;
    margin-right: 20px;
}

.back-to-exh {
	padding: 10px;
	margin-bottom: 20px;
	background-color: black;
	color: white;
	text-decoration: none;
	width: fit-content;
	border-radius: 8px;
}

#exhibition-description {
	font-family: system-ui;
	line-height: 1.5;
	white-space: break-spaces;
	text-align: justify;
}

.exhibition-images-container img {
	object-fit: contain !important;
	background-color: #e2e2e2;
}
.image-container-view-all {
    position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: black;
    color: white;
	padding: 10px 15px;
	border-radius: 8px;
	font-family: system-ui;
	font-weight: 400;
    cursor: pointer;
}
.image-container-view-all:hover {
    opacity: 0.7;
}

.exhibition-name {
	font-family: system-ui;
	font-weight: bold;
	text-transform: uppercase;
	width: 100%;
	text-align: left;
    margin-bottom: 0;
}

.exhibition-content-l-and-r {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 100px;
}
.exhibition-content-left {
	display: flex;
	flex-direction: column;
	width: 70%;
}
.exhibition-content-right {
	display: flex;
	flex-direction: column;
	width: 30%;
	margin-top: 65px;
	position: sticky;
	top: 20px;
}

#exhibition-details {
    font-family: system-ui;
	font-size: 15px;
	line-height: 16px;
	white-space: pre-line;
	padding: 10px;
	background-color: #d1d1d1;
	color: #000000;
	border-radius: 10px;
}

.fullscreen-viewer-img_preview img {
	object-fit: contain;
	background-color: #e1e1e1;
}

@media (max-width: 1500px) {



}


@media (max-width: 900px) {
	.fullscreen-viewer-img_preview .preview-title {
		font-size: 20px;
	}
    .exhibition-content-l-and-r {
        flex-direction: column;
    }

    .exhibition-content-left,
    .exhibition-content-right {
        width: 100%;
    }
    .exhibition-content-right {
        margin-top: 0;
    }
}