/* ============================================================
   Rezult CRM — Central de Ajuda
   Dark · Neon · Geist · Matches rezultcrm.com design system
   ============================================================ */

:root {
  /* Brand */
  --primary: #00E599;
  --primary-hi: #5CFFC0;
  --primary-lo: #00B87A;
  --on-primary: #04140D;
  --glow: rgba(0, 229, 153, 0.45);
  --glow-soft: rgba(0, 229, 153, 0.18);

  /* Surfaces */
  --bg: #05080A;
  --bg-deep: #02040A;
  --surface: #0C1115;
  --surface-2: #131A1E;
  --surface-3: #1B2429;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --border-active: rgba(0, 229, 153, 0.45);

  /* Text */
  --text: #F4F6F4;
  --text-muted: rgb(200, 200, 200);
  --text-subtle: rgba(244, 246, 244, 0.38);

  /* Type */
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  /* Layout */
  --maxw: 1120px;
  --nav-h: 68px;

  /* Legacy aliases — mantidos para não quebrar componentes de artigo */
  --ink: var(--text);
  --muted: var(--text-muted);
  --card: var(--surface);
  --radius: var(--r-lg);
  --primary-soft: rgba(0, 229, 153, 0.12);
  --primary-dark: var(--primary-lo);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}

/* Noise grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(0, 229, 153, 0.3); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-active); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ─── Header ─────────────────────────────────────────── */

header {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(5, 8, 10, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo / brand — espelha o markup do site principal */
.logo, .brand {
  display: inline-flex; align-items: flex-start; gap: 11px;
  color: var(--text);
}

.logo-mark {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--glow-soft);
  flex-shrink: 0; margin-top: 1px;
}
.logo-mark span { font-weight: 700; font-size: 13px; letter-spacing: -0.05em; color: #fff; }

.logo-word {
  display: block;
  font-weight: 600; font-size: 19px; letter-spacing: -0.04em; line-height: 1;
}
.logo-word b { font-weight: 600; color: var(--primary); }
.logo-word small {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--text-subtle); letter-spacing: 0; margin-top: 3px; line-height: 1;
}

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-actions a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .15s; }
.nav-actions a:not(.btn):hover { color: var(--text); }

/* ─── Button ─────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: var(--on-primary);
  font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 0 0 1px var(--primary), 0 6px 24px var(--glow);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--primary), 0 10px 32px var(--glow); }
.btn svg { width: 15px; height: 15px; }

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 80px 0 64px;
  text-align: center;
  overflow: hidden;
}

/* Grid de fundo */
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 10%, transparent 72%);
  opacity: 0.5;
}

/* Glow orb central */
.hero::after {
  content: "";
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: 860px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(0,229,153,0.38) 0%, transparent 60%);
  opacity: 0.15; filter: blur(22px); pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0, 229, 153, 0.08);
  border: 1px solid rgba(0, 229, 153, 0.22);
  color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.06;
  color: var(--text);
}
.hero h1 span { color: var(--primary); }

.hero p {
  color: var(--text-muted);
  font-size: 18px; max-width: 580px;
  margin: 18px auto 0; letter-spacing: -0.01em;
  line-height: 1.4;
}

/* Search */
.search {
  margin: 34px auto 0; max-width: 540px;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 0 0 1px rgba(0,229,153,0.06), 0 8px 32px rgba(0,0,0,0.4);
  transition: border-color .2s, box-shadow .2s;
}
.search:focus-within {
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(0,229,153,0.1), 0 8px 32px rgba(0,0,0,0.4);
}
.search svg { width: 18px; height: 18px; color: var(--text-subtle); flex-shrink: 0; }
.search input {
  flex: 1; border: none; outline: none;
  font-size: 15px; font-family: inherit;
  color: var(--text); background: transparent;
}
.search input::placeholder { color: var(--text-subtle); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-subtle);
  padding: 22px 0 0;
}
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ─── Sections ───────────────────────────────────────── */

.section { padding: 28px 0 72px; }
.section-head { margin-bottom: 26px; }
.section-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; color: var(--text); }
.section-head p { color: var(--text-muted); font-size: 15px; margin-top: 4px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* ─── Cards ──────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,153,0.18);
  border-color: rgba(0,229,153,0.28);
}
.card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0, 229, 153, 0.1);
  border: 1px solid rgba(0, 229, 153, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.card .ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.card .meta {
  margin-top: auto; font-size: 12px; font-weight: 600;
  color: var(--primary); display: flex; align-items: center; gap: 5px;
}
.card .meta svg { width: 14px; height: 14px; }
.soon {
  font-size: 10px; font-weight: 700;
  color: var(--text-subtle);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 2px 7px; letter-spacing: .03em;
}

/* ─── CTA ────────────────────────────────────────────── */

.cta {
  position: relative; overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border-active);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  text-align: center;
  margin-bottom: 64px;
  box-shadow: 0 0 60px rgba(0,229,153,0.07), inset 0 1px 0 rgba(0,229,153,0.12);
}
.cta::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,229,153,0.07) 0%, transparent 65%);
}
.cta h2 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); position: relative;
}
.cta p {
  color: var(--text-muted); font-size: 16px;
  margin: 10px auto 24px; max-width: 480px; position: relative;
}
.cta .btn { position: relative; }

