/* Basic utility colors */
@font-face {
  font-family: "cursive";
  src: url("../fonts/brannboll.otf") format("opentype");
}
@font-face {
  font-family: "raleway-regular";
  src: url("../fonts/raleway-regular.ttf") format("truetype");
}
@font-face {
  font-family: "raleway-bold";
  src: url("../fonts/raleway-bold.ttf") format("truetype");
}
.bio-card {
  width: 100%;
  text-align: left;
}
.bio-card .bio-image {
  width: 100%;
  display: block;
}
.bio-card .bio-content {
  margin-top: 1rem;
}
.bio-card .bio-content div {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.bio-card .bio-content div > a {
  height: 2rem;
  width: 2rem;
  text-align: center;
  line-height: 2rem;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease-in-out;
}
.bio-card .bio-content div > a:hover {
  opacity: 1;
}
.bio-card .bio-content div > a:first-child {
  background-color: #6492a6;
}
.bio-card .bio-content div > a:last-child {
  background-color: #3e7993;
}
.bio-card .bio-content div > a:last-child span {
  font-size: 0.8rem;
}
.bio-card .bio-content p {
  margin-top: 1rem;
}

.section {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #264b5a;
}
.section:first-child, .section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.section.cathy-and-robin {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .section.cathy-and-robin {
    flex-direction: column;
  }
}
.section.cathy-and-robin img, .section.cathy-and-robin div {
  flex: 1;
}
.section.cathy-and-robin div {
  padding-left: 1.5rem;
  text-align: left;
}
.section.cathy-and-robin div h3 {
  font-family: "raleway-bold";
  font-size: 2rem;
  line-height: 1em;
  color: #264b5a;
}
.section.cathy-and-robin div p {
  margin-top: 1.5rem;
}
.section.leadership > img {
  width: 40%;
  margin: 0 auto 2.8rem;
}

.section-title {
  margin-bottom: 4rem;
}
.section-title h2 {
  font-family: "raleway-bold";
  font-size: 3rem;
  line-height: 1em;
  color: #264b5a;
}
.section-title p {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.headshot-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.headshot-gallery .bio-card {
  max-width: calc(33% - 0.99rem);
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 600px) {
  .section.cathy-and-robin img, .section.cathy-and-robin div {
    flex: none;
  }
  .section.cathy-and-robin > div {
    margin-top: 1.5rem;
    padding-left: 0;
  }
  .section.leadership > img {
    width: 70%;
  }
  .headshot-gallery .bio-card {
    max-width: calc(50% - 0.75rem);
    margin-bottom: 1.5rem;
  }
}