/* ── DocsApp – Main CSS (GitBook-style) ─────────────────────────────────── */

/* ── Custom properties ───────────────────────────────────────────────────── */
:root {
  --color-primary: #3B82F6;
  --color-primary-hover: #2563EB;
  --sidebar-width: 280px;
  --toc-width: 240px;
  --content-max: 820px;

  /* Light theme */
  --bg-page:       #ffffff;
  --bg-sidebar:    #f8fafc;
  --bg-sidebar-hover: #eef2ff;
  --bg-code:       #f1f5f9;
  --bg-blockquote: #f0f9ff;
  --border:        #e2e8f0;
  --text-primary:  #0f172a;
  --text-secondary:#64748b;
  --text-sidebar:  #374151;
  --text-nav:      #4b5563;
  --text-nav-active: var(--color-primary);
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.1);
}

[data-theme="dark"] {
  --bg-page:       #0f172a;
  --bg-sidebar:    #1e293b;
  --bg-sidebar-hover: #334155;
  --bg-code:       #1e293b;
  --bg-blockquote: #1e3a5f;
  --border:        #334155;
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-sidebar:  #cbd5e1;
  --text-nav:      #94a3b8;
  --text-nav-active: #93c5fd;
}

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background .2s, color .2s;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
  transition: transform .25s ease;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.logo-img { height: 32px; width: auto; }

.sidebar-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: .25rem;
}

/* Search */
.sidebar-search { padding: .75rem 1rem; flex-shrink: 0; }
.search-wrap { position: relative; }
.search-icon { position: absolute; left: .65rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-secondary); pointer-events: none; }
.search-input {
  width: 100%;
  padding: .5rem .75rem .5rem 2.1rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s;
}
.search-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent); }
.search-input::placeholder { color: var(--text-secondary); }

/* Nav */
.sidebar-nav { flex: 1; overflow-y: auto; padding: .5rem 0 1rem; }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.nav-list { list-style: none; }
.nav-sub  { display: none; padding-left: 1rem; }
.nav-item.open > .nav-sub { display: block; }

.nav-section {
  display: block;
  padding: .9rem 1.25rem .3rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
}

.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .4rem 1.25rem;
  font-size: .875rem;
  color: var(--text-nav);
  text-decoration: none;
  border-radius: 6px;
  margin: 1px .5rem;
  transition: background .15s, color .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-link:hover { background: var(--bg-sidebar-hover); color: var(--text-primary); }
.nav-item.active > .nav-link {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--text-nav-active);
  font-weight: 600;
}
.nav-item.active > .nav-link::before {
  content: '';
  position: absolute;
  left: .5rem;
  top: 50%; transform: translateY(-50%);
  width: 3px; height: 1.25em;
  background: var(--color-primary);
  border-radius: 3px;
}

.nav-toggle {
  position: absolute;
  right: .75rem;
  top: .3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.4;
  padding: .1rem .25rem;
  transition: transform .2s;
}
.nav-item.open > .nav-toggle { transform: rotate(90deg); }

/* Sidebar footer (theme toggle) */
.sidebar-footer {
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .4rem .65rem;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--color-primary); color: var(--text-primary); }
.theme-toggle svg { width: 16px; height: 16px; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* ── Topbar (mobile) ─────────────────────────────────────────────────────── */
.topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: .75rem;
  padding: 0 1rem;
  z-index: 300;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  display: flex;
  padding: .35rem;
}
.menu-toggle svg { width: 22px; height: 22px; }
.topbar-logo { font-size: .95rem; font-weight: 700; text-decoration: none; color: var(--text-primary); white-space: nowrap; }
.topbar-search { flex: 1; }
.topbar-search input {
  width: 100%;
  padding: .4rem .75rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  color: var(--text-primary);
}
.topbar-search input:focus { outline: none; border-color: var(--color-primary); }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
}

/* ── Main content ─────────────────────────────────────────────────────────── */
.docs-main {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  min-height: 100vh;
}

.docs-content {
  flex: 1;
  max-width: var(--content-max);
  padding: 3rem 4rem;
  min-width: 0;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
  scroll-margin-top: 1.5rem;
}
.page-body h1 { font-size: 2rem; margin: 0 0 1.25rem; }
.page-body h2 { font-size: 1.5rem; margin: 2.5rem 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.page-body h3 { font-size: 1.2rem; margin: 2rem 0 .65rem; }
.page-body h4 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.page-body p  { margin-bottom: 1.2rem; }
.page-body a  { color: var(--color-primary); text-decoration: none; }
.page-body a:hover { text-decoration: underline; }
.page-body strong { font-weight: 700; }
.page-body em     { font-style: italic; }
.page-body del    { text-decoration: line-through; color: var(--text-secondary); }
.page-body img    { max-width: 100%; height: auto; border-radius: 8px; }

/* Code */
.page-body code {
  background: var(--bg-code);
  color: #e11d48;
  padding: .1em .35em;
  border-radius: 4px;
  font-size: .875em;
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}
.page-body pre {
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.15rem 1.35rem;
  overflow-x: auto;
  margin-bottom: 1.4rem;
  position: relative;
}
.page-body pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: .875rem;
  line-height: 1.6;
}

