.people-list .listset-cards .list-item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .people-list .listset-cards .list-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.people-list .listset-cards .list-item:nth-of-type(even) {
  background-color: var(--bs-beige, #fff6da);
}
@media (max-width: 575.98px) {
  .people-list .listset-cards .list-item:nth-of-type(even) {
    position: relative;
  }
  .people-list .listset-cards .list-item:nth-of-type(even)::before {
    background-color: var(--bs-beige, #fff6da);
    box-sizing: border-box;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
  }
}
.people-list .listset-cards .list-item .card {
  background-color: transparent;
  margin-bottom: 0;
}