.next-article {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  /* faixa clicável inteira */
  .next-article-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    text-decoration: none;
    color: inherit;
  }
  
  /* título */
  .next-article-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #111111;
  }
  
  /* seta à direita */
  .next-article-arrow {
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.15s ease;
  }
  
  /* hover: leve destaque e seta anda pra frente */
  .next-article-link:hover {
    background: #fafafa;
  }
  
  .next-article-link:hover .next-article-arrow {
    transform: translateX(4px);
  }
  
  /* responsivo: quebra em duas linhas no mobile */
  @media (max-width: 600px) {
    .next-article-link {
      flex-direction: row;
      align-items: flex-start;
    }
  
    .next-article-title {
      font-size: 18px;
    }
  }
  