/* ========================================================================
   Section: Teams
 ========================================================================== */

/* variation b */

.spw-team {
  padding: 50px 16px 25px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.spw-team__avatar {
  background-size: cover;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #eee;
}

.spw-team__name {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.spw-team__role {
  font-size: 16px;
  line-height: 22px;
  color: #A1A1B0;
  letter-spacing: -0.1px;
  margin: 0
}

.spw-team__bio {}

.spw-team-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.spw-team__icon {
  padding: 0 8px;
}

@media (min-width: 960px) {
  .spw-team__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }
}

/* Please refer to themes/theme.override.css, more styling in happening there */