.single-person-card {
  transition: transform 0.3s;
  margin-bottom: 30px;
  width: 100%;
  min-height: fit-content;
}

.single-person-card:hover {
  transform: translateY(-3px);
}

.single-person-card:hover:before {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-clip: content-box;
}

.single-person-card .person-link {
  height: 100%;
  display: block;
}

.single-person-card .img-container {
  position: relative;
  height: 315px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: left;
  transition: transform 0.3s;
}

.single-person-card:hover .img-container {
  transform: scale(1.05) translateY(-2%);
}


.single-person-card .img-container img {
  height: 315px;
  z-index: 2;
  position: relative;
  border-radius: 300px;
}

.single-person-card .img-container span {
  z-index: 1;
}

.single-person-card .img-container span:after {
  position: absolute;
  content: '';
  width: 277px;
  height: 277px;
  left: 0;
  bottom: 0;
  border-radius: 100%;
  background: #D9E6EB;
  z-index: 1;
  transition: background 0.5s;
}

.single-person-card:hover .img-container span:after {
  background: #90B6C1;
}

.single-person-card .img-container .main-category {
  position: absolute;
  max-width: 300px;
  top: 20px;
  left: -10px;
  text-transform: uppercase;
  background-color: #7EAAB5;
  padding: 4px 20px;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

.single-person-card .img-container .main-category:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #436C51;
  left: 0;
  bottom: -15px;
  z-index: 4;
  border-left: 10px solid transparent;
  border-top: 15px solid #436C51;
  background-clip: content-box;
}

.single-person-card .post-content-wrapper {
  padding: 20px 30px;
}

.post-meta {
  display: inline-flex;
}

.post-meta .post-type {
  background-color: #EFEEEA;
  margin-left: 20px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 21px;
  position: relative;
}

.post-meta .post-type:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #5994A1;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.single-person-card .locations {
  display: flex;
}

.single-person-card .locations p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 0;
  color: #3B3B31;
}

.single-person-card  h5.post-title {
  hyphens: manual;
}

.single-person-card .job-positions {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.single-person-card .job-positions .job-position {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #005233;
  margin-right: 15px;
  margin-bottom: 5px;
  position: relative;
}

.single-person-card .job-positions .job-position.has-dot:after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #5994A1;
    position: absolute;
    right: -9px;
    top: 52%;
    transform: translateY(-50%);
}

.single-person-card .btn-arrow {
  margin-top: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: -15px;
  transition: background-position-x 0.3s;
  width: 57px;
  height: 24px;
}

.single-person-card:hover .btn-arrow {
  background-position-x: unset;
}

.event-location {
  display: flex;
}

.event-location .dashicons-location {
  font-size: 24px;
  margin-right: 5px;
}