/* Production desktop layout
   Keep the portal centered while using half of the viewport. */

:root {
  --desktop-content-width: 50vw;
}

@media (min-width: 1024px) {
  .header-inner,
  .site-main {
    width: var(--desktop-content-width);
    max-width: none;
  }

  .page,
  .page-wide {
    width: 100%;
    max-width: none;
  }
}
