* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

.gallery {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 360px);
  gap: 24px;

  padding-block: 24px;

  .gallery-link {
    display: block;
    height: 200px;
    overflow: hidden;
    transition: 150ms ease-in;
    transition-property: transform;

    &:hover,
    &:focus {
      transform: scale(1.04);
    }
  }
}
.basicLightbox {
  backdrop-filter: blur(4px);
  background: rgba(46, 47, 66, 0.8);
}