/* ─── Footer ─────────────────────────────────────────── */

footer { border-top: 1px solid var(--border); padding: 32px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot small { color: var(--text-subtle); font-size: 13px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--text-subtle); font-size: 13px; transition: color .15s; }
.foot-links a:hover { color: var(--text); }

/* ============================================================
   ARTIGO — páginas de tutorial
   ============================================================ */

.article { max-width: 820px; margin: 0 auto; padding: 8px 24px 40px; }

.article-hero { padding: 18px 0 14px; }
.article-hero .kicker {
  font-size: 11px; font-weight: 700; color: var(--primary);
  letter-spacing: .06em; text-transform: uppercase;
}
.article-hero h1 {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.1;
  margin-top: 8px; color: var(--text);
}
.article-hero .lead {
  color: var(--text-muted); font-size: 18px;
  margin-top: 14px; letter-spacing: -0.01em;
}
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 16px; margin-top: 18px; font-size: 13px; color: var(--text-muted);
}
.article-meta .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,229,153,0.1); border: 1px solid rgba(0,229,153,0.2);
  color: var(--primary); font-weight: 600; padding: 5px 11px; border-radius: 999px;
}
.article-meta svg { width: 14px; height: 14px; }
.article-hero .divider { height: 1px; background: var(--border); margin: 26px 0 4px; }

/* Índice "Neste tutorial" */
.toc {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px; margin: 8px 0 30px;
}
.toc h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-subtle); margin-bottom: 10px;
}
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: 8px; }
.toc li { counter-increment: toc; }
.toc a {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .15s;
}
.toc a::before {
  content: counter(toc); flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  color: var(--primary); background: rgba(0,229,153,0.1); border-radius: 7px;
}
.toc a:hover { color: var(--primary); }

/* Prosa */
.prose { font-size: 16.5px; }
.prose > section { scroll-margin-top: 84px; padding-top: 14px; }
.prose h2 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.03em;
  margin: 38px 0 6px; line-height: 1.2; color: var(--text);
}
.prose h2 .num { color: var(--primary); margin-right: 8px; }
.prose h3 {
  font-size: 17px; font-weight: 700;
  margin: 26px 0 4px; color: var(--text); letter-spacing: -0.02em;
}
.prose p { color: var(--text-muted); margin: 12px 0; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a.inline {
  color: var(--primary); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.prose ul, .prose ol { margin: 12px 0 12px 4px; padding-left: 22px; color: var(--text-muted); }
.prose li { margin: 7px 0; }
.prose li::marker { color: var(--primary); }
.prose code {
  font-family: var(--mono);
  font-size: .88em; background: var(--surface-2); color: var(--primary);
  padding: 2px 6px; border-radius: 6px; border: 1px solid var(--border-2);
}
.kbd {
  font-family: inherit; font-weight: 600; font-size: .92em;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-bottom-width: 2px; border-radius: 6px;
  padding: 1px 7px; color: var(--text); white-space: nowrap;
}

/* Callouts */
.callout {
  display: flex; gap: 12px;
  border: 1px solid var(--border); border-left-width: 4px;
  border-radius: var(--r-sm); padding: 14px 16px; margin: 20px 0;
  background: var(--surface-2);
}
.callout .ci { flex-shrink: 0; width: 22px; height: 22px; }
.callout .ci svg { width: 22px; height: 22px; }
.callout p { margin: 0; font-size: 15px; color: var(--text-muted); }
.callout strong { display: block; margin-bottom: 2px; color: var(--text); }
.callout.tip  { border-left-color: var(--primary); background: rgba(0,229,153,0.05); }
.callout.tip  .ci { color: var(--primary); }
.callout.note { border-left-color: #3B82F6; background: rgba(59,130,246,0.06); }
.callout.note .ci { color: #60A5FA; }
.callout.warn { border-left-color: #F59E0B; background: rgba(245,158,11,0.06); }
.callout.warn .ci { color: #FBBF24; }

/* Passos numerados */
.steps { list-style: none; counter-reset: step; margin: 22px 0; padding: 0; display: grid; gap: 14px; }
.steps > li {
  counter-increment: step; position: relative;
  padding: 16px 18px 16px 56px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
}
.steps > li::before {
  content: counter(step); position: absolute; left: 16px; top: 15px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--on-primary); background: var(--primary);
  border-radius: 9px; box-shadow: 0 0 12px var(--glow-soft);
}
.steps > li strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--text); }
.steps > li p { margin: 4px 0 0; font-size: 14.5px; color: var(--text-muted); }

/* Figura + legenda */
.figure { margin: 22px 0; }
.figure figcaption { font-size: 13px; color: var(--text-subtle); margin-top: 10px; text-align: center; }
.figure figcaption b { color: var(--text-muted); font-weight: 600; }

/* ── Mockup de bloco do construtor de automações ── */
.mock-canvas {
  background: var(--surface);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 26px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 14px;
}
.mock-node {
  width: 268px; background: var(--surface-2);
  border: 1px solid var(--border-2); border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5); overflow: hidden; position: relative;
}
.mock-node .mn-top { height: 4px; background: var(--accent, var(--primary)); }
.mock-node .mn-head { display: flex; align-items: center; gap: 11px; padding: 14px 16px 12px; }
.mock-node .mn-ic {
  width: 38px; height: 38px; border-radius: 10px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--on-primary); background: var(--accent, var(--primary));
}
.mock-node .mn-ic svg { width: 20px; height: 20px; }
.mock-node .mn-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.mock-node .mn-sub { font-size: 12px; color: var(--text-subtle); margin-top: 2px; }
.mock-node .mn-body {
  border-top: 1px dashed var(--border-2); padding: 12px 16px; display: grid; gap: 9px;
}
.mock-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-muted); }
.mock-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent, var(--primary)); flex-shrink: 0; }
.mock-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px;
  background: var(--surface-3); color: var(--text-muted); border: 1px solid var(--border);
}
.mock-field {
  font-size: 12.5px; color: var(--text-muted);
  background: var(--surface-3); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px;
}
.mock-field .lbl {
  display: block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--text-subtle); margin-bottom: 3px;
}
.mock-ports { display: grid; gap: 7px; padding: 10px 16px 14px; border-top: 1px dashed var(--border-2); }
.mock-port {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--text-muted);
  background: var(--surface-3); border: 1px solid var(--border); border-radius: 8px; padding: 7px 10px;
}
.mock-port .pin {
  width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--accent, var(--primary)); background: var(--surface-2); flex-shrink: 0;
}
.mock-port.green { border-color: rgba(0,229,153,0.25); background: rgba(0,229,153,0.07); color: var(--primary); }
.mock-port.green .pin { border-color: var(--primary); }
.mock-node .mn-arrow {
  position: absolute; right: -7px; top: 50%;
  width: 12px; height: 12px; background: var(--surface-2);
  border-right: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
  transform: translateY(-50%) rotate(-45deg);
}
.mock-conn { color: var(--border-2); flex-shrink: 0; display: flex; align-items: center; }
.mock-conn svg { width: 26px; height: 26px; }

