.pagination-single {
  display: flex;
}
.pagination-single .post {
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  position: relative;
  box-sizing: border-box;
}
.pagination-single .post a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pagination-single .post .pagination-mobile {
  display: none;
}
.pagination-single .post .pagination-category__container {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  display: none;
  justify-content: flex-end;
  gap: 20px;
}
.pagination-single .post .pagination-category__container .pagination-glossary {
  font-weight: 700;
  position: relative;
}
.pagination-single .post .pagination-category__container .pagination-glossary:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000000;
  right: -12px;
  top: 7px;
}
.pagination-single .post .pagination-title {
  display: none;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  height: 52px;
  overflow: hidden;
}
.pagination-single .post:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
  background: url(../../../../../../../uploads/tenweb-theme/images/icons/arrows/blue-arrow-right.svg) no-repeat center;
}
.pagination-single .post.previous-post {
  padding: 30px 20px 30px 40px;
}
.pagination-single .post.previous-post .pagination-category__container {
  justify-content: flex-end;
}
.pagination-single .post.previous-post .pagination-title {
  text-align: right;
}
.pagination-single .post.previous-post:before {
  left: 20px;
  transform: rotate(180deg);
}
.pagination-single .post.next-post {
  padding: 30px 40px 30px 20px;
}
.pagination-single .post.next-post .pagination-category__container {
  justify-content: flex-start;
}
.pagination-single .post.next-post:before {
  right: 20px;
}
