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

.company-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line, #d9e2ec);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(16, 42, 67, .08);
}

.company-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.company-gallery figcaption {
  padding: 12px 16px 14px;
  color: var(--ink, #102a43);
  font-weight: 700;
}

@media (max-width: 720px) {
  .company-gallery { grid-template-columns: 1fr; }
  .topbar .container span:last-child { display: flex; flex-wrap: wrap; gap: 4px 10px; }
}
