* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 24px 16px;
  background-color: #fff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1128px;
}

.gallery-item {
  width: calc((100% - 48px) / 3);
  min-width: 360px;
  transition: transform 0.3s ease;
  box-shadow: 0px 1px 6px rgba(46, 47, 66, 0.08),
    0px 1px 1px rgba(46, 47, 66, 0.16), 0px 2px 1px rgba(46, 47, 66, 0.08);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-link {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.modal img {
  max-width: 100%;
  height: auto;
  cursor: zoom-out;
}
