/* Motherlode A–Z directory pages only */

.a2z-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: start;
}

.a2z-grid img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 736px) {
	.a2z-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}
.a2z-grid article header {
	text-align: center;
}