/* Blockquote */
.page-body blockquote {
  background: var(--bg-blockquote);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  padding: .9rem 1.25rem;
  margin: 0 0 1.2rem;
  color: var(--text-secondary);
}
.page-body blockquote p:last-child { margin-bottom: 0; }

/* Table */
.table-wrapper { overflow-x: auto; margin-bottom: 1.4rem; }
.page-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.page-body th {
  background: var(--bg-code);
  font-weight: 600;
  text-align: left;
  padding: .6rem .9rem;
  border: 1px solid var(--border);
}
.page-body td {
  padding: .55rem .9rem;
  border: 1px solid var(--border);
}
.page-body tr:nth-child(even) td { background: var(--bg-sidebar); }

/* Lists */
.page-body ul,
.page-body ol { padding-left: 1.75rem; margin-bottom: 1.2rem; }
.page-body li { margin-bottom: .35rem; }
.page-body li > ul,
.page-body li > ol { margin-bottom: 0; }

/* Hr */
.page-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Page navigation (prev/next) ─────────────────────────────────────────── */
.page-nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.page-nav-prev, .page-nav-next { flex: 1; }
.page-nav-next { text-align: right; }
.page-nav a {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  gap: .2rem;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.page-nav a:hover { border-color: var(--color-primary); background: var(--bg-sidebar); }
.nav-dir   { font-size: .78rem; color: var(--text-secondary); font-weight: 500; }
.nav-title { font-size: .9rem; color: var(--text-primary); font-weight: 600; }

/* ── Table of Contents ───────────────────────────────────────────────────── */
.toc-sidebar {
  display: block;
  width: var(--toc-width);
  flex-shrink: 0;
}
.toc-inner {
  position: sticky;
  top: 2rem;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
}
.toc-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: .75rem;
}
.toc-list { list-style: none; }
.toc-item a {
  display: block;
  font-size: .82rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: .2rem 0 .2rem .6rem;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
  line-height: 1.4;
}
.toc-item a:hover,
.toc-item a.active { color: var(--color-primary); border-left-color: var(--color-primary); }
.toc-h3 { padding-left: 1rem; }

