.layout-center .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.sidebar-nav {
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
/* The nav label is a styled <p>, not a heading: the sidebar is emitted BEFORE
   the page's h1 (layout-left-sidebar puts it first in the DOM and moves it with
   grid-area), so an <h4> here opened every terms/privacy/FAQ/account/admin page
   on a heading that outranked nothing and preceded everything. Declarations are
   the h4's, so nothing moves visually; the <nav> carries an aria-label instead. */
.sidebar-nav-title {
  font-size: 112.5%;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.5em;
}
.sidebar-nav .vertical-list li {
  display: inline-block;
  margin-right: 1em;
}

.content {
  line-height: 1.5;
}

@media only screen and (min-width: 480px) {
  .sidebar-nav-title {
    font-size: 125%;
  }
}

@media only screen and (min-width: 900px) {
  .sidebar-nav {
    border-bottom: 0;
    margin-top: 2rem;
  }
  .sidebar-nav .vertical-list li {
    display: block;
    margin-right: 0;
  }
  .layout-left-sidebar {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    grid-template-areas: "sidebar content";
  }
  .content {
    grid-area: content;
  }
  .sidebar {
    grid-area: sidebar;
  }
}
