.investment__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.investment__item {
  background-color: black;
  color: white;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.investment__item_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}



.investment__item_logo img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 90%;
  filter: grayscale(100) invert(100);
}

.investment__item a,
.investment__item .nolink {
  color: white !important;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60% 40%;
  height: 100%;
  text-decoration: none;
}

.investment__item h4 {
  text-decoration: none;
  margin: 0;
}

.investment__item_description {
  font-size: 0.9rem;
}