/* Balanced sizing for the first two product images. */
.product-hero {
  min-height: 680px;
  padding: clamp(40px, 6vw, 90px) var(--side);
  grid-template-columns: 5fr 6fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.product-copy {
  min-height: 540px;
  padding: 0;
}

.hero-image {
  width: min(100%, 620px);
  min-height: 0;
  max-height: 720px;
  justify-self: center;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(24, 32, 23, 0.14);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
}

.board-image {
  width: min(880px, 82vw);
}

.board-image img {
  box-shadow: 0 18px 45px rgba(24, 32, 23, 0.1);
}

@media (max-width: 700px) {
  .product-hero {
    min-height: auto;
    padding: 42px var(--side) 64px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-copy {
    min-height: 470px;
    padding: 0;
  }

  .hero-image {
    width: min(86vw, 440px);
    max-height: none;
    aspect-ratio: auto;
  }

  .hero-image img {
    max-height: none;
  }

  .board-image {
    width: 100%;
  }
}
