.module-people{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
}

.module-people__person{
  margin:auto;
  padding:2rem 0;
}

.module-people__mugshot-container{
  background-color: #fff;
  border: 3px solid rgba(240,129,29,1);
  border-radius: 50%;
  padding:0.25rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: center;
  overflow:hidden;
  width:250px;
  height:250px;
  margin:auto;
  margin-bottom:1rem;
}

.module-people__mugshot-img{
  visibility: hidden;
}

.module-people__mugshot{ 
  border: 3px solid rgba(120,0,60,1);
  border-radius: 50%;
  margin:auto;
  background-position:top center;
  background-repeat:no-repeat;
  background-size:cover;
  width:100%;
  height:100%;
 
 
}

.module-people__name{
  font-weight:700;
  font-size:2rem;
  text-align: center;
}

.module-people__position{
  font-size:1.25rem;
  font-weight:400;
  letter-spacing:1px;
  text-align: center;  
}

.module-people__pn{
  font-size:1.1rem;
  font-weight:400;
  font-style: italic;
  text-align: center;
}

.module-people__editor{
  max-width:800px;
  margin:1rem auto;
  padding-bottom:0.5rem;
  text-align: justify;
}

.module-people__divider{ 
	width:100px;
	height:5px;
	margin: 1rem auto;
	background-color: rgba(120,0,60,0.8);
}