
  :root {
    color-scheme: light;
    --bg: #fbfcfd;
    --surface: #ffffff;
    --surface-2: #f4f6fa;
    --text: #242830;
    --text-strong: #171a21;
    --muted: #5a6472;
    --muted-2: #7b8494;
    --hairline: #e6eaf0;
    --hairline-strong: #d4dae4;
    --accent: #e11d42;
    --accent-hover: #b81536;
    --accent-tint: #fdecef;
    --accent-ring: rgba(225, 29, 66, 0.32);
    --code-bg: #f0f3f8;
    --code-text: #33405a;
    --shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 8px 24px rgba(20, 30, 50, 0.06);
    --content-w: 680px;
    --side-w: 260px;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      color-scheme: dark;
      --bg: #0e1117;
      --surface: #161b24;
      --surface-2: #1b212c;
      --text: #ced5e0;
      --text-strong: #f2f5fa;
      --muted: #9aa4b4;
      --muted-2: #7a8496;
      --hairline: #232a36;
      --hairline-strong: #2d3644;
      --accent: #ff6b83;
      --accent-hover: #ff8698;
      --accent-tint: #2a1820;
      --accent-ring: rgba(255, 107, 131, 0.34);
      --code-bg: #1c2430;
      --code-text: #aeb9cc;
      --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
    }
  }

  :root[data-theme="light"] {
    color-scheme: light;
    --bg: #fbfcfd;
    --surface: #ffffff;
    --surface-2: #f4f6fa;
    --text: #242830;
    --text-strong: #171a21;
    --muted: #5a6472;
    --muted-2: #7b8494;
    --hairline: #e6eaf0;
    --hairline-strong: #d4dae4;
    --accent: #e11d42;
    --accent-hover: #b81536;
    --accent-tint: #fdecef;
    --accent-ring: rgba(225, 29, 66, 0.32);
    --code-bg: #f0f3f8;
    --code-text: #33405a;
    --shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 8px 24px rgba(20, 30, 50, 0.06);
  }

  :root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0e1117;
    --surface: #161b24;
    --surface-2: #1b212c;
    --text: #ced5e0;
    --text-strong: #f2f5fa;
    --muted: #9aa4b4;
    --muted-2: #7a8496;
    --hairline: #232a36;
    --hairline-strong: #2d3644;
    --accent: #ff6b83;
    --accent-hover: #ff8698;
    --accent-tint: #2a1820;
    --accent-ring: rgba(255, 107, 131, 0.34);
    --code-bg: #1c2430;
    --code-text: #aeb9cc;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  ::selection {
    background: var(--accent-ring);
    color: var(--text-strong);
  }

  a {
    color: var(--accent);
    text-decoration: none;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  a:hover { color: var(--accent-hover); text-decoration: underline; }

  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 3px;
  }

  /* ---------- Theme toggle ---------- */
  /* Тема — кнопка внизу справа (удобно большим пальцем на мобиле, не наезжает на шапку) */
  .theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hairline-strong);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  .theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
  .theme-toggle:active { transform: scale(0.94); }

  /* Ненавязчивая подсказка языка — компактная плашка внизу по центру, не оверлей */
  .lang-hint {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(8px);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px 8px 16px;
    background: var(--surface);
    border: 1px solid var(--hairline-strong);
    border-radius: 999px;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: calc(100vw - 32px);
  }
  .lang-hint.is-shown { opacity: 1; transform: translateX(-50%) translateY(0); }
  .lang-hint__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
  }
  .lang-hint__link:hover { text-decoration: underline; }
  .lang-hint__close {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }
  .lang-hint__close:hover { color: var(--text-strong); }
  @media (prefers-reduced-motion: reduce) {
    .lang-hint { transition: none; }
  }

  /* ---------- Shell ---------- */
  .page {
    /* max-width РОВНО по ширине контент-блока (колонка+gap+сайдбар), чтобы .page,
       .layout и .crumbs были ОДНОЙ ширины и центрировались как единая система —
       иначе .page шире контента → лишняя пустота и рассогласование выравнивания. */
    max-width: calc(var(--content-w) + 56px + var(--side-w));
    margin: 0 auto;
    padding: 0 24px 96px;
    /* query-контейнер: cqi у заголовков меряет ЭТУ ширину, а не ширину окна */
    container-type: inline-size;
  }

  .layout {
    display: grid;
    grid-template-columns: var(--content-w) var(--side-w);
    /* column-gap между колонкой и сайдбаром; row-gap:0 — крошки (первый ряд) не должны
       отставать от контента на 56px (вертикальный отступ задаёт padding крошек). */
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
    justify-content: center;
  }

  /* ---------- Breadcrumbs ---------- */
  /* Крошки — первый ряд грида .layout на всю ширину (grid-column 1/-1). Так их левый
     край физически совпадает с левым краем article-колонки в ЛЮБОМ режиме (одно/две
     колонки), без подгонки max-width/padding — одна сетка, одна левая кромка. */
  .crumbs {
    grid-column: 1 / -1;
    margin: 0;
    padding: 26px 0 4px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--muted);
  }
  .crumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .crumbs li { display: inline-flex; align-items: center; gap: 8px; }
  .crumbs .sep { color: var(--muted-2); opacity: 0.7; }
  .crumbs a { color: var(--muted); }
  .crumbs a:hover { color: var(--accent); }
  .crumbs [aria-current="page"] { color: var(--text-strong); }

  /* ---------- Article ---------- */
  article {
    min-width: 0;
    max-width: var(--content-w);
  }

  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 8px 0 14px;
  }

  h1 {
    /* fluid по ширине КОНТЕЙНЕРА (cqi), не окна — работает и в узкой панели артефакта */
    font-size: clamp(28px, 4cqi, 44px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--text-strong);
    margin: 0 0 20px;
    text-wrap: pretty;
    hyphens: none;
  }

  .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    font-size: 14px;
    color: var(--muted);
    padding-bottom: 26px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--hairline);
  }
  .meta .author { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-weight: 500; }
  .meta .avatar {
    width: 28px; height: 28px; border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff8fa2);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  }
  .meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--muted-2); opacity: 0.7; }

  /* ---------- Standfirst ---------- */
  article > p:first-of-type,
  .standfirst {
    font-size: 20px;
    line-height: 1.58;
    color: var(--text-strong);
  }
  .standfirst { margin: 26px 0 8px; }

  section { scroll-margin-top: 88px; }

  section + section {
    /* Отступы вокруг разделительной линии. ВАЖНО: h2 первым ребёнком секции
       обнуляется ниже (section + section h2:first-child { margin-top: 0 }), поэтому
       весь зазор ПОД линией до заголовка задаёт padding-top секции — иначе
       padding + собственный margin h2 складываются и заголовок «повисает»
       в пустоте (замер: было 73px над против 16px под — асимметрия). */
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
  }

  h2 {
    font-size: clamp(23px, 2.9cqi, 31px);
    line-height: 1.22;
    letter-spacing: -0.015em;
    font-weight: 750;
    color: var(--text-strong);
    margin: 28px 0 16px;
    text-wrap: pretty;
  }
  section + section h2:first-child { margin-top: 0; }

  h3 {
    font-size: 23px;
    line-height: 1.28;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: var(--text-strong);
    /* margin-top сцеплен с margin-bottom как ~2:1 — подзаголовок ближе к своему
       тексту снизу, чем к предыдущему абзацу сверху; было 34/12 → заголовок «повисал». */
    margin: 26px 0 12px;
    text-wrap: pretty;
  }

  /* ---------- FAQ (плоский вариант: голые h3-вопрос + p-ответ) ----------
     ВНИМАНИЕ: две разные статьи используют разную FAQ-разметку. RU-гайд — плоский
     список голых <h3>+<p>; EN-гайд — аккордеон <details><summary><h3>. Для аккордеона
     разделители уже даёт `details { border-bottom }`, там своё оформление — НЕ трогаем
     (иначе двойная линия). Поэтому правило бьёт ТОЛЬКО прямых детей #faq (плоский
     список), исключая h3 внутри summary через дочерний комбинатор `#faq > h3`.
     Проблема плоского списка: с общим h3 (26/12) пары «вопрос-ответ» сливались в
     ровную лесенку — глазу не видно границы. Разделяем линией + воздухом. */
  #faq > h3 {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline);
  }
  /* первый вопрос идёт сразу под H2 «Частые вопросы» — ему линия и лишний воздух не нужны */
  #faq > h2 + h3 {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
  }

  p { margin: 0 0 18px; }

  ul, ol { margin: 0 0 20px; padding-left: 1.35em; }
  li { margin: 0 0 9px; padding-left: 4px; }
  li::marker { color: var(--muted-2); }
  ol li::marker { color: var(--accent); font-weight: 700; }

  /* ---------- Figures ---------- */
  figure {
    margin: 30px 0;
  }
  figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--hairline-strong);
    background: var(--surface-2);
    box-shadow: var(--shadow);
  }
  figcaption {
    margin-top: 11px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    padding-left: 14px;
    border-left: 2px solid var(--hairline-strong);
  }

  /* ---------- Tables ---------- */
  .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid var(--hairline);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15.5px;
    line-height: 1.5;
    min-width: 480px;
  }
  thead th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface-2);
    padding: 12px 16px;
    border-bottom: 1px solid var(--hairline-strong);
    white-space: nowrap;
  }
  tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--hairline);
    vertical-align: top;
    color: var(--text);
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody td:first-child { font-weight: 600; color: var(--text-strong); }

  /* inline code-ish error tokens in first table column */
  code {
    font-family: "SF Mono", ui-monospace, "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;
    font-size: 0.86em;
    background: var(--code-bg);
    color: var(--code-text);
    padding: 2px 6px;
    border-radius: 5px;
    white-space: nowrap;
  }

  /* ---------- Inline soft CTA (to free 7sim) ---------- */
  .softcta {
    margin: 30px 0;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--hairline-strong);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
  }
  .softcta .ico { flex: none; font-size: 20px; line-height: 1.4; }
  .softcta strong { color: var(--text-strong); }
  .softcta a { font-weight: 600; }

  /* ---------- FAQ ---------- */
  .faq { display: flex; flex-direction: column; gap: 0; }
  details {
    border-bottom: 1px solid var(--hairline);
  }
  details summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 40px 18px 0;
    position: relative;
  }
  details summary::-webkit-details-marker { display: none; }
  details summary h3 {
    display: inline;
    font-size: 19px;
    font-weight: 650;
    margin: 0;
    letter-spacing: -0.005em;
  }
  details summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 16px;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    color: var(--muted);
    transition: transform 0.2s ease, color 0.2s ease;
  }
  details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
  details summary:hover h3 { color: var(--accent); }
  details .answer { padding: 0 40px 20px 0; }
  details .answer p { margin: 0; color: var(--text); }

  /* ---------- Final hard CTA ---------- */
  .final-cta {
    margin-top: 44px;
    padding: 34px;
    border-radius: 16px;
    background:
      radial-gradient(120% 140% at 100% 0%, var(--accent-tint) 0%, transparent 60%),
      var(--surface);
    border: 1px solid var(--hairline-strong);
    box-shadow: var(--shadow);
  }
  .final-cta h2 { margin: 0 0 8px; font-size: 26px; }
  .final-cta p { margin: 0 0 20px; color: var(--muted); font-size: 16px; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0.005em;
    box-shadow: 0 2px 8px var(--accent-ring);
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  }
  .btn:hover { background: var(--accent-hover); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px var(--accent-ring); }
  .btn:active { transform: translateY(0); }
  .btn .arr { transition: transform 0.15s ease; }
  .btn:hover .arr { transform: translateX(3px); }

  /* ---------- Sidebar ---------- */
  .rail {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .toc-card { padding: 20px 18px; }
  .rail-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 0 14px;
    padding: 0 4px;
  }
  .toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .toc-list a {
    display: block;
    padding: 7px 12px;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--muted);
    border-left: 2px solid transparent;
    margin-left: 2px;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .toc-list a:hover { color: var(--text-strong); text-decoration: none; }
  .toc-list a.active {
    color: var(--accent);
    border-left-color: var(--accent);
    font-weight: 600;
  }

  .cta-card {
    padding: 22px 20px;
    background:
      radial-gradient(130% 120% at 0% 0%, var(--accent-tint) 0%, transparent 62%),
      var(--surface);
  }
  .cta-card .k {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
  }
  .cta-card h4 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
  }
  .cta-card p {
    margin: 0 0 16px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
  }
  .cta-card .btn { width: 100%; min-height: 44px; font-size: 15px; }
  .cta-card .fine {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--muted-2);
    text-align: center;
  }

  /* ---------- Mobile "On this page" accordion (hidden on desktop) ---------- */
  .toc-mobile { display: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .layout {
      grid-template-columns: minmax(0, 1fr);
      max-width: var(--content-w);
      margin: 0 auto;
      gap: 0;
    }
    .rail { display: none; }
    article { max-width: none; }

    .toc-mobile {
      display: block;
      margin: 22px 0 8px;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .toc-mobile > summary {
      list-style: none;
      cursor: pointer;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .toc-mobile > summary::-webkit-details-marker { display: none; }
    .toc-mobile > summary::after {
      /* перебиваем общий details::after (+, absolute right:4/top:16) — у мобильного TOC
         своя стрелка в потоке flex-summary (justify-content:space-between), без absolute */
      content: "›";
      position: static;
      right: auto;
      top: auto;
      font-size: 22px;
      transform: rotate(90deg);
      transition: transform 0.2s ease;
      color: var(--muted-2);
    }
    .toc-mobile[open] > summary::after { transform: rotate(-90deg); }
    .toc-mobile ol {
      list-style: none;
      margin: 0;
      padding: 0 10px 12px;
      counter-reset: toc;
    }
    .toc-mobile ol a {
      display: block;
      padding: 9px 12px;
      font-size: 14.5px;
      color: var(--text);
      border-radius: 8px;
    }
    .toc-mobile ol a:hover { background: var(--surface-2); text-decoration: none; }

    .cta-inline {
      display: block;
      margin: 40px 0 0;
    }
  }

  /* CTA-inline only shown on mobile (in flow at end) */
  .cta-inline { display: none; }

  @media (max-width: 560px) {
    body { font-size: 17px; }
    .page { padding: 0 18px 72px; }
    /* h1/h2 масштабируются через clamp() — здесь только мелкое */
    .final-cta h2 { font-size: 22px; }
    h3 { font-size: 20px; }
    article > p:first-of-type, .standfirst { font-size: 18px; }
    .final-cta { padding: 24px 20px; }
    figure img { border-radius: 10px; }
  }

  /* ============================================================
     HUB / category listing (/guides) — одноколоночный центр ~720px.
     Гайды = горизонтальные ряды (.guide-row) на всю ширину колонки, а не грид:
     при 1 гайде нет пустоты справа, при 20 — просто длиннее список. Единый маршрут
     на приватный номер (SVN); 7sim и флагман-бейджи убраны.
     Переиспользует токены и .crumbs/.btn/.eyebrow из статьи. .page здесь БЕЗ
     .layout-грида (у хаба нет сайдбара), поэтому крошки — обычный блок.
     ============================================================ */

  .hub-main {
    /* одноколоночная кишка по ширине контента статьи (~680px) — та же левая кромка,
       контент заполняет колонку целиком, пустого поля справа нет по определению. */
    max-width: var(--content-w);
    margin: 0 auto;
    min-width: 0;
  }

  /* Крошки внутри .hub-main (не в .page) → делят с контентом левую кромку.
     Отменяем grid-column от .layout-версии, свой верхний отступ. */
  .hub-page .crumbs { grid-column: auto; padding: 26px 0 4px; }

  .hub-main > .eyebrow { margin-top: 4px; }

  .hub-lead {
    font-size: 20px;
    line-height: 1.58;
    color: var(--text-strong);
    margin: 22px 0 16px;
  }
  .hub-lead-2 {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 8px;
  }
  .hub-lead-2 strong { color: var(--text-strong); }

  .hub-section { margin-top: 40px; }
  .hub-section-h {
    font-size: clamp(21px, 2.6cqi, 27px);
    font-weight: 750;
    letter-spacing: -0.01em;
    color: var(--text-strong);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hairline);
  }

  /* ---------- Guide list (horizontal rows, one column) ---------- */
  .guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .guide-list > li { margin: 0; padding: 0; }

  .guide-row {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
  }
  .guide-row:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 18px var(--accent-ring);
    transform: translateY(-1px);
  }
  .guide-row__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    color: var(--text);
  }
  .guide-row__link:hover { text-decoration: none; color: var(--text); }

  .guide-row__ico {
    width: 44px;
    height: 44px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--accent-tint);
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  .guide-row__body { min-width: 0; flex: 1 1 auto; }
  .guide-row__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--text-strong);
    margin: 0 0 3px;
  }
  .guide-row:hover .guide-row__title { color: var(--accent); }
  .guide-row__desc {
    font-size: 14px;
    line-height: 1.45;
    color: var(--muted);
    margin: 0;
  }
  .guide-row__date {
    flex: none;
    font-size: 12.5px;
    color: var(--muted-2);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
  .guide-row__arrow {
    flex: none;
    font-size: 18px;
    color: var(--muted-2);
    transition: transform 0.15s ease, color 0.15s ease;
  }
  .guide-row:hover .guide-row__arrow { color: var(--accent); transform: translateX(3px); }

  /* ---------- Hub CTA (bottom) ---------- */
  .hub-cta {
    display: block;
    margin-top: 44px;
    padding: 30px 30px 32px;
    border-radius: 16px;
    background:
      radial-gradient(120% 140% at 100% 0%, var(--accent-tint) 0%, transparent 60%),
      var(--surface);
    border: 1px solid var(--hairline-strong);
    box-shadow: var(--shadow);
  }
  .hub-cta__k {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
  }
  .hub-cta__h { margin: 0 0 10px; font-size: clamp(20px, 2.4cqi, 25px); }
  .hub-cta__p { margin: 0 0 20px; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
  .hub-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

  /* ---------- Hub responsive ---------- */
  @media (max-width: 560px) {
    .hub-lead { font-size: 18px; }
    /* Иконка + тело остаются в линию (без переноса). Дату и стрелку прячем: на узком
       экране они съедали ширину тела и провоцировали перенос иконки на свою строку. */
    .guide-row__date, .guide-row__arrow { display: none; }
    .hub-cta { padding: 24px 20px 26px; }
    .hub-cta__actions { flex-direction: column; }
    .hub-cta__actions .btn { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  html { scroll-behavior: smooth; }
