@import url('fonts.css');

/* ============================================================
   nottrackai.com — вёрстка бренда «NotTrack AI».

   Домен про ПЕРЕХОД: человек пришёл оттуда, где его остановили. Поэтому
   центральный блок — карточки с именами четырёх продуктов, в каждой две
   строки: что останавливает там и что здесь. Пятая карточка — единственное
   правило, которое одинаково везде.

   ⚠️ Палитра не та, что в design/palettes.html. Там за доменом закреплён
   сливовый #15111C с розовым #FF2E7E, но тот же файл сам называет это парой
   высокого риска с myuncensored.ai и советует увести домен в лимонный
   #FFE100. myuncensored выкачен сливовым — значит лимонный сюда.

   Лимонно-жёлтый в сетке не занят. Янтарь #FFB020 у uncensoredaichat.ai —
   другой тон: тот тёплый оранжевый, этот чистый жёлтый на почти чёрном.

   ⚠️ Имена чужих продуктов набираются текстом. Никаких логотипов и никаких
   фирменных цветов конкурентов: чужой знак на странице — это про сравнение,
   а не про оформление.

   Мобильный приоритет: 69% показов и 73% кликов — телефоны. Проверяется
   research/mobile_check.js на 360 и 320px.
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. Токены
   ───────────────────────────────────────────────────────── */
:root {
  --bg:      #101014;
  --surface: #1A1A20;
  --text:    #F2F2EE;
  --accent:  #FFE100;
  --muted:   #9B9B94;
  --border:  #2A2A32;
  /* Приглушённый красный для строки «что останавливает там». Не бренд-цвет:
     нужен ровно затем, чтобы стена читалась как стена. */
  --wall:    #E07A6B;

  --font-display: 'Cabinet Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Figtree', ui-sans-serif, system-ui, sans-serif;

  --gutter: 20px;
  --measure: 60ch;

  --step--1: clamp(.81rem, .78rem + .13vw, .87rem);
  --step-0:  clamp(1rem, .97rem + .18vw, 1.08rem);
  --step-1:  clamp(1.13rem, 1.06rem + .32vw, 1.34rem);
  --step-2:  clamp(1.32rem, 1.19rem + .6vw, 1.7rem);
  --step-3:  clamp(1.6rem, 1.36rem + 1.08vw, 2.3rem);
  --step-4:  clamp(2rem, 1.52rem + 2.25vw, 3.4rem);
}

/* ⚠️ overflow-x: hidden на body НЕ ставится: на эталоне он маскировал
   вылезающие блоки — страница выглядела целой, а текст был обрезан справа. */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
a:focus-visible, button:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ⚠️ Прячем обрезкой, а НЕ выносом за экран. `left: -9999px` на RTL-странице
   растягивает документ: замер на персидской версии соседнего домена дал
   ширину 10304px при окне 320. Здесь RTL-локалей нет, но приём одинаково
   правильный и не зависит от того, добавят ли их позже. */
.skip-link {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
  background: var(--accent); color: #14140A;
  padding: 10px 16px; font-weight: 700;
}
.skip-link:focus {
  inset-inline-start: 12px; top: 12px; width: auto; height: auto;
  clip: auto; clip-path: none; z-index: 100;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ─────────────────────────────────────────────────────────
   2. Сетка
   ───────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1020px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 700px; }

section { padding-block: 52px; border-top: 1px solid var(--border); }
.hero { border-top: 0; }
@media (min-width: 720px) { section { padding-block: 80px; } }

