/* Base styles shared by all pages */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --figma-w: 1920;
  /* Интерфейс и текст статей: Helvetica Neue / Helvetica */
  --font-sans: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: "Times New Roman", Times, Georgia, serif;
}

html {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

body {
  margin: 0;
  height: 100%;
  height: 100dvh;
  min-height: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #ffffff;
}

/* Длинные страницы (портал, управление группами): обычная вертикальная прокрутка */
html.kb-portal-scroll,
body.kb-portal-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto !important;
  min-height: 100%;
  min-height: 100dvh;
  max-height: none !important;
}

