/* Match the About hero height to the homepage hero on every screen size. */
@media (min-width: 801px) {
  .about-hero {
    height: calc(100vh - 62px);
    height: calc(100dvh - 62px);
    min-height: 0;
  }

  .about-hero .wrap { height: 100%; min-height: 0; }
}

@media (max-width: 800px) {
  .about-hero {
    height: calc(100vh - 45px);
    height: calc(100dvh - 45px);
    min-height: 0;
  }

  .about-hero .wrap { height: 100%; min-height: 0; }
}

.about-profile .about-portrait {
  background-image: url("../images/frank-gedeon-boxer-west-palm-beach.jpg");
  background-position: center;
}
