.member_logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.member_logo img {
  max-height: 100%; /* or your preferred max size */
  max-width: 150px;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .member_logo img {
    max-height: 60px;
  }
}