/* Praxis cover gallery: three supplied photographs composed as one editorial product view. */
.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 20px);
  height: clamp(620px, 68vw, 820px);
  margin: clamp(54px, 7vw, 92px) auto 0;
}

.product-gallery__frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #171510;
  box-shadow: 0 28px 68px -38px rgba(0, 0, 0, .92);
}

.product-gallery__frame--portrait {
  grid-row: 1 / span 2;
}

.product-gallery__frame picture,
.product-gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-gallery__frame img {
  object-fit: cover;
}

.product-gallery__frame--portrait img {
  object-position: 50% 44%;
}

.product-gallery__frame--detail img {
  object-position: 50% 49%;
}

.product-gallery__frame--desk img {
  object-position: 50% 50%;
}

.product-gallery__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244, 241, 234, .10), inset 0 -54px 70px -62px rgba(4, 5, 4, .56);
}

@media (max-width: 720px) {
  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    height: auto;
    margin-top: 48px;
  }

  .product-gallery__frame--portrait {
    grid-row: auto;
  }

  .product-gallery__frame--portrait img,
  .product-gallery__frame--detail img {
    aspect-ratio: 4 / 5;
  }

  .product-gallery__frame--portrait img {
    object-position: 50% 37%;
  }

  .product-gallery__frame--detail img {
    object-position: 50% 49%;
  }

  .product-gallery__frame--desk img {
    aspect-ratio: 3 / 2;
    object-position: 50% 50%;
  }
}
