*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 24px;
  padding: 24px 156px;
  list-style: none;
  width: 1440px;
}

.gallery-item {
  width: 360px;
  height: 200px;
  overflow: hidden;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
  cursor: zoom-in;
}

.gallery-image:hover {
  transform: scale(1.04);
}

.basicLightbox {
  background: rgba(46, 47, 66, 0.8);
}

.basicLightbox__placeholder img {
  width: 1112px;
  height: 640px;
  object-fit: cover;
  display: block; 
}