.post-navigation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 10px;
  font-size: 14px;
  gap: 30px;
}
.post-navigation a {
  color: rgba(100, 99, 110, 1);
}
.post-navigation a:hover {
  color: inherit;
}
.post-navigation a[rel=prev], .post-navigation a[rel=next] {
  position: relative;
  text-decoration: none;
}
.post-navigation a[rel=prev] {
  padding-left: 25px;
}
.post-navigation a[rel=next] {
  padding-right: 25px;
}
.post-navigation a[rel=prev]:before, .post-navigation a[rel=next]:after {
  content: '';
  position: absolute;
  top: 6px;
  width: 12px;
  height: 12px;
  background-position: 50%;
  background-repeat: no-repeat;
}
.post-navigation a[rel=prev]:before {
  background-image: url('../img/prev.svg');
  left: 0;
}
.post-navigation a[rel=next]:after {
  background-image: url('../img/next.svg');
  right: 0;
}

@media only screen and (max-width: 768px) {
  .nav-before-content:has(> .post-navigation) .to-cat {
    display: none;
  }
  .nav-after-content:has(> .post-navigation) .to-cat {
    width: 100%;
    order: -1;
    text-align: center;
    margin-bottom: 60px;
  }
}