.nbf-block-people-grid {
  margin-block-start: 24px !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 0;  

}

@media (max-width: 767px) {
  .nbf-block-people-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.nbf-block-people-grid {
  > * { /* grid children */
    min-width: 0;
    box-sizing: border-box;
  }  
  @media (max-width: 1000px) {
    & {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }   
  }

  @media (max-width: 786px) {
    & {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }   
  }  
}

.people-group-title {
  grid-column: span 3;
}