.gallery {
  background: #070915;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0f20;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery figure:hover img {
  transform: scale(1.02);
}

.gallery figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.gallery figcaption span {
  font: 600 1.15rem var(--serif);
}

.gallery figcaption small {
  color: var(--muted);
  font-size: 0.75rem;
}

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

  .gallery figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
