/******************
  COLABS SECTION 
*******************/

.collaborators-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.collabs-header {
  padding-right: 15%;
  padding-top: 2rem;
}

.team-page .colabs-header {
  margin: auto;
}

.collaborators-wrapper .button-tertiary {
  align-self: start;
}

.collaborators-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  row-gap: 2rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 1021px) {
  .collaborators-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media (max-width: 1021px) {
  .collaborators-wrapper .button-tertiary {
    align-self: center;
    margin-bottom: 1rem;
  }
}

@media (max-width: 460px) {
  .collaborators-logos-grid {
    grid-template-columns: 1fr;
  }
}
