#pb-root {
  font-family: var(--pb-font-base);
  font-size: 16px;
  line-height: var(--pb-line-height);
  color: var(--pb-text-dark);
  box-sizing: border-box;
}
#pb-root *, #pb-root *::before, #pb-root *::after {
  box-sizing: border-box;
}

/* === Базовые стили === */
:root {
--pb-accent:         #2456c4;
  --pb-accent-hover:   #1a3fa0;
  --pb-accent-light:   rgba(36,86,196,0.08);
  --pb-text-dark:      #111;
  --pb-text-muted:     #777;
  --pb-text-subtle:    #aaa;
  --pb-link-color:     var(--pb-accent);
  --pb-bg-dark:        #1e2333;
  --pb-bg-darker:      #111827;
  --pb-font-base:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pb-font-size-base: 16px;
  --pb-line-height:    1.65;

  
  --pb-h1-size:   40px;
  --pb-h1-weight: 700;
  --pb-h2-size:   32px;
  --pb-h2-weight: 700;
  --pb-h3-size:   24px;
  --pb-h3-weight: 600;
  --pb-h4-size:   20px;
  --pb-h4-weight: 600;

  
  --pb-text-sm-size:   14px;
  --pb-text-base-size: 16px;
  --pb-text-lg-size:   18px;
  --pb-text-xl-size:   20px;
}

#pb-root h1,
#pb-root h2,
#pb-root h3,
#pb-root h4,
#pb-root h5,
#pb-root h6,
#pb-root p,
#pb-root a,
#pb-root button,
#pb-root input,
#pb-root textarea,
#pb-root select,
#pb-root li,
#pb-root td,
#pb-root th,
#pb-root label,
#pb-root span,
#pb-root div {
font-family: inherit;
  font-size: inherit;
}

#pb-root h1,
#pb-root h2,
#pb-root h3,
#pb-root h4,
#pb-root h5,
#pb-root h6,
#pb-root p,
#pb-root ul,
#pb-root ol,
#pb-root li,
#pb-root figure,
#pb-root figcaption,
#pb-root blockquote,
#pb-root dl,
#pb-root dd,
#pb-root pre,
#pb-root hr {
margin: 0; padding: 0;
}

#pb-root ul,
#pb-root ol {
list-style: none;
}

#pb-root a:not(.pb-link):not(.pb-btn) {
color: var(--pb-link-color);
}