.team-3-col__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 2rem;
}

.team-3-col h3 {
  margin: 50px 0 15px;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--blue);
}

.team-3-col p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text);
}

.team-3-col img {
  max-width: 300px;
}

.team-3-col .img--circle {
  display: flex;
  justify-content: center;
}

@media (max-width:900px){
    .team-3-col__content {
        grid-template-columns: 1fr;
    }
}