div {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--scale-300);
  padding: var(--scale-300);
  height: 72px;
  width: 100%;

  color: var(--color-text-body);

  font-family: var(--font-family-body);
  font-size: var(--typography-size-body-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-body-sm);
  letter-spacing: var(--font-letter-spacing-default);
  border-radius: var(--border-radius-xl);

  p {
    display: flex;
    flex-direction: column;
    span {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    //email
    span:nth-child(2) {
      font-weight: var(--font-weight-regular);
    }
  }

  //states
  &:hover {
    background-color: var(--color-surface-action-solid-hover-light);
  }

  &:focus,
  &[active] {
    background-color: var(--color-surface-action-solid);
    color: var(--color-text-action-on);
  }
}
