body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff;
  padding: 40px;
}

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

.gallery-item {
  width: 360px;
  height: 200px;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
}

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

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease,
    height 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.gallery-image:hover {
  transform: scale(1.044);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
