.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid #e3ebf5;
}
.pager-link {
  position: relative;
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: #fff;
  color: #1c2b44;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pager-link:hover {
  border-color: #8bb7f1;
  box-shadow: 0 12px 28px rgba(40, 107, 214, .1);
  transform: translateY(-2px);
}
.pager-link span {
  margin-bottom: 8px;
  color: #6f82a0;
  font-size: 12px;
  font-weight: 700;
}
.pager-link strong {
  display: -webkit-box;
  overflow: hidden;
  color: #233550;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pager-prev { padding-left: 44px; }
.pager-next { padding-right: 44px; text-align: right; }
.pager-link:only-child { grid-column: 1 / -1; }
.pager-prev::before,
.pager-next::after {
  position: absolute;
  top: 50%;
  color: #2875e8;
  font-size: 22px;
  transform: translateY(-50%);
}
.pager-prev::before { left: 20px; content: "‹"; }
.pager-next::after { right: 20px; content: "›"; }
@media (max-width: 780px) {
  .article-pager { grid-template-columns: 1fr; }
  .pager-link { min-height: 92px; }
  .pager-next { padding: 20px 22px 20px 44px; text-align: left; }
  .pager-next::after { right: auto; left: 20px; }
}
