/* ======= TEAM ======= */
.team-header, .team-header_ar {
  display:inline-block;
  flex-basis:100%;
  margin:20px 0 0 0;
  padding:3px 5px;
  color: #9ca3af;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-align:left;
  backdrop-filter:blur(5px);
}
.team-header_ar {text-align:right;}

.teamDiv {
  position:relative;
  display: flex;
  padding-top:30px;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
  max-width:80%;
  margin:0 auto;
}

person {
  position:relative;
  width:160px;
  text-align:center;
}
person img {
  position:relative;
  display:inline-block;
  width:150px;
  height:150px;
  border-radius:50%;
  border:1px #000 solid;
  background-color:rgb(192,195,212);
  box-shadow: 0 0 3px rgba(255, 255, 255, 1), 
      0 0 10px rgba(0, 0, 170, 0.7), 
      0 0 20px rgba(0, 0, 170, 0.5), 
      0 0 30px rgba(0, 0, 170, 0.3); 
  z-index:-1;
}
person .name {
  width:100%;
  margin-top:5px;
}
person .jobTitle {
  width:100%;
  font-style:italic;
  font-size:80%;
}
person .credentials {
  width:100%;
  font-size:60%;
  color:rgba(0,0,0,0.5);
  font-style:italic;
}
person .btnMore {
  width:100%;
  text-align:right;
  color:rgba(0,0,0,0.7);
  font-size:80%;
  border-bottom:1px solid rgba(0,0,0,0.2);
  cursor:pointer;
}
.team-bio {
  position:absolute;
  display:none;
  width:calc(100vw * 0.6);
  margin:0;
  padding:10px 20px;
  color:#fff;
  border:2px solid rgba(0,0,0,0.6);
  border-radius:10px;
  background-color:rgba(0,0,0,1);
  text-align:left;
  z-index:999;
}
#team-bio-callout {
  position:absolute;
  display:none;
  font-size:30px;
}
.team-bio.t_expand, #team-bio-callout.t_expand {
  display:block;
}

@media (max-width: 880px) {
  .teamDiv {max-width:100%;}
  .team-header {padding-left:10px;backdrop-filter:blur(10px);}
  .team-header_ar {padding-right:10px;backdrop-filter:blur(10px);}
  person {
    width:150px;
    max-width:100%;
    justify-content:space-around;
    font-size:90%;
  }
  person img {width:130px;height:130px;}
  person .credentials {font-size:55%;}
  .team-bio {width:98%;}
  #b_scrollDiv {height:calc(100vh - 150px);}
}