#gallery-section {
	padding-top: 90px;
	padding-bottom: 40px;
}

#gallery-blurb {
	margin-bottom: 24px;
	color: var(--text-color);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gallery-item {
	display: flex;
	flex-direction: column;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
}

.gallery-caption {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--text-color);
	text-align: center;
}

@media (max-width: 576px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

#section-1 {
	padding: 50px 0 50px 0;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
