[data-module="people-list"] {
  padding: 50px 0 70px;
}
[data-module="people-list"] h1 {
  text-align: center;
}
[data-module="people-list"] .people-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto;
}
[data-module="people-list"] .people-cards .person-card {
  width: 400px;
  box-sizing: border-box;
  margin-bottom: 60px;
  display: grid;
  justify-content: start;
  grid-row-gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
[data-module="people-list"] .people-cards .person-card img {
  display: block;
  height: 240px;
  cursor: pointer;
}
[data-module="people-list"] .people-cards .person-card h2 {
  font-weight: 700;
}
[data-module="people-list"] .people-cards .person-card h3 {
  font-style: italic;
}
[data-module="people-list"] .people-cards .person-card .button-link {
  background-color: #005b82;
  border: 1px solid #005b82;
  transition: all 0.25s ease-in-out;
  color: #FFF;
  position: absolute;
  bottom: 0;
}
[data-module="people-list"] .people-cards .person-card .button-link:hover {
  color: #005b82;
  background: #FFF;
}
[data-module="people-list"] .popup-container {
  background: rgba(51, 51, 51, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
}
[data-module="people-list"] .popup-container.show {
  display: block;
}
[data-module="people-list"] .popup-container .popup {
  background: white;
  border-radius: 10px;
  padding: 25px;
  width: 95vw;
  max-width: 1050px;
  margin: 30vh auto 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 730px) {
  [data-module="people-list"] .popup-container .popup {
    flex-direction: column;
    margin: 20vh auto 0;
  }
}
[data-module="people-list"] .popup-container .popup-image img {
  width: 350px;
  margin-right: 35px;
  max-width: fit-content;
}
[data-module="people-list"] .popup-container .popup-content {
  max-height: 30vh;
  overflow-y: auto;
}
@media screen and (max-width: 730px) {
  [data-module="people-list"] .popup-container .popup-content {
    max-height: 25vh;
    margin-top: 15px;
  }
}
[data-module="people-list"] .popup-container .popup .close {
  position: absolute;
  top: 3px;
  right: 6px;
  font-size: 30px;
  line-height: 70%;
  cursor: pointer;
  color: black;
}
[data-module="people-list"] .popup-container .popup h2 {
  font-weight: 700;
}
[data-module="people-list"] .popup-container .popup h3 {
  font-style: italic;
}
/*# sourceMappingURL=styles.css.map */