/*
 * Single article desktop reading repair (R0.6.5 / AW2-016-P0-R3-A4).
 *
 * Fixes:
 *   - DESKTOP_ARTICLE_CONTENT_TOO_NARROW_AND_LEFT_ASYMMETRIC
 *   - PRE_PROMPT_BLOCK_HORIZONTAL_OVERFLOW
 *
 * Constraints honored:
 *   - desktop-only (>= 769px)
 *   - no !important
 *   - no global selectors
 *   - no parent-theme selectors
 *   - no fixed positioning
 *   - existing overflow-x:auto fallback from older CSS is left in place
 *   - typography / header / footer / sharing / prev-next / featured image unchanged
 */

@media (min-width: 769px) {
  .r06-single-article__content {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .r06-single-article__content pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}