.article-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
  color: var(--muted);
}

.article-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.article-footer strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.article-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.article-footer a {
  border-bottom: 1px solid transparent;
}

.article-footer a:hover {
  border-color: var(--muted);
  color: var(--ink);
}

@media (max-width: 560px) {
  .article-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-footer nav {
    justify-content: flex-start;
  }
}
