@media only screen and (max-width: 1099px) {
  #posts-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 699px) {
  #posts-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  #posts-content {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}

.term-description {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1100px) {
  .term-description {
    margin-bottom: 4.0625rem;
  }
}

.term-block {
  margin-bottom: 80px;
}
@media only screen and (min-width: 1100px) {
  .term-block {
    margin-bottom: 9.6875rem;
  }
}
@media only screen and (min-width: 1700px) {
  .term-block {
    margin-bottom: 100;
  }
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  position: relative;
}
@media only screen and (max-width: 1099px) {
  .team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 699px) {
  .team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-wrapper .team-member .team-member-photo {
  margin-bottom: 15px;
}
.team-wrapper .team-member .team-member-photo .img-container img {
  display: block;
  width: 100%;
}
.team-wrapper .team-member .team-member-details .team-member-name {
  font-weight: 500;
}
.team-wrapper .team-member .team-member-details p {
  margin: 0;
}
.team-wrapper .team-member .team-member-details .person-info {
  font-size: 14px;
  line-height: 24px;
  line-height: 1.2 !important;
}
@media only screen and (min-width: 1100px) {
  .team-wrapper .team-member .team-member-details .person-info {
    font-size: 19px;
    line-height: 32px;
  }
}