/* ─────────────────────────────────────────────────────────
   3. Типографика
   ───────────────────────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 700; line-height: 1.3; margin: 0 0 .3em; }

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

em { font-style: normal; color: var(--accent); }

.kicker {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

/* ─────────────────────────────────────────────────────────
   4. Шапка. Два уровня защиты от длинной подписи — короткий
   ключ в разметке и обрезка многоточием здесь.
   ───────────────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-head__in {
  display: flex; align-items: center; gap: 12px;
  min-height: 56px; min-width: 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.08rem; letter-spacing: -.03em;
  text-decoration: none; white-space: nowrap; flex: 0 0 auto;
}
.brand__mark { width: 21px; height: 21px; flex: 0 0 auto; color: var(--accent); }

.nav { display: none; margin-inline-start: auto; gap: 24px; }
.nav a { text-decoration: none; color: var(--muted); font-size: .93rem;
         white-space: nowrap; padding-block: 8px; }
.nav a:hover { color: var(--accent); }
@media (min-width: 920px) { .nav { display: flex; } }

.head-cta {
  margin-inline-start: auto;
  flex: 0 1 auto; min-width: 0;
  overflow: hidden; text-overflow: ellipsis;
  display: block; text-align: center;
  line-height: 42px; padding-block: 0;
}
@media (max-width: 400px) {
  .head-cta.btn { padding-inline: 12px; font-size: .87rem; }
  .brand { font-size: .97rem; }

  /* ⚠️ Переключатель языка добавлен в шапку 18.08 и занял 44px, которых в
     бюджете не было: у французского, японского и турецкого подпись кнопки
     ушла в многоточие. Место возвращается отступами и промежутками, а НЕ
     кнопкой — правило прежнего автора «ужимается бренд, а не кнопка»
     остаётся в силе. Многоточие здесь аварийный тормоз, а не нормальный вид. */
  .site-head .wrap { padding-inline: 12px; }
  .site-head__in { gap: 8px; }
}
@media (max-width: 340px) {
  .head-cta.btn { padding-inline: 9px; font-size: .84rem; }
  .site-head__in { gap: 8px; }
  .brand { font-size: .89rem; gap: 7px; }
  .brand__mark { width: 18px; height: 18px; }

  /* ⚠️ Остаток бюджета после переключателя: французскому не хватало 5px,
     украинскому 2, японскому 1. Добираем промежутком и отступом кнопки —
     по-прежнему не за счёт её подписи. */
  .site-head .wrap { padding-inline: 10px; }
  .site-head__in { gap: 6px; }
  .head-cta.btn { padding-inline: 6px; }
}
@media (min-width: 920px) { .head-cta { margin-inline-start: 0; } }

/* ─────────────────────────────────────────────────────────
   5. Кнопки. Жёлтый на почти чёрном — контраст 15:1.
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  border: 1px solid transparent; border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem; line-height: 1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--accent); color: #14140A; }
.btn--primary:hover { background: #FFEB4D; }
.btn--ghost { border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { min-height: 54px; padding: 0 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }
@media (min-width: 560px) { .btn--block { width: auto; } }

/* ─────────────────────────────────────────────────────────
   6. Первый экран
   ───────────────────────────────────────────────────────── */
.hero { padding-block: 44px 56px; }
@media (min-width: 720px) { .hero { padding-block: 78px 92px; } }

.badge {
  display: inline-block;
  font-size: var(--step--1); color: var(--accent);
  border: 1px solid var(--border); background: var(--surface);
  padding: 6px 14px; border-radius: 20px; margin: 0 0 20px;
}
.hero h1 { max-width: 15ch; }
.hero__sub { color: var(--muted); font-size: var(--step-1); max-width: 50ch; margin-top: 18px; }
.hero__actions { margin-top: 28px; }
.hero__note { margin-top: 14px; color: var(--muted); font-size: var(--step--1); }

/* ─────────────────────────────────────────────────────────
   7. «Почему переходят»
   ───────────────────────────────────────────────────────── */
.why h2 { max-width: 24ch; }
.why h2 span { display: block; color: var(--accent); }
.why__body { margin-top: 22px; }
.why__body p { color: var(--muted); }

/* ─────────────────────────────────────────────────────────
   8. Карточки продуктов. Имя, стена, наш ответ.
   ───────────────────────────────────────────────────────── */
.walls { margin-top: 26px; display: grid; gap: 14px; }
@media (min-width: 700px) { .walls { grid-template-columns: 1fr 1fr; } }

