.people_fellows_title {
  font-size: 36px;
  font-weight: 700;
  color: #532C6D;
  padding-bottom: 50px;
}

.people_grid_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-right: 50px;
  padding-left: 50px;
}

.people_parent_container {
  text-decoration: none !important;
  outline: none !important;
  width: 31%;
}

.people_image_container {
  margin-bottom: 20px;
}

.people_image0,
.people_image1 {
  position: relative;
  max-width: 80%;
  margin: auto;
}

.people_image0 img,
.people_image1 img {
  border-radius: 130px;
  height: 230px;
  object-fit: cover;
}

.people_image0::before {
  content: "";
  position: absolute;
  width: 127%;
  height: 125%;
  background-image: url(../images/people_image_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: -32px;
  left: -28px;
  z-index: -1;
}

.people_image1::before {
  content: "";
  position: absolute;
  width: 127%;
  height: 125%;
  background-image: url(../images/people_image_bg_v2.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: -32px;
  left: -28px;
  z-index: -1;
}

.people_content_container {
  text-align: center;
  padding-bottom: 30px;
  color: #072448;
}

.people_content_title {
  font-weight: 700;
  font-size: 18px;
}

.people_designation {
  font-size: 16px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.3s ease-in-out;
}


.people_parent_container:hover {
  .people_designation {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 991px) {
  .people_designation {
    opacity: 1;
    transform: translateY(0);
  }
}



.people_pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.people_pagination a,
.people_pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  font-size: 16px;
}

.people_pagination .current,
.people_pagination a:hover {
  color: white;
  background-color: #532C6D;
}



@media screen and (max-width: 767px) {
  .people_parent_container {
    width: 100%;
  }

  .people_image0, .people_image1 {
    max-width: 100%;
  }

  .people_image0 img,
  .people_image1 img {
    height: 250px;
  }

  .people_image0::before,
  .people_image1::before {
    width: 123%;
    height: 123%;
    top: -35px;
    left: -26px;
  }

  .people_fellows_title{
    font-size: 24px;
  }
}


@media screen and (min-width: 801px) and (max-width: 991px) {
  .people_parent_container {
    width: 64%;
  }

  .people_image0 img,
  .people_image1 img {
    height: 256px;
  }

  .people_image0::before,
  .people_image1::before{
    left: -32px;
  }
}



@media screen and (min-width: 768px) and (max-width: 800px) {
  .people_parent_container {
    width: 64%;
  }

  .people_image0 img,
  .people_image1 img {
    height: 235px;
  }

  .people_image0::before,
  .people_image1::before{
    left: -32px;
  }
}