/* Homepage additions for editable funder logo list */

.funder-logo {
  gap: 14px;
  /* padding: 12px 16px; */
  flex-wrap: wrap;
  background: transparent;
}

.funder-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 2px;
  /* padding: 8px 10px; */
}

.funder-logo-item img {
  display: block;
  /* height: 85px; */
  width: 200px;
  /* max-width: 220px; */
}

@media (max-width: 600px) {
  .cards-row {
    grid-template-columns: 1fr;
  }

  .blue-section {
    padding: 32px 16px;
  }

  .funder-logo {
    flex-direction: column;
    align-items: center;
  }
}

