.staff-prof-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 10rem 0;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.staff-img-con {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.image-card {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  background: #60b135;
  margin-right: 2rem;
}
.staff-img-con img {
  width: 100%;
  height: 100%;
  contain: content;
}

.staff-name {
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
}
.staff-post {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 25px;
  color: #898b92;
}
.staffs-under {
  background-color: var(--text-color);
  width: 150px;
  position: relative;
  height: 1.5px;
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 9px;
}
.staff-detail-con {
  flex: 2;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.staff-detail-con article {
  width: 80%;
  word-break: keep-all;
  line-height: 30px;
  color: #898b92;
}
@media (max-width: 1000px) {
  .staff-detail-con article {
    width: 95%;
  }
}
@media (max-width: 650px) {
  .staff-prof-container {
    display: inherit;
  }
  .staff-img-con {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .staff-name,
  .staff-post,
  .staff-detail-con article {
    text-align: center;
  }

  .staffs-under {
    background-color: var(--text-color);
    width: 150px;
    position: relative;
    height: 1.5px;
    display: block;
    margin: 2rem auto;
  }
}
