.two-column {
  padding: 20px 10%;
  margin-bottom: 100px;
}
.single-column {
  width: 70%;
  margin: auto;
  max-width: 1200px;
  padding: 20px 0;
  margin-bottom: 100px;
}
.with-hero {
  margin-top: -130px;
  position: relative;
}
.with-hero h1.page-title {
  min-height: 130px;
  padding: 10px 20px 0;
}
.page-hero {
  width: 100%;
  height: 40vh;
  position: relative;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(236, 195, 178, 0.5) 0%,
    rgba(1, 66, 106, 0.5) 80%
  );
}

h1.page-title {
  color: #0067b9;
  background: #fff;

  width: fit-content;
  max-width: 800px;
  line-height: 1em;
  margin: 20px 0 50px;
  font-weight: 300;
}
.page-title hr {
  margin: 0;
  width: 40%;
  border: 3px solid #331e54;
  margin-top: 8px;
}

.page-content .intro-text p {
  font-size: 18px;
}

.name-card {
  margin: 10px 0;
}

.name-card a {
  display: flex;
  background-color: #d9e1e255;
  padding: 10px;
  border-radius: 5px;
}
.name-card a:hover {
  background-color: #d9e1e288;
  color: #000;
  text-decoration: none;
}
.name-card a .info {
  padding: 10px;
  align-self: center;
  width: calc(100% - 80px);
}
.name-card a .info .name {
  font-weight: 500;
  margin-bottom: 0;
  color: #331e54;
}
.name-card a .info .name span {
  font-weight: 200;
}
.name-card a .headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ecc3b2;
}
.name-card a .headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.name-card .bio {
  padding: 5px 5px 5px 100px;
  background-color: #d9e1e233;
}
.name-card .bio p {
  font-size: 14px;
}
