.art-exhibitions--wrapper {
	background: #F5F5F5;
	padding: 3rem 0;
}
.art-exhibitions {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.art-exhibitions-header {
	max-width: 700px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	flex: 1 1 100%;
}
.art-exhibitions--item {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
}
.art-exhibitions--item img {
	margin-bottom: 0.75rem;
	width: 100%;
	max-width: 350px;
}
.art-exhibitions--item span {
	line-height: 1.4;
	font-size: 14px;
}
.art-exhibitions--item .art-exhibitions--title {
	font-weight: 600;
}
.art-exhibitions-header h2 {
	margin: 0;
}
.art-exhibitions-header > div p:last-of-type {
	margin: 0;
}
.art-exhibitions-header a.button {
	max-width: max-content;
}
.art-exhibitions-listings {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem 1rem;
	flex: 1 1 100%;
}
@media screen and (min-width: 650px) {
	.art-exhibitions-listings {
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.art-exhibitions--item {
		flex: 1 1 calc(50% - 0.5rem);
	}
}
@media screen and (min-width: 800px) {
	.art-exhibitions-listings {
		flex-direction: row;
		flex-wrap: nowrap;
	}
	.art-exhibitions--item {
		flex: 1 1 calc(25% - 0.5rem);
	}
}