#artist-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-evenly;
}
#artist-grid-floating-accordion {
	display: block;
	background: #fff;
	color: #000;
	margin-bottom: 10px;
	position: relative;
	top: -10px;
	z-index: 10;
	width: 100%;
	/*max-height: 0;*/
	overflow: hidden;
	transition: all 0.3s;
}

#artist-grid .grid-cell {
	flex: 1 1 30%;
	position: relative;
	min-width: 250px;
	padding: 10px;
}
@media only screen and (min-width: 600px) {
	#artist-grid .grid-cell {
		flex-grow: 0;
	}
}
#artist-grid .grid-cell.active-artist {
	background: #fff;
	color: #000;
}
img.artist-grid__image {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.artist-grid__name,
.artist-grid__year {
	display: inline-block;
	font-weight: bold;
	font-size: 0.75em;
}
.artist-grid__excerpt,
.artist-grid__institutes,
.artist-grid__location {
	display: block;
	font-size: 0.7em;
	line-height: 1.4;
}

.artist-modal {
	display: none;
}
.artist-modal-content {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
}
.artist-modal-content .col_1 {
	flex: 1 1 40%;
	padding: 10px 20px 10px 10px;
	min-width: 250px;
}
.artist-modal-content .col_2 {
	flex: 1 1 50%;
	min-width: 250px;
	margin-top: 30px;
}
.artist-modal-content .col_3 {
	display: none;
}
.artist-grid-extended__website {
	display: block;
	margin: 15px auto;
}
.artist-grid-extended__website a,
.artist-grid-extended__website a:hover {
	color: #6043ff;
}
.artist-load-more-button-container {
	display: block;
	text-align: center;
	margin-top: 30px;
}
.artist-load-more-button-container a {
	color: #fff;
	text-decoration: none;
	font-size: 0.7em;
	font-weight: bold;
}
.artist-grid .grid-cell {
	cursor: pointer;
}
.grid-cell.active-artist .artist-grid__location,
.grid-cell.active-artist .artist-grid__excerpt {
	display: none;
}
.artist-grid-extended__name {
	font-weight: bold;
	display: inline;
}
.artist-grid-extended__location {
	margin: 3px 0 15px;
}
.artist-grid-extended__video iframe {
	margin-top: -0px;
}
/**************************/
.artist-grid-venice img.artist-grid__image {
	object-fit: contain !important;
}
