.app-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.app-gallery-card > a {
  display: block;
}

.app-gallery-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.9);
  margin-bottom: 12px;
}

.app-gallery-card h2 {
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .app-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
