.artists-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem 1.75rem;
	margin: 2rem 0 3rem;
}

.artists-gallery__card {
	min-width: 0;
}

.artists-gallery__photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 0.85rem;
	background: #eee;
}

.artists-gallery__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.artists-gallery__card h3,
.artists-gallery__card h4,
.artists-gallery__card h5,
.artists-gallery__card p {
	margin: 0 0 0.3em;
}

.artists-gallery__card h3 {
	font-size: 1.35rem;
	line-height: 1.25;
}

.artists-gallery__card h4 {
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.3;
}

.artists-gallery__card h5 {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.3;
	opacity: 0.75;
}

.artists-gallery__card p {
	margin-top: 0.55em;
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 921px) {
	.artists-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.25rem;
	}
}

@media (max-width: 544px) {
	.artists-gallery {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}
}
