.livestock-product-artwork {
  box-sizing: border-box;
  width: 112px;
  max-width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  place-self: center;
}

.livestock-product-artwork img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-panel {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
}

.product-panel > div {
  min-width: 0;
}

.slaughter-yield-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.slaughter-product-artwork {
  width: 48px;
  padding: 5px;
}

@media (max-width: 720px) {
  .product-panel {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .product-panel > .livestock-product-artwork {
    width: 96px;
    padding: 9px;
  }
}
