nav.pagination {
  background-color: #e7e7e7;
  border-top: 1px solid #999;
  display: flex;
  padding: 0.75rem 2rem 0.75rem 2rem;
}

  nav.pagination span {
    display: flex;
    flex: 50%;
    flex-direction: column
  }

  nav.pagination .next {
    text-align: right;
    align-items: flex-end;
  }

  nav.pagination .prev {
    text-align: left;
    align-items: flex-start;
  }

  nav.pagination span::before {
    color: #666;
    font-size: .75em;
    padding-bottom: .1em
  }

  nav.pagination .prev::before {
    content: "Prev"
  }

  nav.pagination .next::before {
    content: "Next"
  }

  nav.pagination a {
    line-height: 1.3;
    position: relative
  }

    nav.pagination a::after,
    nav.pagination a::before {
      color: var(--toolbar-muted-color);
      font-size: 1.5em;
      line-height: .75;
      position: absolute;
      top: 0;
      width: 1rem
    }

  nav.pagination .prev a::before {
    content: "\2039";
    transform: translateX(-100%)
  }

  nav.pagination .next a::after {
    content: "\203a"
  }
