.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
  margin: 22px auto 36px;
  max-width: 920px;
  padding: 0 12px;
}

.legacy-gallery a {
  align-items: center;
  background: #f5f1e8;
  border: 1px solid #c9bda7;
  border-radius: 7px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .14);
  display: flex;
  justify-content: center;
  min-height: 130px;
  overflow: hidden;
  padding: 7px;
}

.legacy-gallery img {
  display: block;
  height: 145px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.gallery-heading {
  margin: 22px 12px 8px;
  text-align: center;
}

.gallery-subnav {
  font-size: 15px;
  line-height: 1.7;
  margin: 18px 12px 4px;
  text-align: center;
}

@media (max-width: 520px) {
  .legacy-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-gallery img { height: 120px; }
}
