.exhibitions .grouping
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
	margin-bottom: 30px;
}
#top .exhibitions h2
{
	text-transform: uppercase;
}
.exhibitions div.button.readmore
{
	border-top-left-radius: 0;
	/*+border-radius: 9px;*/
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	-khtml-border-radius: 9px;
	border-radius: 9px;
}
.single-exhibition #main h2.date
{
	text-align: center;
}
.single-exhibition #main h3.location
{
	text-align: center;
}
#top.single-exhibition h1.post-title.entry-title
{
	padding-bottom: 0;
}
.exhibitions .grouping.featured
{
	grid-template-columns: 1fr;
}
.exhibitions .featuredImage.outer
{
	height: 200px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}
.exhibitions .featured .featuredImage.outer
{
	height: 300px;
}
.exhibitions .featuredImage.outer.endingSoon:before
{
	content: "Ending soon!";
	background-color:var(--colorA);
	padding: 10px;
	color: white;
	display: inline-flex;
	font-size: 14px;
	bottom: 10px;
	position: absolute;
	left: 10px;
	transform: rotate(-10deg);
	z-index: 1000;
}
.exhibitions .featuredImage .inner
{
	height: 100%;
	width: 100%;
	position: absolute;
	background-position: center;
	background-size: cover;
	transition: all 500ms;
}
.exhibitions .featuredImage .inner:hover
{
	transform: scale(1.1);
}
.exhibitions .closing.date
{
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.exhibitions .button.readmore
{
	display: inline-grid;
	margin-top: 10px;
	padding: 6px 11px;
}
@media only screen and (max-width: 800px)
{
	.exhibitions .grouping
	{
		grid-template-columns: 1fr;
	}
}
