#audiences {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 4em;
}

#audiences > div {
  width: 25%;
  margin-right: 2em;
}

#audiences div:last-child {
  margin-right: 0;
}

#audiences > div h4 {
  height: 3em;
}

#audiences > div img {
  width: 6em;
}

#attribution {
  display: block;
  background-color: var(--the-green);
  color: white;
  font-weight: bold;
  margin-right: 0;
  margin-left: 0;
  max-width: unset;
}

@media (max-width: 1080px) {
  #audiences {
    display: flex;
    flex-flow: row wrap;
  }

  #audiences .audience-head {
    display: flex;
    align-items: center;
  }

  #audiences > div {
    width: 100%;
    margin-bottom: 2em;
    margin-right: 0;
  }

  #audiences > div img {
    width: 4em;
    height: fit-content;
    max-height: 4em;
  }

  #audiences > div h4 {
    height: unset;
    margin-left: 1em;
  }
}
