.about-gallery {
  background-color: var(--color-white);
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.about-gallery__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-gallery__image {
  flex-shrink: 0;
}

.about-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media screen and (max-width: 960px) {
  .about-gallery {
    padding: 40px 0;
  }
  .about-gallery__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .about-gallery__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
