/* ─── Post Navigation (Chronicles) ─── */
.chronicle-article__nav {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
  }
  
  .chronicle-article__nav a {
    background: #ffd700;
    color: #1e2a38;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .chronicle-article__nav a:hover {
    background: #e6c200;
  }
  