.bio h2 {font-size:26px; color:black; margin-top:20px;}
.bio .title {margin-top:0; margin-bottom:10px;}
.bio a {color:black;}
.bio a i {color:black;}

.bio {
  text-align: center;
  margin-top: 2rem;
}

.team-grid {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.team-grid-wrap.wrap {
  padding: 0;
}

.team-grid__image-wrap {
  max-width: 213px;
  margin: 0 auto;
  display: block;
}

.team-grid__image {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  position: relative;
  border: 2px solid #DDDDDD;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.team-grid__image-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.team-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 2rem;
}

@media (min-width: 620px) {
  .bios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .bios {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}