.team-list-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 43px;
	grid-row-gap: 90px;
}
.team-list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.team-list-img {
  width: 200px;
  position: relative;
  display: inline-flex;
  height: 200px;
}
.team-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-list-item-hover-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.team-list-item-hover-text p{
  color: #fff;
  margin: 0;
}
.team-list-item-hover-text img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-list-detail {
  margin-top: 24px;
  width: 100%;
}
.team-list-detail h3 {
  font-size: 19px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.team-list-detail h3 a{
  color: #ffffff;
  transition: all 0.5s;
}
.team-list-detail p {
  font-size: 19px;
  color: #ffffff;
  margin: 7px 0 0;
  line-height: 1.4em;
}
.team-list-item:hover .team-list-detail h3 a{
  color: #EF822B;
}
.team-list-item:hover .team-list-item-hover-text{
  opacity: 1;
  visibility: visible;
}
.council-shortcode .team-list-detail h3 a {
    color: #000000;
    transition: all 0.5s;
}
.council-shortcode .team-list-detail p {
    color: #000000;
}
@media (max-width:1366px){
  .team-list-block{grid-gap: 30px;}
}
@media (max-width:1024px){
  .team-list-block{grid-template-columns: 1fr 1fr 1fr;}
}
@media (max-width:767px){
  .team-list-block{grid-template-columns: 1fr 1fr;}
}
@media (max-width:575px){
  .team-list-block{grid-template-columns: 1fr;}
}