.title {
  font-size: 32px;
  color: #161F41;
}

p,
a {
  font-size: 16px !important;
}

img {
  width: 100%;
}

/* Specific adjustment for first and fifth team images that need a little downward shift so the top is fully visible */
.team-img-adjust {
  /* Constrain height while keeping cover crop; shift focus upward */
  height: clamp(380px, 55vh, 600px) !important; /* responsive but capped */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 18%;
     object-position: 50% 18%; /* 18% from top gives more forehead space */
  max-height: none;
}

.container {
  max-width: 100%;
}

.history p {
  margin-top: 24px;
}
.history hr {
  width: 200px;
  color: #FFBE3F;
  outline: none;
  margin-top: 24px;
}

.employment {
  margin-top: 50px;
}
.employment .container {
  background-color: #161F41;
  padding: 76px 70px 75px 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
  color: #ffffff;
}
.employment .container h1 {
  font-size: 32px;
  max-width: 700px;
}
.employment .container p {
  font-size: 18px;
  max-width: 650px;
}
.employment .container a {
  text-decoration: none;
  padding: 15px 35px;
  color: #161F41;
  background-color: #FFBE3F;
}

.team .container {
  display: grid;
  gap: 24px;
}
.team .container hr {
  width: 200px;
  color: #FFBE3F;
  outline: none;
  margin-top: 24px;
}
.team .container .col-left img {
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensure the top of the image remains visible (prevents head clipping) */
  -o-object-position: top center;
     object-position: top center;
  /* Allow natural height while keeping a sensible max height for layout */
  max-height: 50vh;
  height: auto;
}
.team .container .team-member-row {
  background-color: whitesmoke;
}
.team .container .team-member-row .bio {
  padding: 24px;
}
.team .container .team-member-row .bio p {
  line-height: 1.5;
}
.team .container .blue {
  background-color: #161F41;
  color: white;
}

@media screen and (min-width: 750px) {
  .team .container .col-left {
    width: 50%;
    height: 750px;
  }
  .team .container .col-left img {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
  }
  .team .container .team-member-row {
    padding: 24px;
    display: flex;
    align-items: center;
    background-color: transparent;
    justify-content: space-between;
  }
  .team .container .team-member-row .bio {
    width: 50%;
    height: 100%;
    background-color: whitesmoke;
  }
  .team .container .blue {
    background-color: transparent;
  }
  .team .container .blue .bio {
    background-color: #161F41;
  }
  .team .container .reversed {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1080px) {
  .title {
    font-size: 50px;
  }
  .history .history-text {
    -moz-columns: 2;
         columns: 2;
    vertical-align: top;
  }
  .team .container {
    gap: 24px;
    padding-block-start: 50px;
  }
  .team .container .team-member-row {
    display: flex;
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    padding: 0;
  }
  .team .container .team-member-row .col-left {
    height: -moz-fit-content;
    height: fit-content;
  }
  .team .container .team-member-row .col-left img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  .team .container .team-member-row .bio {
    position: absolute;
    width: 60%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .team .container .team-member-row .position-right {
    right: 0;
  }
  .team .container .team-member-row .position-right p {
    line-height: 1.5;
  }
  .team .container .team-member-row .position-left {
    left: 0;
  }
  .team .container .team-member-row .position-left p {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1250px) {
  .container {
    padding: 0;
  }
}
@media screen and (max-width: 810px) {
  section {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 540px) {
  section {
    padding-inline: 25px;
  }
}/*# sourceMappingURL=about.css.map */