/* Bloco de código */
.codeblock {
  position: relative; background: var(--bg-deep); color: #E2E8F0;
  border-radius: var(--r-sm); padding: 16px 18px;
  overflow-x: auto; margin: 18px 0; border: 1px solid var(--border-2);
}
.codeblock pre {
  margin: 0; font-family: var(--mono);
  font-size: 12.5px; line-height: 1.65; white-space: pre; tab-size: 2;
}
.codeblock .cm { color: rgba(255,255,255,0.28); font-style: italic; }
.codeblock .kw { color: #93C5FD; }
.codeblock .str { color: var(--primary); }
.codeblock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 18px 0 -8px; }
.codeblock-head .fname { font-size: 12px; font-weight: 700; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.codeblock-head .fname svg { width: 14px; height: 14px; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--primary); background: rgba(0,229,153,0.1);
  border: 1px solid rgba(0,229,153,0.22); border-radius: 8px;
  padding: 6px 11px; cursor: pointer; transition: background .15s;
}
.copy-btn:hover { background: rgba(0,229,153,0.16); }
.copy-btn svg { width: 14px; height: 14px; }
.copy-btn.copied { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* Bloco "parte" */
.part-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--primary); background: rgba(0,229,153,0.1);
  border: 1px solid rgba(0,229,153,0.2); padding: 5px 12px; border-radius: 999px;
}

/* Tabela simples */
.tbl-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--border); border-radius: var(--r-sm); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 460px; }
table.tbl th, table.tbl td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); }
table.tbl th {
  background: var(--surface-2); font-weight: 700;
  color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
}
table.tbl tr:last-child td { border-bottom: none; }
table.tbl td { color: var(--text-muted); }
table.tbl td code { font-size: .85em; }

/* Paginação prev/next */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 44px 0 8px; }
@media (max-width: 560px) { .pager { grid-template-columns: 1fr; } }
.pager a {
  display: flex; flex-direction: column; gap: 3px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 16px 18px; background: var(--surface);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.pager a:hover {
  border-color: rgba(0,229,153,0.28);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pager .dir { font-size: 12px; font-weight: 600; color: var(--text-subtle); }
.pager .ttl { font-size: 15px; font-weight: 700; color: var(--text); }
.pager a.next { text-align: right; }
.pager a.disabled { opacity: .3; pointer-events: none; }
