.card {
  z-index: 1;
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: 160px;
  width: 320px;
  padding: 15px 30px 15px 55px;
  background-color: #fff;
  border: 2px solid rgba(130, 130, 130, 0.25);
}

.card .face {
  position: absolute;
  top: calc(50% - 35px);
  left: -35px;
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.card .face img {
  display: block;
  width: 100%;
}

.card .name {
  margin-bottom: 7.5px;
  font-family: 'interstateCond';
  font-weight: 400;
  font-size: 20px;
  color: #484848;
}

.card .job {
  position: relative;
  height: 50px;
  line-height: 18px;
  margin-bottom: 10px;
  font-family: 'interstateCond';
  font-weight: 300;
  font-size: 16px;
  color: #df5952;
}
.card .job::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  height: 1px;
  width: 100px;
  background-color: #e0e0e0;
}

.card a {
  display: block;
  margin: 5px auto;
  font-family: 'interstate';
  font-weight: 300;
  font-size: 12px;
  color: #484848;
}

.card a i {
  font-size: 12px;
  vertical-align: middle;
  margin-right: 5px;
  color: #df5952;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .card {
    position: relative;
    display: block;
    height: auto;
    min-height: 100px;
    width: auto;
    padding: 20px 25px;
    margin: 10px 0;
    border-left: none;
    border-right: none;
  }
  .card .face {
    position: inherit;
    top: inherit;
    left: inherit;
    float: left;
    height: 50px;
    width: 50px;
    margin: 5px 15px 5px 0;
  }
  .card .name {
    width: calc(100% - 40px);
    font-size: 18px;
    margin-bottom: 5px;
  }
  .card .job {
    position: inherit;
    height: auto;
    width: calc(100% - 40px);
    margin: 0;
    font-size: 12px;
  }
  .card .job::after {
    display: none;
  }
  .card a {
    position: absolute;
    right: 25px;
    height: 25px;
    width: 25px;
    margin: 0;
    padding: 4px 0 6px;
    border: 1px solid #a8a8a8;
    border-radius: 50%;
    font-size: 0;
    text-align: center;
  }
  .card a:first-of-type {
    top: 55px;
  }
  .card a:last-of-type {
    top: 20px;
  }

  .card a i {
    vertical-align: inherit;
    text-align: inherit;
    margin: 0;
    font-size: 15px;
    color: #a8a8a8;
  }
}
