.staff-picker-col {
  text-align:center;
}

.section-intro__divider {
 margin-bottom: 1em;  
}

.section-intro__divider div {
    display: inline-block;
    vertical-align: top;
    width: 80px;
    max-width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #0094c5;
}

.image-container img {
    width: 100px;
    height: 100px;
    border-radius: 999px; 
}

{% import "../_variables.css" as var %}

/* Base */

.team-card {
  width: 100%;
  margin-bottom: 24px;
  padding: 30px 30px 40px;
  border-radius: 32px;
  text-align: center;
  transition: .2s ease-in-out;
  position: relative;
}

.splide .team-card {
  margin-bottom: 0;
}

.splide .team-card--shadow {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* With link */

.team-card--with-link:not(.splide .team-card):hover {
  transform: scale(1.02);
}

/* Link */

.team-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

/* Image */

.team-card__img {
  width: 152px;
  height: 152px;
  border-radius: 999px;
}

/* Text */

.team-card__img + .team-card__txt {
  margin-top: 15px;
}

/* Icons */

.team-card__icons {
  margin-top: 15px;
}

.team-card__icons a {
  display: inline-block;
  transition: .2s ease-in-out;
  position: relative;
  z-index: 1;
}

.team-card__icons a:hover {
  position: relative;
  transform: scale(1.2);
  z-index: 2;
}

/* Icon */

.team-card__icon {
  box-shadow: 0px 8px 16px rgb(0 0 0 / 5%), 0px 4px 8px rgb(0 0 0 / 5%);
}

/* Link */

.team-card__link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

/* Shadow */

.team-card--shadow {
  box-shadow: 0px 16px 32px rgb(0 0 0 / 5%), 0px 8px 16px rgb(0 0 0 / 5%);
}

.team-card--shadow.team-card--with-link:not(.splide .team-card):hover {
  box-shadow: 0px 16px 32px rgb(0 0 0 / 5%), 0px 8px 16px rgb(0 0 0 / 5%);
}

/* Color */

.team-card--white {
  background: #fff;
}

