/* The previous patch fixed the owner thumbnail area at 420px/360px,
   which made the window too tall when only a few owner rows were shown.
   This lets it shrink to the content, while still scrolling if it gets long. */
.card .altthumbs-wrap.altthumbs-wrap--owners{
  height:auto !important;
  min-height:0 !important;
  max-height:min(420px, 70dvh) !important;
}

@media (max-width:780px){
  .card .altthumbs-wrap.altthumbs-wrap--owners{
    height:auto !important;
    min-height:0 !important;
    max-height:min(360px, 60dvh) !important;
  }
}