.wall {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.wall h3 {
  font-family: var(--font-display);
  margin: 0 0 12px; font-size: var(--step-2);
}
.wall__row { display: grid; gap: 3px; margin-bottom: 12px; }
.wall__row:last-child { margin-bottom: 0; }
.wall__label {
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.wall__row--them .wall__label { color: var(--wall); }
.wall__row--us .wall__label { color: var(--accent); }
.wall__row p { margin: 0; color: var(--muted); max-width: none; font-size: var(--step-0); }
.wall__row--us p { color: var(--text); }

/* Пятая карточка — правило, одинаковое везде. Занимает всю ширину ряда и
   помечена рамкой: домен обещает ответ там, где другие отказывают, и
   единственное исключение обязано стоять в том же ряду, а не в подвале. */
.wall--rule { border-color: var(--accent); }
@media (min-width: 700px) { .wall--rule { grid-column: 1 / -1; } }
.wall--rule h3 { color: var(--accent); font-size: var(--step-1); }

.walls__note {
  margin-top: 16px; color: var(--muted); font-size: var(--step--1);
  max-width: 70ch;
}

/* ─────────────────────────────────────────────────────────
   9. Вынос
   ───────────────────────────────────────────────────────── */
.emo { background: var(--surface); }
.emo h2 { max-width: 18ch; }
.emo p { color: var(--muted); margin-top: 12px; font-size: var(--step-1); }

/* ─────────────────────────────────────────────────────────
   10. Вопросы на <details> — без единой строки JS
   ───────────────────────────────────────────────────────── */
.faq { margin-top: 24px; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 56px; font-weight: 700; font-size: var(--step-0);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--accent); font-size: 1.4rem; line-height: 1;
  flex: 0 0 auto;
}
.faq details[open] summary::after { content: '−'; }
.faq p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* ─────────────────────────────────────────────────────────
   11. Финальный призыв
   ───────────────────────────────────────────────────────── */
.cta h2 { max-width: 18ch; }
.cta__sub { color: var(--muted); margin-top: 12px; }
.cta__actions { margin-top: 24px; }
.cta__note { margin-top: 14px; color: var(--muted); font-size: var(--step--1); }

/* ─────────────────────────────────────────────────────────
   12. Подвал
   ───────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--border); padding-block: 30px 38px; }
.site-foot__in { display: grid; gap: 20px; }
@media (min-width: 720px) {
  .site-foot__in { grid-template-columns: 1fr auto; align-items: start; }
}
/* Ссылки подвала — тап-таргеты: замер на первом домене показал 34-36px там,
   где правило про 44px было записано только для .btn. */
.foot-links { display: flex; flex-wrap: wrap; gap: 2px 22px; }
.foot-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--muted); text-decoration: none; font-size: .93rem;
}
.foot-links a:hover { color: var(--accent); }
.foot-links--legal a { font-size: .86rem; opacity: .82; }
.foot-links--legal a:hover { opacity: 1; }
.foot-note { color: var(--muted); font-size: var(--step--1); margin-top: 12px; }

.lang { display: inline-flex; align-items: center; gap: 8px; }
.lang select {
  font: inherit; font-size: .93rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 12px; min-height: 44px;
}

/* ─────────────────────────────────────────────────────────
   13. Форма поддержки
   ───────────────────────────────────────────────────────── */
.form { margin-top: 26px; display: grid; gap: 18px; max-width: 560px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: var(--step--1); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 12px 14px; min-height: 48px; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 150px; resize: vertical; }
.field__hint { color: var(--muted); font-size: var(--step--1); }
.form__foot { margin-top: 6px; }
.form__note { color: var(--muted); font-size: var(--step--1); margin-top: 10px; }
.form__err {
  border-inline-start: 3px solid var(--wall);
  padding: 10px 14px; background: var(--surface); margin-bottom: 16px;
  border-radius: 6px;
}
.form__ok { border: 1px solid var(--border); padding: 22px; background: var(--surface);
            border-radius: 12px; }

/* ─────────────────────────────────────────────────────────
   14. Юридические страницы
   ───────────────────────────────────────────────────────── */
