.zhen-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.zhen-gallery figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 156, 91, .28);
  border-radius: 18px;
  background: #111;
}

.zhen-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #111;
}

.zhen-gallery figcaption {
  padding: 10px 14px 14px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .zhen-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
