/* Series Navigation at the top */
.series-nav {
    background-color: #f8f8f8;
    padding: 15px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
    border-left: 5px solid #e22d30; /* Using Mainroad's highlight color */
  }
  
  .series-nav h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
  }
  
  .series-nav ol {
    margin-bottom: 0;
    padding-left: 20px;
  }
  
  .series-nav li {
    margin-bottom: 5px;
  }
  
  .series-nav li.active a {
    font-weight: 700;
    color: #e22d30; /* Using Mainroad's highlight color */
  }
  
  .series-nav li a:hover {
    color: #e22d30;
  }
  
  /* Previous/Next Navigation at the bottom */
  .series-pager {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ebebeb; /* Added visual separator at the top */
    border-bottom: 1px dotted #ebebeb;
  }
  
  .series-prev, .series-next {
    max-width: 45%;
  }
  
  .series-next {
    text-align: right;
    margin-left: auto;
  }
  
  .series-prev span, .series-next span {
    display: block;
    font-size: 14px; /* Increased from 12px */
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 8px; /* Increased slightly for better spacing */
    color: #666;
  }
  
  .series-prev a, .series-next a {
    font-weight: 700;
    color: #e22d30; /* Using Mainroad's highlight color */
    font-size: 16px; /* Slightly larger text for the title */
  }
  
  .series-prev a:hover, .series-next a:hover {
    text-decoration: underline;
  }
  
  .series-prev.empty, .series-next.empty {
    visibility: hidden;
  }
  
  /* Mobile responsiveness matching Mainroad's breakpoints */
  @media screen and (max-width: 620px) {
    .series-pager {
      display: block;
    }
    
    .series-prev, .series-next {
      max-width: 100%;
      text-align: center;
    }
    
    .series-prev {
      margin-bottom: 15px;
    }
  }