/* Keep list photos inside their grid column regardless of the text height. */
#nx-catalog .nx-list-view .nx-card {
  grid-template-columns: 290px minmax(0, 1fr);
}
#nx-catalog .nx-list-view .nx-card-photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: auto;
}
#nx-catalog .nx-list-view .nx-card-photo img {
  position: absolute;
  inset: 0;
  display: block;
}
#nx-catalog .nx-list-view .nx-card-body {
  min-width: 0;
}
@media (max-width: 600px) {
  #nx-catalog .nx-list-view .nx-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