/* ── Search page ─────────────────────────────────────────────────────────── */
.search-page h1 { margin-bottom: 1.5rem; font-size: 1.6rem; }
.search-term { color: var(--color-primary); }
.search-hint { color: var(--text-secondary); }
.search-results { list-style: none; }
.search-result-item { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.result-title { font-size: 1.05rem; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.result-title:hover { text-decoration: underline; }
.result-snippet { font-size: .875rem; color: var(--text-secondary); margin-top: .3rem; line-height: 1.5; }

/* ── Empty state ─────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon  { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h1 { font-size: 1.5rem; margin-bottom: .75rem; }
.empty-state p  { color: var(--text-secondary); }
.empty-state a  { color: var(--color-primary); font-weight: 600; text-decoration: none; }
.btn-home {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .65rem 1.5rem;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .toc-sidebar { display: none; }
  .docs-content { max-width: 100%; }
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-md);
  }
  .sidebar-close { display: block; }
  .sidebar-overlay.visible { display: block; }
  .topbar { display: flex; }
  .docs-main { margin-left: 0; padding-top: 56px; }
  .docs-content { padding: 2rem 1.5rem; }
}

@media (max-width: 540px) {
  .page-nav { flex-direction: column; }
  .docs-content { padding: 1.5rem 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EJS layout — fills the gaps between CSS class names and template output
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Sidebar logo text ─────────────────────────────────────────────────────── */
.sidebar-logo span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
  line-height: 1.2;
}

/* ── Search input wrapper ──────────────────────────────────────────────────── */
.search-input-wrap { position: relative; }
.search-input-wrap .search-icon {
  position: absolute; left: .65rem; top: 50%;
  transform: translateY(-50%); pointer-events: none; color: var(--text-secondary);
}
.search-input-wrap input {
  width: 100%;
  padding: .48rem .75rem .48rem 2.1rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s;
}
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.search-input-wrap input::placeholder { color: var(--text-secondary); }

/* ── Main wrapper (everything right of sidebar) ────────────────────────────── */
.main {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar — always visible (desktop + mobile) ────────────────────────────── */
/* Override the "display:none" default defined earlier */
.topbar {
  display: flex !important;
  position: sticky;
  top: 0;
  height: 52px;
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: .75rem;
  padding: 0 1.5rem 0 1rem;
  z-index: 100;
  flex-shrink: 0;
}
.menu-toggle { display: none; } /* hidden on desktop; shown at ≤ 900px via override below */

.breadcrumb {
  flex: 1;
  font-size: .84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .3rem;
  overflow: hidden;
  min-width: 0;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb > span:last-child {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.topbar-admin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .35rem;
  color: var(--text-secondary);
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.topbar-admin-link:hover { background: var(--bg-sidebar-hover); color: var(--text-primary); }

/* ── Content layout ────────────────────────────────────────────────────────── */
.content-wrap {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 3rem;
  min-width: 0;
}

/* Article container */
.article {
  flex: 1;
  min-width: 0;
  max-width: var(--content-max);
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

/* Article body — same rules as .page-body */
.article-body h1, .article-body h2, .article-body h3,
.article-body h4, .article-body h5, .article-body h6 {
  color: var(--text-primary); font-weight: 700; line-height: 1.3; scroll-margin-top: 1.5rem;
}
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 .65rem; }
.article-body h4 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.article-body p  { margin-bottom: 1.2rem; }
.article-body a  { color: var(--color-primary); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body strong { font-weight: 700; }
.article-body em     { font-style: italic; }
.article-body del    { text-decoration: line-through; color: var(--text-secondary); }
.article-body img    { max-width: 100%; height: auto; border-radius: 8px; }
.article-body code {
  background: var(--bg-code); color: #e11d48;
  padding: .1em .35em; border-radius: 4px;
  font-size: .875em; font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}
.article-body pre {
  background: var(--bg-code); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.15rem 1.35rem; overflow-x: auto; margin-bottom: 1.4rem; position: relative;
}
.article-body pre code { background: none; color: inherit; padding: 0; font-size: .875rem; line-height: 1.6; }
.article-body blockquote {
  background: var(--bg-blockquote); border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0; padding: .9rem 1.25rem; margin: 0 0 1.2rem; color: var(--text-secondary);
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.article-body th { background: var(--bg-code); font-weight: 600; text-align: left; padding: .6rem .9rem; border: 1px solid var(--border); }
.article-body td { padding: .55rem .9rem; border: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--bg-sidebar); }
.article-body ul, .article-body ol { padding-left: 1.75rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .35rem; }
.article-body li > ul, .article-body li > ol { margin-bottom: 0; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Table of Contents sidebar ─────────────────────────────────────────────── */
.toc {
  display: block;
  width: var(--toc-width);
  flex-shrink: 0;
}
.toc > .toc-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: .75rem;
  position: sticky;
  top: 68px;
}
.toc .toc-list {
  position: sticky;
  top: 90px;
  list-style: none;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.toc .toc-item a {
  display: block;
  font-size: .82rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: .2rem 0 .2rem .6rem;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
  line-height: 1.4;
}
.toc .toc-item a:hover,
.toc .toc-item a.active { color: var(--color-primary); border-left-color: var(--color-primary); }
.toc .toc-h3 { padding-left: 1rem; }

/* ── Page navigation prev/next ─────────────────────────────────────────────── */
.nav-label {
  font-size: .78rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .25rem;
}

/* ── Navigation sub-children (nav-tree partial) ────────────────────────────── */
.nav-children {
  display: none;
  padding-left: 1rem;
  list-style: none;
}
.nav-item.open > .nav-children { display: block; }

/* ── Search results ─────────────────────────────────────────────────────────── */
.search-meta { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: .95rem; }
.search-result-title {
  font-size: 1.05rem; font-weight: 600;
  color: var(--color-primary); text-decoration: none; display: block;
}
.search-result-title:hover { text-decoration: underline; }
.search-result-snippet {
  font-size: .875rem; color: var(--text-secondary);
  margin-top: .3rem; line-height: 1.5;
}
.search-result-slug { font-size: .78rem; color: var(--text-secondary); margin-top: .2rem; display: block; }

/* ── 404 error page ─────────────────────────────────────────────────────────── */
.error-page {
  text-align: center;
  padding: 5rem 2rem;
}
.error-page h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: .25rem;
}
.error-page h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.error-page p  { color: var(--text-secondary); margin-bottom: 1.5rem; }
.btn { display: inline-block; padding: .6rem 1.4rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .9rem; transition: background .15s; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); }

/* ── Site footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 1.25rem 3rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: auto;
}

/* ── Responsive overrides ────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .toc { display: none; }
  .content-wrap { padding: 2.5rem 2rem; }
}

@media (max-width: 900px) {
  .main { margin-left: 0; }
  .menu-toggle { display: flex !important; }
  .breadcrumb { display: none; }
  .content-wrap { padding: 1.5rem 1.25rem; }
  .article-title { font-size: 1.6rem; }
}

@media (max-width: 540px) {
  .content-wrap { padding: 1.25rem 1rem; }
  .page-nav { flex-direction: column; }
}

/* ── Page icons ─────────────────────────────────────────────────────────── */
.nav-icon {
  display: inline-block;
  margin-right: .35rem;
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
}
.page-icon {
  display: inline-block;
  margin-right: .4rem;
  font-size: .9em;
  vertical-align: middle;
  line-height: 1;
}
