/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/* =======================================
=         List people component          =
======================================= */
@layer sdc {
  .list-people {
    position: relative;
    padding-bottom: 3rem;
    padding-block: var(--component-inner-space);
  }
  .list-people:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: calc(100vw - var(--scrollbar-width));
    height: 100%;
    content: "";
    transform: translateX(-50%);
    background-color: var(--color-grey-1);
  }
  .list-people__intro,
  .list-people__title {
    margin-bottom: 1.8rem;
  }
  .list-people__layout {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    padding-bottom: 2rem;
  }
  @media (width >= 56.3125em) {
    .list-people__layout {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding-bottom: 3rem;
      column-gap: 2rem;
    }
  }
  @media (min-width: 64em) {
    .list-people__layout {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
