/* Responsive hiking gallery layout for three, two, or one images per row */
#hiking_images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
#hiking_images figure {
  flex: 1 1 30%;
  max-width: 32%;
  box-sizing: border-box;
}
#hiking_images figure img {
  width: 100%;
  height: auto;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #hiking_images figure {
    flex: 1 1 45%;
    max-width: 48%;
  }
}
@media (max-width: 600px) {
  #hiking_images figure {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
