.wp-block-events {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	max-width: 64rem;
	margin: 0 auto;
}

.wp-block-events.alignfull { max-width: none; }

.wp-block-events article.event {
	display: block;
	position: relative;
	width: calc(50% - 0.5em);
	margin: 0 0 2em;
}

.wp-block-events.has-arrows article.event { padding: 0 0 3em; }

.wp-block-events article.event a { display: block; color: inherit; }

.wp-block-events article.event .image {
	display: block;
	margin: 0 0 1em;
	overflow: hidden;
	position: relative;
}

.wp-block-events article.event .image::before {
	content: "";
	display: block;
	padding: 100% 0 0 0;
}

.wp-block-events article.event .image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.2s;
}

.wp-block-events article.event:hover .image img { transform: scale(1.1); }

.wp-block-events article.event h2 {
	font-size: 1em;
	font-weight: bold;
	margin: 0 0 0.5em;
}

.wp-block-events article.event .event-date {
	display: block;
	font-size: 0.8em;
}

.wp-block-events .dummy { display: none; }

.wp-block-events article.event a.read-more {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-indent: 10em;
	overflow: hidden;
	border-radius: 50%;
	border: 0.15em solid currentcolor;
	color: inherit;
	white-space: nowrap;
}

.wp-block-events article.event:hover a.read-more { color: #26A2BA; }

.wp-block-events.has-arrows article.event a.read-more { display: block; }

.wp-block-events article.event a.read-more::before {
	content: "\2192";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.85em;
	height: 1.85em;
	line-height: 1.85em;
	font-family: "meadow-arts-icons";
	font-weight: normal;
	text-indent: 0;
	text-align: center;
}

@media (max-width: 959px) {
	.wp-block-events.columns-4 .dummy:nth-child(2n) { display: flex; width: calc(50% - 0.5em); }
	.wp-block-events.columns-4 .dummy:nth-last-child(1) { display: none; }
}

@media (min-width: 768px) {
	.wp-block-events.columns-3 article.event { width: calc(33% - 1em); }
	.wp-block-events.columns-3 .dummy:nth-child(3n) { display: block; width: calc(33% - 2em); }
}

@media (min-width: 960px) {
	.wp-block-events article.event { width: calc(25% - 2em); }

	.wp-block-events.columns-4 .dummy:nth-child(4n) { display: block; width: calc(25% - 2em); }
	.wp-block-events.columns-4 .dummy:nth-child(4n-1) { display: block; width: calc(25% - 2em); }

	.wp-block-events.columns-3 article.event { width: calc(33% - 2em); }
}

.wp-block-event-intro {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: stretch;
	width: 100%;
	border: 1px solid #C1C1C1;
	margin: 0 auto 4em;
	max-width: 64rem;
}

.wp-block-event-intro .text {
	padding: 3em 1em 1em;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
	width: 50%;
	flex-grow: 0;
	flex-shrink: 0;
}

.wp-block-event-intro .text .event-title { margin: 0.25em 0; }

.wp-block-event-intro .text .event-category {
	display: block;
	position: absolute;
	top: 1em;
	left: 1em;
	max-width: calc(100% - 2em);
}

.wp-block-event-intro .text .event-date time { display: inline-block; white-space: nowrap; }

.wp-block-event-intro .image {
	display: block;
	overflow: hidden;
	position: relative;
	width: 50%;
}

.wp-block-event-intro .image::before {
	content: "";
	display: block;
	padding: 100% 0 0;
}

.wp-block-event-intro .image img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.wp-block[data-align="full"] .wp-block-event-intro { max-width: none; margin-left: 1em; margin-right: 1em; }
.wp-block-event-intro.alignfull { max-width: none; margin-left: 0; margin-right: 0; }

@media (min-width: 768px) {
	.wp-block-event-intro .text {
		width: 45%;
		padding: 4em 2em 2em;
	}

	.wp-block-event-intro .text .event-category { top: 2em; left: 2em; }

	.wp-block-event-intro .image { width: 55%; }
}

@media (min-width: 960px) {
	.wp-block-event-intro { margin-bottom: 6em; }
	.wp-block-event-intro .text { width: 40%; padding: 4em; }
	.wp-block-event-intro .text .event-category { top: 4rem; left: 4rem; font-size: 1.4em; }
	.wp-block-event-intro .text .event-date { font-size: 1.4em; }

	.wp-block-event-intro .image { width: 60%; }
	.wp-block-event-intro .image::before { padding: 75% 0 0; }
}

@media (min-width: 1280px) {
	.wp-block-event-intro .image::before { padding: 60% 0 0; }
}

.wp-block-event-location {
	margin: 1em 0 0;
	position: relative;
	padding: 0 0 0 3em;
	line-height: 1.5em;
	font-size: 0.9em;
}

.wp-block-event-location::before {
	content: "\e905";
	display: block;
	position: absolute;
	top: -0.25em;
	left: 0;
	font-size: 2.5em;
	line-height: 1em;
	font-family: "meadow-arts-icons";
	font-weight: normal;
}

.wp-block-event-location a { text-decoration: underline; font-weight: normal; }

.wp-block-event-date {
	margin: 1em 0 3em;
	position: relative;
	padding: 0 0 0 3em;
	line-height: 1.5em;
	font-size: 0.9em;
}

.wp-block-event-date::before {
	content: "\e906";
	display: block;
	position: absolute;
	top: -0.25em;
	left: 0;
	font-size: 2.5em;
	line-height: 1em;
	font-family: "meadow-arts-icons";
	font-weight: normal;
}

.ticket-information { font-size: 0.9em; }

.ticket-information a {
	display: table;
	margin: 3em 0;
	position: relative;
	padding: 0 0 0 3em;
	line-height: 1.5em;
	font-weight: normal;
}

.ticket-information a:hover { text-decoration: underline; }

.ticket-information a::before {
	content: "\e907";
	display: block;
	position: absolute;
	top: -0.25em;
	left: 0;
	font-size: 2.5em;
	line-height: 1em;
	font-family: "meadow-arts-icons";
	font-weight: normal;
}

.ticket-information a::after { display: none; }

.wp-block-events-filter { max-width: none; cursor: default; }
.wp-block-events-filter ul { max-width: none; margin: 2em 0; font-size: 0.8em; }
.wp-block-events-filter ul::before { content: "Filter by"; display: inline-block; margin: 0 2em 0 0; }
.wp-block-events-filter ul li { list-style: none; display: inline-block; padding: 0; margin: 0 1em 1em 0; }
.wp-block-events-filter ul li::before { display: none; }
.wp-block-events-filter ul li a { display: block; padding: 0.5em 1em; border: 1px solid #26A2BA; color: inherit; }
.wp-block-events-filter ul li a:hover { background: #DAEFF3; }
.wp-block-events-filter ul li.current a { background: #26A2BA; color: white; }