/* Previous and next, within a topic or within a day's feed.
 *
 * These were two 200px amber buttons stacked in the middle of the page, which
 * shouted louder than the article above them. They are links now -- the
 * handoff to today's next unread is the one call to action this page needs. */

.article-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
}

.navigation-label {
  margin: 0 0 6px;
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.navigation-links {
  display: flex;
  flex-direction: column;
}

.nav-link-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rule-soft);
}

.nav-link-item:last-child {
  border-bottom: none;
}

.nav-link-direction {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav-link-title {
  min-width: 0;
  font-size: var(--fs-base);
  color: var(--ink);
}

.nav-link-item:hover .nav-link-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
