.static-content-container {
  max-width: 100ch;
  width: min(95vw, 100ch);
  display: grid;
  grid-template-columns: 36ch 1fr;
  gap: 1.25rem;
  margin: 0 auto;
}

.help-sidebar {
  position: sticky;
  top: calc(var(--navbar-height, 64px) + 0.75rem);
  align-self: start;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(0, 0, 0, 0.06);
}
.help-sidebar .help-navigation {
  list-style: none;
  margin: 0;
  padding-left: 0.25rem;
}
.help-sidebar .help-navigation li {
  margin: 0.15rem 0;
}
.help-sidebar .help-navigation a {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: 0.375rem;
  color: #334155;
  text-decoration: none;
  transition: background-color 120ms ease, color 120ms ease;
}
.help-sidebar .help-navigation a:hover, .help-sidebar .help-navigation a:focus {
  background: #f1f5f9;
  color: #0f172a;
}
.help-sidebar .help-navigation li.active > a {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 600;
}
.help-sidebar .help-navigation ul {
  list-style: none;
  margin: 0.25rem 0 0 0.75rem;
  border-left: 2px solid #e5e7eb;
  padding-left: 0.6rem;
}

.help-content {
  min-width: 0;
}
.help-content h1 {
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.3rem);
  font-weight: 700;
  color: #1f2937;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 0.4rem;
}
.help-content h2 {
  text-align: left;
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.5rem);
  font-weight: 600;
  color: #2b3340;
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.1px;
}
.help-content img {
  display: block;
  margin: 1rem auto;
  width: 66.6667%;
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  background: #f8f9fa;
  padding: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.help-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.help-content pre {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.375rem;
  padding: 1rem;
  overflow-x: auto;
}
.help-content code {
  background: #f1f5f9;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}
.help-content pre code {
  background: none;
  padding: 0;
}

@media (max-width: 992px) {
  .static-content-container {
    grid-template-columns: 1fr;
  }
  .help-sidebar {
    position: static;
    top: auto;
    margin-bottom: 0.5rem;
  }
  .help-content img {
    width: 100%;
  }
}

/*# sourceMappingURL=static_pages.css.map */
