.teamMemberCard {
  text-align: center;
  margin-bottom: 30px;
  color: #666666;
}

.teamMemberCard a {
  color: #666666;
}

.teamMemberCard .team-image {
  position: relative;
  width: 80%;
}

.team-image:after {
  content: "";
  display: block;
  width: 10%;
  padding-bottom: 100%;
  margin-bottom: 15px;
}

.teamMemberCard .team-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0px solid transparent;
  object-fit: cover;
  transform: translateX(-40%);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  transition: all ease 0.4s;
}

.teamMemberCard .team-image img:hover {
  opacity: 0.8;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border-radius: 15%;
}

.teamMemberCard .team-image img:active {
  opacity: 0.6;
  border-radius: 10%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5) inset;
}

.teamMemberCard .team-name {
  line-height: 1.85;
  font-size: 24px;
  line-height: 2.0em;
  color: #666666;
}

.teamMemberCard .social-links a {
  width: 40px;
  height: 40px;
  margin: 4px;
  border-radius: 50%;
  border: 3px solid #69acc7;
  border-color: #69acc7;
  border-color: var(--darkColor);
  text-align: center;
  color: #69acc7;
  color: var(--darkColor);
  display: inline-block;
  padding-top: 8px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background: white;
  border: none;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  transition: transform .4s ease;
}

.teamMemberCard .social-links a:hover {
  background: #69acc7;
  background: var(--darkColor);
  border-color: #69acc7;
  border-color: var(--darkColor);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  color: white;
}

.teamMemberCard .social-links a:active {
  background: #69acc7;
  background: var(--darkColor);
  border-color: #69acc7;
  border-color: var(--darkColor);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5) inset;
  color: white;
}

.teamMemberCard a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-image: linear-gradient(var(--darkColor), var(--darkColor));
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
  text-align: center;
}

.teamMemberCard a:hover,
.teamMemberCard a:focus {
  background-size: 100% 2px;
}
