/* Needed to style Nav's child components */
.nav-right button {
  margin-left: 16px;
}

/* Needed to style link to site title */
nav > a > h1, h2, h3, h4 {
  color: black;
}

/* Steady class name needed for dynamic show/hide of .nav-right on mobile */
.nav-right.show-right-nav-mobile {
  display: flex;
  position: fixed;
  top: 64px;
  right: 0;
  width: 240px;
  z-index: 2;
  background-color: #f9f9f9;
}
.nav-right.show-right-nav-mobile button {
  margin: 12px 0;
}

.toggle-nav-right {
  min-width: 24px;
  mask: url(/img/hamburger_menu.svg) no-repeat center / contain;
  -webkit-mask: url(/img/hamburger_menu.svg) no-repeat center / contain;
}

/* Used in static-ish pages (/about, /terms, /privacy) */
.static-content {
  padding: var(--margin-left-default);
  max-width: 80%;
}
@media (max-width: 640px) {
  .static-content {
    padding: calc(var(--margin-left-default) / 2);
    max-width: 96%;
  }
}
.static-content h3 {
  font-weight: 600;
}
.static-content ul {
  margin-left: 30px;
}
.static-content li, .static-content p {
  margin-top: 15px;
}
.static-content a:hover {
  text-decoration: underline;
}
