/*
 * === UTILITY: FOCUS READER MODE ===
 * Description: Hides sidebars and centers the content 
 * only on the main article detail page for better focus.
 * Universality: High (targets 'body.page_article')
*/

/* 1. Target ONLY the article detail page */
body.page_article {
  
  /* 2. Hide the sidebar (left or right) */
  .pkp_structure_sidebar {
    display: none;
  }
  
  /* 3. Make the main content area full-width */
  .pkp_structure_main {
    width: 100%;
    float: none; /* Remove any floats */
  }

  /* 4. Give the article a max-width and center it (for readability) */
  .article-details {
    max-width: 800px; /* Ideal reading width */
    margin: 30px auto; /* Center the block */
  }

  /* 5. Improve the typography for long-form reading */
  .article-details .article-fulltext {
    font-size: 1.15rem; /* Slightly larger text */
    line-height: 1.8;   /* More space between lines */
    font-family: 'Georgia', 'Times New Roman', serif; /* Serif is easier to read long-form */
  }
}