/* Approved TRIGRAM mark on website product photographs. */
.product-image-brand {
  display: block;
  position: relative;
  width: 100%;
  min-width: 0;
  line-height: 0;
}
.product-image-brand > img { display: block; }
.product-image-brand::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 3%;
  left: 3%;
  width: clamp(28px, 16%, 56px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .94) url("./trigram-logo-motion-icon.svg") center / 92% no-repeat;
  border-radius: 6px;
  pointer-events: none;
}
.detail-photo .product-image-brand::after,
.image-dialog .product-image-brand::after { width: clamp(40px, 13%, 68px); }
.gallery-thumb .product-image-brand::after { width: 22px; top: 2px; left: 2px; border-radius: 3px; }
.detail-related .product-image-brand { margin-top: 0; }
.feature-story > .product-image-brand > img {
  display: block; width: 100%; height: auto; max-height: 560px;
  object-fit: contain; background: white; border-radius: 18px;
}
@media (max-width: 760px) {
  .detail-related .product-image-brand { grid-row: span 2; }
  .detail-related .product-image-brand::after { width: 24px; top: 2px; left: 2px; }
}

/* White-background catalog photos: neutralize near-white export pixels on display. */
.product-image-brand { background: #fff; }
.product-image-brand > img[src*="-white.png"] { filter: brightness(1.02); }
