.PersonIndex {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  grid-gap: var(--spaces);
  gap: var(--spaces);
  width: 100%;
  padding: var(--spaces);
}
@media screen and (min-width: 1024px) {
  .PersonIndex {
    grid-template-columns: repeat(4, 1fr);
}
  }
.PersonIndex .Headline {
    grid-column: 1 / -1;
  }
.PersonIndex .Item {
    position: relative;
    overflow: hidden;
  }
.PersonIndex .Item::before {
      content: '';
      position: absolute;
      z-index: 1;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      height: 5rem;
      background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
    }
.PersonIndex .Item .content {
      position: absolute;
      z-index: 2;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: var(--spaces);
      color: var(--clr-white);
      transform: translateY(calc(100% - 3.5rem));
      transition: all 300ms ease-in-out;
    }
.PersonIndex .Item .content .Button {
        align-self: self-start;
        margin-top: auto;
      }
.PersonIndex .Item:hover .Picture {
        filter: blur(5px) grayscale(100%);
        transition: all 300ms ease-in-out;
      }
.PersonIndex .Item:hover .content {
        background-color: rgba(0, 0, 0, 0.6);
        transform: translateY(0);
      }
