.wp-block-projects-filter {
	cursor: default;
	margin: 2em auto;
}

.wp-block-projects-filter a {
	display: inline-block;
	margin: 0 0 1em 1em;
	border: 1px solid #00A387;
	padding: 0.25em 0.5em;
}

.wp-block-projects-filter a:hover {
	color: #00A387;
}

.wp-block-projects-filter a.current { background: #00A387; color: white; }

@media (min-width: 768px) {
	.wp-block-projects-filter {
		padding: 0 2.5em;
	}
}

@media (min-width: 960px) {
	.wp-block-projects-filter {
		padding: 0 4.25em;
	}
}

@media (min-width: 1680px) {
	.wp-block-projects-filter {
		padding: 0 5.5em;
	}
}

.wp-block-projects { max-width: 64rem; margin: 2em auto; }
.wp-block-projects.alignfull { max-width: none; }

.wp-block-projects .articles {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

.wp-block-projects .articles article {
	margin: 0 0 4em;
	width: 100%;
}

.wp-block-projects .articles article .image { position: relative; overflow: hidden; height: auto; }
.wp-block-projects .articles article .image::before { content: ""; display: block; padding: 100% 0 0; }
.wp-block-projects .articles article .image img { position: absolute; top: 0; left: 0; }

.wp-block-projects .articles article .text { padding: 1em 0; }
.wp-block-projects .articles article h2 { margin: 0; }
.wp-block-projects .articles article .excerpt { display: none; }

@media (min-width: 768px) {
	.wp-block-projects .articles { justify-content: flex-start; margin: 0 -0.5em; }
	.wp-block-projects.alignfull .articles { padding: 0 2.5em; }
	.wp-block-projects .articles article { width: calc(33.33% - 1em); margin: 0 0.5em 1em; }
	.wp-block-projects.columns-3 .articles article { width: calc(33.33% - 1em); }
	.wp-block-projects .articles article .image { width: 100%; height: auto; }
	.wp-block-projects .articles article .text { width: 100%; }
}

@media (min-width: 960px) {
	.wp-block-projects.alignfull .articles { padding: 0 4.25em; margin: 0 -1em; }
	.wp-block-projects.columns-3 .articles article { width: calc(33.33% - 2em); margin: 0 1em 2em; }
	.wp-block-projects .articles article .text { padding: 1em 0; }
}

@media (min-width: 1280px) {
	.wp-block-projects.alignfull .articles { padding: 0 5em; margin: 6em -2em 0; }
	.wp-block-projects.columns-3 .articles article { width: calc(33.33% - 4em - 1px); margin: 0 2em 2em; }
}

@media (min-width: 1680px) {
	.wp-block-projects.alignfull .articles { padding: 0 5.5em; }
}

.artist-tabs {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
}

.artist-tabs .tabs {
	display: block;
	margin: 2em 0;
}

.artist-tabs .tabs a {
	display: inline-block;
	margin: 0 2em 0 0;
	padding: 0.5em 0;
	border-bottom: 0.2em solid transparent;
}

.artist-tabs .tabs a.active {
	border-bottom-color: #26A2BA;
}

.artist-tabs .tab {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s;
}

.artist-tabs .tab.active {
	grid-template-rows: 1fr;
}

.artist-tabs .tab .tab-inner {
	overflow: hidden;
}

.partner-logos {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-top: 2em;
	margin-bottom: 2em;
}

.partner-logos img {
	display: inline-block;
	width: 6em;
	height: 6em;
	object-fit: contain;
	object-position: center center;
	mix-blend-mode: multiply;
	margin: 0.5em;
}

@media (min-width: 960px) {
	.partner-logos img {
		width: 10em;
		height: 10em;
		margin: 1em;
	}
}

.related-grid {
	margin-left: auto;
	margin-right: auto;
}

.related-grid a.related-post {
	display: block;
	position: relative;
	color: inherit;
}

.related-grid a.related-post .image {
	display: block;
	padding: 100% 0 0 0;
	position: relative;
	margin: 0 0 1em;
}

.related-grid a.related-post .image img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

.related-grid a.related-post .post-title {
	font-size: 1.2em;
}

.related-grid a.related-post .post-type {
	display: block;
	position: absolute;
	top: 2em;
	left: 2em;
	background: white;
	border: 1px solid black;
	padding: 0.5em 1em;
	min-width: 7em;
	text-align: center;
	font-size: 0.75em;
}

@media (min-width: 768px) {
	.related-grid {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
		margin-left: -1em;
		margin-right: -1em;
	}

	.related-grid a.related-post {
		margin: 1em;
		width: calc(33.33% - 2em);
	}
}

@media (min-width: 960px) {
	.related-grid {
		margin-left: -2em;
		margin-right: -2em;
	}

	.related-grid a.related-post {
		margin: 2em;
		width: calc(33.33% - 4em);
	}
}