.gallery-column {
  min-width: 0;
}

.gallery-column > h2 {
  margin-bottom: 26px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 18px;
  align-items: start;
}

.gallery-item {
  min-width: 0;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border: var(--border);
  background: #fff;
}

.gallery-item figcaption {
  padding-top: 10px;
  line-height: 1.45;
}

.gallery-item strong,
.gallery-item span {
  display: block;
  font-weight: 400;
}

.gallery-item span {
  color: var(--mid);
  font-size: 12px;
}

@media (max-width: 920px) {
  .gallery-column {
    margin-top: 24px;
    padding-top: 24px;
    border-top: var(--border);
  }

  .gallery-column > h2 {
    padding: 0;
    text-align: left;
  }
}

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