/* Widen the content area beyond the theme's default constraints. */
@media screen and (min-width: 760px) {
  body {
    max-width: 92vw;
  }
  .post-list {
    max-width: 80vw;
  }
}

@media screen and (min-width: 1150px) {
  /* The TOC sidebar is fixed at left:20px, width:15vw (see toc.css).
     Shift content right to clear it instead of centering, so we don't
     have to shrink the reading width to avoid overlap. */
  body {
    margin-left: 15vw;
    margin-right: 2vw;
  }
}
