.branch-gallery {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  gap: 12px;
}

.store-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #1c2d43;
  background: #080d15;
}

.store-photo:first-child {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.store-photo:nth-child(4),
.store-photo:nth-child(7) {
  grid-row: span 2;
}

.store-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #0876ff1f, transparent 42%, #03070d70);
}

.store-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.06);
  transition: filter .35s ease, transform .5s ease;
}

.store-photo:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.035);
}

@media (width <= 560px) {
  .branch-gallery {
    grid-auto-rows: 118px;
    gap: 8px;
  }

  .store-photo:first-child {
    grid-row: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-photo img {
    transition: none;
  }
}
