/* HOMEPAGE STYLES
************************************************************/

section	{
	border-bottom: 1px solid var(--color-row-border);
}

section.bannerImage	{
	min-height: 70vh;
}

.sectionTitle	{
	text-align: center;
}
.sectionTitle h2{
	font-size: 2em;
    padding-bottom: 20px;
    color: #666;
}
.exhibitTitle{
	color: #2ed626;
	color: var(--color-a);
	font-size: 1em;
}
section.heroStatement .container	{
	max-width: 52rem;
}

section.heroStatement	{	
	text-align: center;
}

section.heroStatement h2	{	
	margin-top: 1em;
	font-size: 2em;
	font-style: italic;
	font-family: var(--font-quote);
}

li.current_page_item	{
	display: none;
}

.exhibit{
	/* border: 1px solid; */
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
	/* width: 100%; */
	/* width: calc(50% - 20px); */
	margin: 10px;
	position: relative;
	padding: 0px;
}
@media (max-width: 1100px){
	.exhibit{
		width: 100%;
	}
}
@media (min-width: 1101px){
	.exhibit{
		width: calc(50% - 20px);
	}
}

.exhibit-image{
	position: relative;
}

.exhibit-image img{
	border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
	object-fit: cover;
}
@media (max-width: 768px){
	.exhibit-image img {
		height: 100%;
    	max-width: 130px;
		/* border-bottom-left-radius: 10px;
		border-top-left-radius: 10px; */
	}
}
@media (min-width: 769px){
	.exhibit-image img {
		height: 100%;
		max-width: 200px;
		/* border-bottom-left-radius: 10px;
		border-top-left-radius: 10px; */
	}
}

.exhibit-info{
	padding: 10px;
}
.dateText{
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7); /* Background color for the text overlay */
	color: white; /* Text color for the overlay */
	padding: 10px;
	font-weight: bold;
    font-size: 14px;
	border-top-left-radius: 10px;
}