:root {
  --researchers-list-word-p: #707070;
}
body.dark-theme {
  --researchers-list-word-p: #aaa;
}
.researchers-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -16px -58px;
}
.researchers-list .item-box {
  padding: 0 16px 58px;
  width: 25%;
}
@media screen and (max-width: 1200px) {
  .researchers-list .item-box {
    width: 33.33%;
  }
}
@media screen and (max-width: 992px) {
  .researchers-list .item-box {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .researchers-list .item-box {
    width: 100%;
  }
}
.researchers-list .item-box .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.researchers-list .item-box .item .pic {
  background-color: #DBDBDB;
  width: 100%;
  position: relative;
}
.researchers-list .item-box .item .pic::after {
  content: '';
  padding-top: 100%;
  display: block;
}
.researchers-list .item-box .item .pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.researchers-list .item-box .item h5 {
  margin-top: 32px;
  color: var(--module-con-text-color2);
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.researchers-list .item-box .item p {
  margin-top: 15px;
  font-size: 16px;
  color: var(--module-con-text-color1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.researchers-list .item-box .item .links-btn {
  margin-top: 20px;
  justify-self: flex-end;
}
.pagination-box {
  margin-top: 90px;
}
@media screen and (max-width: 992px) {
  .pagination-box {
    margin-top: 50px;
  }
}
