/* line 7, blocks/basic_content/style.scss */
.basic-content h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2em;
  color: #4d6e5a;
}

@media screen and (min-width: 48em) {
  /* line 7, blocks/basic_content/style.scss */
  .basic-content h3 {
    text-align: left;
  }
}

/* line 17, blocks/basic_content/style.scss */
.basic-content ul {
  list-style-type: disc;
  margin: 0 0 0 20px;
}
/* line 7, blocks/bios/style.scss */
.bios .subheading {
  font-family: "lato", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 20px;
  color: #4d6e5a;
  margin: 0 0 30px;
  font-weight: 400;
}

@media screen and (min-width: 60em) {
  /* line 7, blocks/bios/style.scss */
  .bios .subheading {
    margin: 0 0 50px;
  }
}

@media screen and (max-width: 48em) {
  /* line 17, blocks/bios/style.scss */
  .bios .wrap {
    padding: 0;
  }
}

/* line 22, blocks/bios/style.scss */
.bios h2 {
  text-align: center;
}

@media screen and (min-width: 48em) {
  /* line 22, blocks/bios/style.scss */
  .bios h2 {
    text-align: left;
  }
}

/* line 29, blocks/bios/style.scss */
.bios ul {
  list-style-type: disc;
  margin: 0 0 0 20px;
}

/* line 33, blocks/bios/style.scss */
.bios .bios-list {
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 40px;
}

@media screen and (min-width: 60em) {
  /* line 33, blocks/bios/style.scss */
  .bios .bios-list {
    grid-template-columns: 50% 50%;
  }
}

/* line 41, blocks/bios/style.scss */
.bios .bios-list .bio {
  display: grid;
  margin-bottom: 10px;
  margin: 0 20px 10px;
  position: relative;
}

/* line 46, blocks/bios/style.scss */
.bios .bios-list .bio img {
  margin: 0 auto 20px auto;
  display: block;
  width: 100%;
  object-fit: cover;
  height: 300px;
  object-position: center;
}

@media screen and (min-width: 48em) {
  /* line 46, blocks/bios/style.scss */
  .bios .bios-list .bio img {
    margin: 0 auto;
  }
}

/* line 57, blocks/bios/style.scss */
.bios .bios-list .bio .content {
  text-align: center;
  padding-top: 20px;
}

@media screen and (min-width: 48em) {
  /* line 57, blocks/bios/style.scss */
  .bios .bios-list .bio .content {
    text-align: left;
  }
}

/* line 63, blocks/bios/style.scss */
.bios .bios-list .bio .content h2 {
  font-family: "nunito-sans", sans-serif;
  color: #4d6e5a;
  font-size: 20px;
  font-weight: 600;
}

/* line 69, blocks/bios/style.scss */
.bios .bios-list .bio .content h3 {
  font-family: "nunito-sans", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 16px;
}

/* line 75, blocks/bios/style.scss */
.bios .bios-list .bio .content p, .bios .bios-list .bio .content .bio-button {
  display: none;
}

/* line 80, blocks/bios/style.scss */
.bios .bios-list.small {
  grid-template-columns: 100%;
  width: 100%;
}

@media screen and (min-width: 600px) {
  /* line 80, blocks/bios/style.scss */
  .bios .bios-list.small {
    justify-content: space-evenly;
    grid-template-columns: repeat(2, 190px);
    grid-column-gap: 40px;
  }
}

@media screen and (min-width: 60em) {
  /* line 80, blocks/bios/style.scss */
  .bios .bios-list.small {
    justify-content: space-between;
    grid-template-columns: repeat(3, 241px);
  }
}

/* line 94, blocks/bios/style.scss */
.bios .bios-list.small .bio img {
  max-height: 200px;
  max-width: 150px;
  padding: 0 10px;
}

/* line 99, blocks/bios/style.scss */
.bios .bios-list.small .bio .content {
  text-align: center;
  margin: 0 auto;
}

/* line 103, blocks/bios/style.scss */
.bios .bios-list.small .bio .content h2 {
  text-align: center;
  font-family: "lato", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 18px;
  color: #4d6e5a;
}

/* line 110, blocks/bios/style.scss */
.bios .bios-list.small .bio .content h3 {
  color: #404040;
  font-family: "lato", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 2;
}

/* line 119, blocks/bios/style.scss */
.bios .bios-list.small .modal {
  opacity: 0;
  z-index: -10;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.2);
  align-items: center;
}

/* line 132, blocks/bios/style.scss */
.bios .bios-list.small .modal .inner {
  position: relative;
  z-index: 1;
  background: white;
  max-width: 400px;
  padding: 50px;
  max-height: 70%;
  overflow: scroll;
}

/* line 140, blocks/bios/style.scss */
.bios .bios-list.small .modal .inner .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* line 152, blocks/bios/style.scss */
.bios .bios-full {
  min-height: 500px;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 30px;
  grid-column-gap: 0px;
}

@media screen and (min-width: 60em) {
  /* line 152, blocks/bios/style.scss */
  .bios .bios-full {
    grid-template-columns: 50% 50%;
    grid-row-gap: 0px;
  }
}

@media screen and (min-width: 76.25em) {
  /* line 152, blocks/bios/style.scss */
  .bios .bios-full {
    grid-template-columns: 580px auto;
  }
}

/* line 165, blocks/bios/style.scss */
.bios .bios-full img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 300px;
}

@media screen and (min-width: 48em) {
  /* line 165, blocks/bios/style.scss */
  .bios .bios-full img {
    height: 400px;
  }
}

@media screen and (min-width: 60em) {
  /* line 165, blocks/bios/style.scss */
  .bios .bios-full img {
    height: 580px;
  }
}

/* line 178, blocks/bios/style.scss */
.bios .bios-full .content {
  text-align: center;
}

@media screen and (min-width: 48em) {
  /* line 178, blocks/bios/style.scss */
  .bios .bios-full .content {
    text-align: left;
  }
}

@media screen and (min-width: 60em) {
  /* line 178, blocks/bios/style.scss */
  .bios .bios-full .content {
    padding-left: 30px;
  }
}

/* line 186, blocks/bios/style.scss */
.bios .bios-full .content .button {
  display: inline-block;
  margin: 20px 0 0 0;
}

/* line 190, blocks/bios/style.scss */
.bios .bios-full .content h2 {
  font-family: "nunito-sans", sans-serif;
  color: #4d6e5a;
  font-size: 20px;
  font-weight: 600;
}

/* line 196, blocks/bios/style.scss */
.bios .bios-full .content h3 {
  font-family: "nunito-sans", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 16px;
}
