/*
.tree-of-life {
  list-style: none;
  padding-left: 0;
}
.tree-of-life li + li {
  margin-top: var(--spacing);
}
.tree-of-life__toggle {

}

.tree-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-3);
  color: var(--text-accent);
  border-bottom: 1px solid var(--border-primary);
}

.tree-item a {
  display: contents;
}

.tree-item a:visited {
  color: var(--text-accent) !important;
}

.tree-item * {
  margin-bottom: -1px;
}

.tree-item--current {
  font-style: italic;
  color: var(--text-primary);
  border-bottom-width: 2px;

  .tree-item__title {
    border-bottom: none;
  }
}

.tree-item__title {
  border-bottom: 2px solid var(--text-accent);
}
.tree-item__rank {
  color: var(--text-secondary);
}

*/