#events {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}
a.event {
	width: 100%;
	max-width: 340px;
	min-height: 540px;
	--img-height: 68.5%;
	margin: 15px;
}
a.event > img {
	width: 100%;
	height: var(--img-height);
}
a.event > .event-caption {
	width: 100%;
	height: calc(100% - var(--img-height));
	padding-top: 10px;
}
a.event .event-title {
	font-weight: bold;
	padding-bottom: 10px;
	font-size: 14px;
	color: #000000;
}
a.event .event-excerpt {
	font-size: 12px;
	color: #454545;
	line-height: 20px;
}