/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.profile-teaser {
  margin-bottom: 1.5rem;
}
.profile-teaser__head {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto 1rem auto;
  position: relative;
  text-align: center;
  min-height: 8rem;
  min-width: 8rem;
}
.profile-teaser__head:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  content: "\e04e";
  font-size: 6rem;
  text-align: center;
  width: 8rem;
  height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(#05598C), to(#ADCF6E));
  background: -o-linear-gradient(left, #05598C, #ADCF6E);
  background: linear-gradient(90deg, #05598C, #ADCF6E);
  border-radius: 8rem;
}
.profile-teaser__head img {
  position: relative;
  vertical-align: bottom;
  z-index: 2;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(#05598C), to(#ADCF6E));
  background: -o-linear-gradient(left, #05598C, #ADCF6E);
  background: linear-gradient(90deg, #05598C, #ADCF6E);
  border-radius: 8rem;
  margin-left: auto;
  margin-right: auto;
}
.profile-teaser__head figcaption {
  text-align: center;
}
.profile-teaser__main {
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
}
.profile-teaser__institution {
  font-weight: bold;
}
.profile-teaser__contact {
  margin-top: 1rem;
}
.profile-teaser h3.is-h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.profile-teaser h3.is-h4 a {
  text-decoration: none;
}
@media (min-width: 480px) {
  .profile-teaser.fullsize {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .profile-teaser.fullsize .profile-teaser__head {
    margin: 0 1rem 0 0;
  }
  .profile-teaser.fullsize .profile-teaser__main {
    text-align: left;
    margin-right: 2rem;
  }
}
.profile-teaser.minified {
  margin-top: 0;
  margin-bottom: 0;
}