#profileList .text-center {
  background: #F3F6F8;
  width: auto;
  margin: auto;
  display: table;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  text-align: center;
}
#profileList .featured {
  padding: 2rem 0;
  background-color: #F3F6F8;
  border-bottom: 1px solid #A8A8A8;
}

#profileList .person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  padding: 4rem 0 2rem 0;
  min-height:250px;
  
}
#profileList .person:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
#profileList .person .person__textarea {
  width: 100%;
}
#profileList .person .person__img {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px double #72AF6D;
}
#profileList .person .person__img img {
    height:100%;
}
#profileList .person .person__name {
  font-size: 2.25rem;
}
#profileList .person .person__name a {
    color:#222;
    text-decoration:none;
}
#profileList .person .person__name a:hover,
#profileList .person .person__name a:focus,
#profileList .person .person__name a:active {text-decoration:underline;}
#profileList .person .person__role {
  border-bottom: 2px solid #72AF6D;
  padding-bottom: .25rem;
  margin-bottom: .5rem;
  font-size:1.75rem;
}
#profileList .person .person__quote blockquote {
  border: none;
  padding: 0;
  margin:0;
  font-size: 1.25rem;
  color: #666;
}
#profileList .person .person__quote blockquote p {
    margin:0 auto 15px auto;
}

#profileList .person .person__year {
  font-style: italic;
}
#profileList .person .person__bio {
  margin-top: 1rem;
}

#profileList .person__clearfix {
    transition:all .3s ease;
}
#profileList .person__clearfix:hover {
    background:rgba(255,255,255,.5);
    box-shadow: 0px 10px 6px -6px rgba(0,0,0,.15);
}
#profileList .person__clearfix:hover .person__img {
    box-shadow: 0px 10px 6px -6px rgba(0,0,0,.15);
}

/* Make columns stack properly */
#profileList .person__clearfix:nth-of-type(even) {
    clear: both;
}

/*
 * FEATURED PERSON
 */
#profileList .person.person-featured {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 700px;
  border: none;
}
#profileList .person.person-featured .person__img {
  margin: 0 auto 1rem auto;
  width: 210px;
  height: 210px;
}
#profileList .person.person-featured .person__quote {
  display: block;
  position: relative;
  margin: auto;
  line-height: 1.4;
  color: #777;
}
#profileList .person.person-featured .person__quote p {
    font-size: 2.5em;
}
#profileList .person.person-featured .person__name {
  color: #72AF6D;
  font-size:2.75rem;
}
#profileList .person.person-featured .person__name a {
  color: #72AF6D;
  text-decoration: underline;
}
#profileList .person.person-featured .person__name a:hover,
#profileList .person.person-featured .person__name a:focus,
#profileList .person.person-featured .person__name a:active {text-decoration:none;}
#profileList .person.person-featured .person__title {
  font-size: 1.5rem;
  font-style: italic;
}
#profileList .person.person-featured .person__role {
    font-style:italic;
    border:none;
    }
#profileList .person.person-featured blockquote {
  border: none;
}
#profileList .person.person-featured cite {
  display: block;
  margin-top: 1em;
}
#profileList .person.person-featured .person__img:hover {box-shadow: 0px 10px 6px -6px rgba(0,0,0,.15);}


@media (max-width: 768px) {
  #profileList .person {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 1px solid #E0E0E0;
  }
  #profileList .person .person__thumb,
  #profileList .person .person__name,
  #profileList .person .person__quote,
  #profileList .person .person__bio {
    margin: 0 auto;
    text-align: center;
  }
  #profileList .person .person__role {
      text-align:center;
  }
}
@media (min-width: 768px) {
  
  #profileList .person {border-bottom:1px solid #e0e0e0;}

  #profileList .person .person__thumb {
    padding-right: 15px;
  }
}