.legal { padding-block: 34px 56px; }
.legal h1 { font-size: var(--step-3); }
.legal__updated { color: var(--muted); font-size: var(--step--1); }
.legal__sec h2 {
  font-size: var(--step-2); padding-top: 20px; margin-top: 28px;
  border-top: 1px solid var(--border);
}
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--accent); }
.legal ul { padding-inline-start: 20px; }
.legal li { margin-bottom: .5em; }
.legal__nav {
  display: flex; flex-wrap: wrap; gap: 2px 20px;
  margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border);
}
.legal__nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--muted); text-decoration: none; font-size: .89rem;
}
.legal__nav a:hover { color: var(--accent); }


/* ─────────────────────────────────────────────────────────
   Поле ввода в первом экране. Разговор начинается здесь.

   Цвета берутся из токенов бренда, поэтому один и тот же блок выглядит
   по-своему на каждом домене — отдельной вёрстки под каждый не нужно.

   ⚠️ Мобильный приоритет здесь не формальность: 73% кликов сетки —
   телефоны, и это первое, что человек трогает пальцем. Кнопка 48px,
   подсказки в одну колонку, на узком экране их две, а не четыре: четыре
   отжимают поле ниже сгиба.
   ───────────────────────────────────────────────────────── */
.entry { margin-top: 26px; }

.entry__label {
  margin: 0 0 10px;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.entry__chips { display: grid; gap: 8px; margin-bottom: 12px; }
@media (min-width: 640px) { .entry__chips { grid-template-columns: 1fr 1fr; } }

.chip {
  display: block; width: 100%; min-height: 48px;
  padding: 12px 14px;
  text-align: start;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit; font-size: var(--step--1); line-height: 1.35;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
/* Третья и четвёртая подсказки прячутся на узком экране: с ними поле ввода
   уходит под сгиб, а оно и есть цель первого экрана. */
@media (max-width: 639px) { .entry__chips > *:nth-child(n+3) { display: none; } }

.entry__form {
  display: flex; align-items: flex-end; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 14px;
  transition: border-color .15s ease;
}
.entry__form:focus-within { border-color: var(--accent); }

.entry__form textarea {
  flex: 1 1 auto; min-width: 0;
  border: 0; outline: none; resize: none;
  background: transparent; color: var(--text);
  font: inherit; line-height: 1.45;
  /* 16px обязательны: на iOS поле меньше 16px заставляет Safari
     масштабировать всю страницу при фокусе. */
  font-size: 16px;
  padding: 10px 0;
  /* ⚠️ 44px — не косметика, а правило тап-таргета. Замер на 320 и 360
     показал 43px: десяти пикселей отступа сверху и снизу плюс строка не
     хватало одного пикселя. Само поле и есть цель нажатия, попадать в него
     должно с первого раза. */
  min-height: 44px;
  max-height: 40vh;
}
.entry__form textarea::placeholder { color: var(--muted); opacity: 1; }

.entry__go {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 12px;
  background: var(--accent); color: var(--accent-ink, #fff);
  cursor: pointer;
  transition: filter .15s ease;
}
.entry__go:hover { filter: brightness(1.08); }
.entry__go svg { width: 22px; height: 22px; }

.entry__note { margin: 10px 0 0; color: var(--muted); font-size: var(--step--1); }


/* ── звёздочка «что нельзя» и её сноска ─────────────────────────────────────
   Обещание «без цензуры» ограничено явно и в одном клике от самого обещания:
   звёздочка у заголовка ведёт к сноске, сноска — на /restrictions. */
.nt-star {
  color: var(--accent); text-decoration: none; font-weight: 700;
  /* Верхний индекс: звёздочка не должна утяжелять строку заголовка. */
  font-size: .5em; vertical-align: super; line-height: 1;
  margin-inline-start: .12em;
}
.nt-star:hover { text-decoration: underline; }
.nt-note {
  max-width: var(--measure, 62ch);
  margin: 0 auto; padding: 0 0 28px;
  color: var(--muted); font-size: var(--step--1);
}
.nt-note a { color: var(--muted); }
.nt-note a:hover { color: var(--accent); }


.learn-sec { padding: 56px 0; border-top: 1px solid var(--border); }
.learn-sec__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin: 0 0 8px;
}
.learn-sec__head h2 { margin: 0; overflow-wrap: anywhere; }
.learn-sec__lead { color: var(--muted); margin: 0 0 20px; }

.learn-grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .learn-grid { grid-template-columns: 1fr 1fr; } }

/* 44px — минимальный тап-таргет: по мелким ссылкам пальцем промахиваются,
   и это уже чинили в подвале. */
.learn-card {
  display: flex; align-items: center; min-height: 44px;
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; color: var(--text); font-weight: 600; line-height: 1.35;
  transition: border-color .15s, background-color .15s;
}
.learn-card:hover { border-color: var(--accent); background: var(--surface); }

.learn-all {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--accent); text-decoration: none; font-weight: 600;
  font-size: .92rem; white-space: nowrap; flex-shrink: 0;
}
.learn-all:hover { text-decoration: underline; }

