/* Browser defaults shared by the site's semantic components. No build step. */
@layer base {
  *,
  *::before,
  *::after,
  *::backdrop,
  *::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: "Golos Text", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
  }
  body {
    min-height: 100vh;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  strong,
  b {
    font-weight: bolder;
  }
  code,
  pre,
  kbd,
  samp {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  ul,
  ol,
  menu {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0;
  }
  hr {
    height: 0;
    border-top-width: 1px;
    color: inherit;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  textarea,
  optgroup,
  ::file-selector-button {
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
    background: transparent;
    border-radius: 0;
  }
  button,
  input:is([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  button,
  summary {
    cursor: pointer;
  }
  button:disabled {
    cursor: default;
  }
  textarea {
    resize: vertical;
  }
  ::placeholder {
    opacity: 1;
    color: color-mix(in srgb, currentColor 50%, transparent);
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  [hidden]:not([hidden="until-found"]) {
    display: none !important;
  }
}
.site-page {
  background: #f2f5fc;
  color: #11151f;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
