/* GALLERY */
section#gallery h3 {
  text-align: left;
}

div#gallery-images {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
}

div#gallery-images > img {
	width: 100%;              /* image fills its grid cell */
  border-radius: 8px;       /* optional rounded corners */
  transition: transform 0.3s ease;
}
