.shop-gallery-section {
  padding: 0 0 100px;
}

.shop-gallery-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
  padding-top: 4px;
}

.shop-gallery-head h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.shop-gallery-head > p {
  color: #aec4c4;
  margin: 0 0 5px;
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 10px;
}

.shop-gallery-grid button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #0d3032;
  cursor: zoom-in;
}

.shop-gallery-grid button:first-child,
.shop-gallery-grid button:nth-child(6) {
  grid-column: span 2;
}

.shop-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.shop-gallery-grid button:hover img,
.shop-gallery-grid button:focus-visible img {
  transform: scale(1.035);
  filter: brightness(.82);
}

.shop-gallery-grid span {
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 16px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: left;
  text-shadow: 0 1px 8px #000;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .shop-gallery-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .shop-gallery-section {
    padding-bottom: 70px;
  }

  .shop-gallery-grid {
    grid-auto-rows: 170px;
  }

  .shop-gallery-grid button:first-child,
  .shop-gallery-grid button:nth-child(6) {
    grid-column: span 2;
  }
}
