.barMatRealGallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.barMatGalleryThumb {
  flex: 0 0 96px;
  width: 96px;
  height: 76px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 211, 255, 0.48);
  border-radius: 0;
  background: #061523;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.barMatGalleryThumb:hover,
.barMatGalleryThumb:focus-visible {
  border-color: #b3ff2c;
  box-shadow: 0 0 0 2px rgba(179, 255, 44, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.barMatGalleryThumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .barMatRealGallery {
    gap: 0.5rem;
  }

  .barMatGalleryThumb {
    flex-basis: 78px;
    width: 78px;
    height: 62px;
  }
}
