.abc-gallery a {
  text-decoration: none !important;
}

.abc-gallery__group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
  margin-bottom: 1.5em;
}

.abc-gallery__group figure {
  margin: 0;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .abc-gallery__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .abc-gallery__group {
    grid-template-columns: 1fr;
  }
}
