.text-loop { display: inline-grid; color: var(--or); }
.text-loop__item {
  grid-area: 1 / 1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.text-loop__item.is-active { opacity: 1; transform: none; }
.text-loop__item.is-leaving { opacity: 0; transform: translateY(-20px); }
