.events h2 {
	text-align: center;
}
.event-boxes {
	margin-bottom: var(--default-spacing);
}
.event-boxes img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center center;
}
.event-boxes .box {
	margin-bottom: 0;
}
.event-boxes.images-bg .box {
	height: 260px;
	position: relative;
	background: #323232;
}
.box.has-link {
	position: relative;
}
.box.has-link a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 12;
	border: none;
}
.box.has-link a:hover {
	border: none;
}
.box.has-link a span {
	display: none;
}
.event-boxes.images-bg img {
	position: absolute;
	height: 100%;
	z-index: 0;
}
.event-boxes div.text {
	line-height: 1;
	margin: var(--default-spacing);
}
.event-boxes.images-bg .text {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 8;
}
.event-boxes.images-bg .box.has-image::after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: ' ';
	z-index: 4;
	display: block;
	background: rgba(0,0,0,0.2);
}
.event-boxes h3 {
	margin: 0;
	padding: 0;
	line-height: 1;
	width: 100%;
}
h4.subheading {
	text-transform: uppercase;
	font-weight: 200;
	font-size: 18px;
	margin: 0 0 6px 0;
}
div.event-boxes {
	display: grid;
	gap: var(--default-spacing);
	grid-template-columns: 1fr;
}
@media(min-width: 660px) {
	div.event-boxes {
		grid-template-columns: 1fr 1fr;
	}
}
@media(min-width: 1024px) {
	div.event-boxes {
		grid-template-columns: 1fr 1fr 1fr;
	}
}