.home-shop-preview {
  align-items: center;
  background:
    radial-gradient(circle at 4% 6%, rgba(242, 41, 120, 0.12), transparent 31%),
    #fbf7f5;
  display: grid;
  gap: clamp(42px, 6vw, 86px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  padding: clamp(76px, 9vw, 132px) clamp(24px, 6vw, 96px);
}

.home-shop-copy {
  max-width: 560px;
}

.home-shop-copy h2 {
  color: #111013;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 18px 0 26px;
}

.home-shop-copy > p:not(.eyebrow) {
  color: #6c6267;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  margin: 0 0 34px;
}

.home-shop-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  min-height: min(670px, 66vw);
}

.home-shop-photo {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.home-shop-photo-main {
  grid-row: 1 / span 2;
}

.home-shop-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.home-shop-photo-main img {
  object-position: center 20%;
}

.home-shop-photo:hover img {
  transform: scale(1.02);
}

.home-shop-photo figcaption {
  background: rgba(17, 16, 19, 0.82);
  bottom: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.12em;
  padding: 13px 16px;
  position: absolute;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .home-shop-preview {
    grid-template-columns: 1fr;
  }

  .home-shop-copy {
    max-width: 680px;
  }

  .home-shop-gallery {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .home-shop-preview {
    gap: 36px;
    padding: 68px 20px;
  }

  .home-shop-gallery {
    display: flex;
    min-height: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .home-shop-photo,
  .home-shop-photo-main {
    aspect-ratio: 4 / 5;
    flex: 0 0 86%;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .home-shop-copy h2 {
    font-size: 48px;
  }
}