/* Ссылка на раздел в шапке. Показывается с той же ширины, что и остальная
   навигация: на узком экране шапку уже выносило за экран длинной подписью
   кнопки, второй элемент туда добавлять нельзя. */
.nav-learn { display: none; }
@media (min-width: 900px) { .nav-learn { display: inline-flex; } }

/* ── Страница материала /learn/<slug> ────────────────────────────────────
   ⚠️ Ширина и отступы берутся из общих `.wrap`/`.wrap--narrow`, а НЕ задаются
   заново. Первая версия content.php ставила свои max-width и padding, и
   страница материала не совпадала по колонке с главной: логотип уезжал к
   краю экрана, текст стоял по другой сетке. */
.doc { padding-block: 32px 64px; }
.doc h1 { margin: 0 0 12px; line-height: 1.15; }
.doc .meta { color: var(--muted); font-size: .9rem; margin: 0 0 24px; }
.doc .tldr {
  border-inline-start: 3px solid var(--accent);
  padding: 14px 18px; margin: 0 0 28px; background: var(--surface);
}
.doc h2 { margin: 32px 0 8px; line-height: 1.25; }
.doc p { margin: 0 0 14px; }
.doc details { border-top: 1px solid var(--border); padding: 12px 0; }
.doc details:last-of-type { border-bottom: 1px solid var(--border); }
.doc summary {
  cursor: pointer; font-weight: 600;
  min-height: 44px; display: flex; align-items: center;
}
.doc .cta-box {
  margin-top: 36px; padding: 22px; background: var(--surface); border-radius: 12px;
}
.doc .doc-back { margin-top: 28px; }

/* Хаб раздела: тот же список карточек, что на главной. */
.hub-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
@media (min-width: 640px) { .hub-list { grid-template-columns: 1fr 1fr; } }
.hub-list li { display: flex; }
.hub-list a {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 44px; width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; color: var(--text); font-weight: 600; line-height: 1.35;
  transition: border-color .15s, background-color .15s;
}
.hub-list a:hover { border-color: var(--accent); background: var(--surface); }
.hub-list p { margin: 6px 0 0; color: var(--muted); font-weight: 400; font-size: .92rem; }

/* Breadcrumbs. Small, quiet, and above the h1 - they orient rather than decorate.
   The separator is a plain slash so it needs no mirroring in RTL. */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin: 0 0 14px; font-size: .82rem; line-height: 1.5; color: var(--muted); }
/* Область касания 44px при прежнем виде. Замерено в браузере на 375px: сама
   ссылка крошки имеет высоту 21px — для пальца мало, а увеличивать шрифт
   нельзя, крошки должны оставаться тихими. Поэтому растёт только зона
   нажатия: padding даёт высоту, отрицательный margin возвращает раскладку
   на место, так что визуально не меняется ничего. */
.crumbs a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent;
  padding: 11px 0; margin: -11px 0; }
.crumbs a:hover { color: var(--text); border-bottom-color: var(--border); }
.crumbs [aria-current="page"] { color: var(--text); }
.crumbs-sep { opacity: .5; }
/* The hub description belongs to the card, not beside it: the link is the card. */
.hub-list a > p { margin: 6px 0 0; color: var(--muted); font-weight: 400; font-size: .92rem; }
