/* Reserve the row height before images arrive; only the logo slot changes. */
#search-results .result-meta { flex-wrap: wrap; min-height: 44px; }
#search-results .result-brand-logo {
  display: none;
  flex: 0 0 104px;
  width: 104px;
  height: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
#search-results .result-brand-logo.has-logo { display: inline-flex; }
#search-results .result-brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 640px) {
  #search-results .result-brand-logo { flex-basis: 88px; width: 88px; height: 36px; }
}
