.flex {
  display: flex;
  flex-wrap: wrap;
}

.col-2 {
  flex: 1;
  min-width: 300px;
  /*width: 100%;*/
  /*max-width: 40%;*/

  /*justify-content: space-between;*/
  /*align-content: space-between;*/
}

.col-4 {
  flex: 1;
  min-width: 200px;
}

.team-member {
  display: block;
  margin: 1em;
  height: 100%;
}

.team-member > img {
  /*width: 100%;*/
  /*height: 100%;*/
  /*max-width: 180px;*/
  /*max-height: 180px;*/
  width: 180px;
  height: 180px;
  object-fit: cover;
  /*border-radius: 50%;*/
}

.team-member-name {
  margin: 1em 0 .3em 0;
  font-size: 1.4em;
}

.team-member-job-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  color: #aaa;
}

.team-member-description {}

