/* Pagina publica de documentacao do Hard Blue. */
.docs-page {
  padding: 20px 0 28px;
}

.docs-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 84px;
  padding: 18px 16px;
}

.docs-sidebar__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.docs-sidebar__note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.docs-content {
  padding: 22px 20px;
  min-height: 320px;
}

.docs-content__header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.docs-content__header h1 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.docs-content__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.docs-placeholder {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(15, 26, 45, 0.55);
  color: #c7d4ea;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 860px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }
}
