.authors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px -10px 20px;
}
.authors > h2 {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto 20px;
  text-align: center;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: bold;
}
.authors > h2:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  max-width: 900px;
  border-top: 1px solid var(--grey);
  transform: translateX(-50%);
}
.authors > h2 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 30px;
  background: var(--light-grey);
}
.authors .author {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 calc(25% - 20px);
  flex: 1 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
  margin: 0 10px 20px;
}
.author {
  background: #fff;
}
.author__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 110px;
  padding: 10px 20px 10px 120px;
  background: var(--baby-blue);
}
.author__info--no-photo {
  padding: 10px 20px;
}
.author__info:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--dark-grey);
}
.author__info figure {
  position: absolute;
  top: 10px;
  left: 20px;
}
.author__info img {
  width: 90px;
  height: 90px;
  padding: 4px;
  border: 1px solid #000;
  border-radius: 50%;
}
.author__name {
  margin: 0 0 5px;
  font-weight: bold;
}
.author__subtitle {
  font-size: 1rem;
  line-height: 1.2rem;
  letter-spacing: 1.6px;
  font-weight: bold;
  color: var(--blue);
}
.author__social {
  margin: 0 20px;
  padding: 10px 0;
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.author__social li {
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
}
.author__social a {
  display: block;
}
.author__social svg {
  display: block;
  width: 36px;
  height: 36px;
  padding: 8px;
}
.author__social svg:hover {
  fill: var(--blue);
}
.author__description {
  margin: 0 20px;
  padding: 20px 0;
  border-top: 1px solid var(--grey);
  font-size: 1.3rem;
  line-height: 1.8rem;
}

@media screen and (max-width: 1024px) {
  .authors .author {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 20px);
            flex: 1 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .authors {
    display: block;
  }
  .authors .author {
    max-width: none;
  }
}