/* ==========================================================================
   RV LAYOUT, DESKTOP PATCH 12  -  rv-layout-desktop-12.css

   Replaces rv-layout-desktop-11.css, which replaced -10. Same single lever,
   plus one leftover cap that was still holding a block back.

   The column has moved twice on Ans's eye, 800 to 1200 to 1440, so the
   history is worth keeping: v8 set 800px and he said it had shrunk, v10 took
   it to 1200px and he asked for more again.

     --rv-read       1440px   running prose
     --rv-read-wide  1760px   tables, figures, FAQ blocks

   At 1901 that is about 230px of ground each side for prose and about 70px
   for wide blocks. These are max-widths on block elements, so on a narrower
   desktop the element just fills its container and nothing can overflow.

   v8 repointed --rv-measure, --rv-measure-prose and --rv-measure-article at
   --rv-read, and v9 reads both tokens for the product description, so these
   two lines move the whole site at once.
   ========================================================================== */

@media (min-width: 1025px) {

:root {
  --rv-read:      1440px;
  --rv-read-wide: 1760px;
}

/* The one block the token did not reach. petrol-chrome-34 caps the standfirst
   inside a .rv-sechead at 62ch, which resolved to 781px once the type scale
   went to 19px. Every other lede on the page was running 1440px from the same
   left edge, so this one read as a short stub. It now shares the column. */
body.rv-petrol .rv-sechead > .rv-lede,
body.rv-petrol .rv-sechead > .rv-h2 {
  max-width: var(--rv-read);
}

}