/* Шрифт со своего сервера: запрос к fonts.googleapis.com блокировал
   отрисовку почти на две секунды (DNS, TLS и еще один CSS по цепочке).
   Montserrat вариативный: файл честно содержит все веса от 400 до 800,
   поэтому браузер не подделывает жирность заголовков.
   swap: текст показывается сразу системным шрифтом, потом подменяется. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/mont-cyr-v2.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/mont-lat-v2.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Персональный лендинг на поддомене */
:root { --ink:#14161c; --muted:#6b7280; --accent:#0B347C; --accent-dark:#082558;
        --line:#e6e8f0; --bg-alt:#f5f6fb; }
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:Montserrat,-apple-system,BlinkMacSystemFont,sans-serif; color:var(--ink);
       line-height:1.55; background:#fff; }
.wrap { max-width:1180px; margin:0 auto; padding:0 40px; }
a { color:inherit; }

.nav { position:sticky; top:0; z-index:50; background:rgba(255,255,255,.92);
       backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
.nav-in { display:flex; align-items:center; gap:34px; height:70px; }
/* gap здесь нельзя: он раздвинул бы и «vizitka» с «.me», отступ дает сам знак */
.nav .who { display:inline-flex; align-items:center; font-weight:800;
             letter-spacing:-0.03em; font-size:18px; color:var(--ink);
             text-decoration:none; opacity:.9; transition:opacity .15s; }
.nav .who-mark { width:26px; height:26px; display:block; flex:0 0 auto; margin-right:9px; }
.nav .who span { color:var(--accent); }
.nav .who { cursor:default; }
.nav .links { display:flex; gap:26px; margin-left:auto; font-size:15px; font-weight:500; color:var(--muted); }
.nav .links a { text-decoration:none; }
.nav .links a:hover { color:var(--ink); }

/* Мессенджеры в шапке: в фирменных цветах, чтобы узнавались с одного взгляда */
.msgs { display:flex; gap:10px; margin-left:auto; }
.nav .links + .msgs { margin-left:26px; }
.msg { display:inline-flex; align-items:center; gap:8px; text-decoration:none;
       border-radius:10px; padding:10px 16px; font-size:14px; font-weight:600; color:#fff; }
.msg svg { width:17px; height:17px; fill:currentColor; }
.msg.wa { background:#25d366; }
.msg.tg { background:#2aabee; }
.msg:hover { opacity:.9; }

.btn { display:inline-block; background:var(--accent); color:#fff; text-decoration:none;
       font-weight:600; font-size:16px; padding:15px 30px; border-radius:10px; white-space:nowrap; }
.btn:hover { background:var(--accent-dark); }
.btn-out { background:transparent; color:var(--accent); box-shadow:inset 0 0 0 1.5px var(--accent); }
/* Свои состояния наведения обязательны: иначе общее правило .btn:hover
   заливает светлую кнопку темным, а текст остается синим и пропадает */
.btn-light { background:#fff; color:var(--accent); }
.btn-light:hover { background:#eef3fb; color:var(--accent); }
.btn-ghost { background:transparent; color:#fff; box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.5); }
.btn-ghost:hover { background:rgba(255,255,255,.12); color:#fff; box-shadow:inset 0 0 0 1.5px #fff; }
.btn-out:hover { background:#eef3fb; color:var(--accent); }

.hero { padding:80px 0 90px; }
.hero-in { display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.hero-in.solo { grid-template-columns:1fr; max-width:44em; }
.eyebrow { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:700;
           color:var(--accent); background:#eef3fb; border-radius:999px; padding:7px 14px; margin-bottom:22px; }
.eyebrow .vhex { width:15px; height:15px; }
h1 { font-size:64px; line-height:1.02; letter-spacing:-0.035em; font-weight:800; }
.hero .role { font-size:19px; color:var(--muted); margin-top:16px; font-weight:500; }
.hero .pitch { font-size:19px; line-height:1.6; margin-top:24px; max-width:32em; }
.hero-cta { display:flex; gap:12px; align-items:center; margin-top:34px; flex-wrap:wrap; }
.hero-note { font-size:14px; color:var(--muted); margin-top:16px; }
/* picture это строчный элемент без размеров: без этого картинка
   внутри получает нулевую ширину и блок остается пустым */

/* Картинки в picture: сама обертка задает пропорцию и скругление,
   img внутри просто заполняет ее. Иначе строчный picture схлопывается,
   а высота берется от разметки и кадр растягивается. */
picture { display:block; }
picture img { display:block; width:100%; height:100%; object-fit:cover; }

.portrait picture { width:100%; aspect-ratio:4/5; border-radius:20px; overflow:hidden;
                    box-shadow:0 30px 70px rgba(20,22,40,.18); }

.about-in picture { width:100%; aspect-ratio:1/1; border-radius:20px; overflow:hidden;
                    box-shadow:0 24px 60px rgba(20,22,40,.14); }

.int-play picture { width:100%; height:100%; }
.int-play picture img { opacity:.78; transition:opacity .2s, transform .3s; }
.int-play:hover picture img { opacity:.9; transform:scale(1.02); }

/* заглушка портрета: держит композицию, пока нет фотографии */
.portrait-ph { width:100%; aspect-ratio:4/5; border-radius:20px; display:flex;
               align-items:center; justify-content:center; color:#fff; font-weight:800;
               font-size:110px; letter-spacing:-0.04em;
               background:linear-gradient(140deg,var(--accent),#2a5cb8 65%,#3f7ad1);
               box-shadow:0 30px 70px rgba(20,22,40,.18); }

.stats { border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stats-in { display:grid; grid-template-columns:repeat(var(--n,4),1fr); }
.stat { padding:34px 0; }
.stat + .stat { border-left:1px solid var(--line); padding-left:34px; }
.stat b { display:block; font-size:40px; font-weight:800; letter-spacing:-0.03em; line-height:1; }
.stat span { font-size:15px; color:#454b5c; margin-top:8px; display:block; line-height:1.4; }

section { padding:90px 0; }
.alt { background:var(--bg-alt); }
.h2 { font-size:42px; line-height:1.1; letter-spacing:-0.03em; font-weight:800; max-width:22em; }
.lead { font-size:18px; color:var(--muted); margin-top:14px; max-width:44em; }
.head-row { display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:44px; }

.grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.topic { background:#fff; border-radius:18px; padding:30px 26px; box-shadow:0 10px 30px rgba(20,22,40,.06);
         display:block; text-decoration:none; }
.topic b { font-size:19px; font-weight:700; display:block; margin-bottom:8px; letter-spacing:-0.01em; }
.topic p { font-size:15px; color:var(--muted); }
.topic .link { display:inline-block; margin-top:14px; font-size:14px; font-weight:700; color:var(--accent); }
a.topic:hover { box-shadow:0 14px 38px rgba(20,22,40,.12); }
.topic .tag { font-size:12px; font-weight:700; color:var(--accent); background:#eef3fb;
              border-radius:999px; padding:5px 11px; display:inline-block; margin-bottom:14px; }
.topic .res { margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
              font-size:15px; font-weight:700; color:var(--accent); }

.price-list { display:grid; background:#fff; border-radius:20px; overflow:hidden;
              box-shadow:0 14px 40px rgba(20,22,40,.07); }
.price-row { display:grid; grid-template-columns:1fr auto; gap:26px; align-items:center;
             padding:26px 30px; border-bottom:1px solid var(--line); }
.price-row:last-child { border-bottom:none; }
.price-row b { font-size:19px; font-weight:700; letter-spacing:-0.01em; display:block; }
.price-row .meta { font-size:14px; color:var(--muted); margin-top:4px; }
.price-row .amount { font-size:22px; font-weight:800; letter-spacing:-0.02em; white-space:nowrap; }

/* видеоинтервью: крупный кадр рядом с текстом */
.int-in { display:grid; grid-template-columns:1fr 1.05fr; gap:50px; align-items:center; }
.int-kick { display:inline-block; font-size:13px; font-weight:700; letter-spacing:.04em;
            text-transform:uppercase; color:var(--accent); background:#eef3fb;
            padding:6px 13px; border-radius:999px; margin-bottom:18px; }
.int-txt .h2 { margin-bottom:14px; }
.int-ch { margin-top:18px; font-size:15px; font-weight:600; color:var(--accent); }
.int-play { position:relative; display:block; border-radius:20px; overflow:hidden;
            background:#0d1220; aspect-ratio:16/9; box-shadow:0 20px 50px rgba(20,22,40,.18); }
.int-play:hover img { opacity:.9; transform:scale(1.02); }
.int-play .play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.int-play .play i { width:74px; height:74px; border-radius:50%; background:rgba(255,255,255,.95);
                    display:flex; align-items:center; justify-content:center;
                    box-shadow:0 8px 26px rgba(0,0,0,.25); }
.int-play .play i::after { content:''; border-left:22px solid var(--accent);
                           border-top:13px solid transparent; border-bottom:13px solid transparent;
                           margin-left:6px; }

/* видеоотзывы и благодарности */
.vid { position:relative; border-radius:18px; overflow:hidden; background:#0d1220;
       aspect-ratio:16/11; box-shadow:0 12px 34px rgba(20,22,40,.12); display:block; text-decoration:none; }
.vid img { width:100%; height:100%; object-fit:cover; opacity:.62; display:block; }
.vid .play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.vid .play i { width:58px; height:58px; border-radius:50%; background:rgba(255,255,255,.92);
               display:flex; align-items:center; justify-content:center; }
.vid .play i::after { content:''; border-left:16px solid var(--accent);
                      border-top:10px solid transparent; border-bottom:10px solid transparent; margin-left:4px; }
.vid .cap { position:absolute; left:0; right:0; bottom:0; padding:16px 18px; display:block;
            background:linear-gradient(180deg,transparent,rgba(8,12,24,.85)); color:#fff; }
.vid .cap b { display:block; font-size:16px; }
.vid .cap span { font-size:13px; color:rgba(255,255,255,.75); }
.letters { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:24px; }
.letter { background:#fff; border-radius:14px; box-shadow:0 10px 30px rgba(20,22,40,.08); overflow:hidden; }
.letter img { width:100%; aspect-ratio:3/4; object-fit:cover; display:block; }
.letter .sheet { aspect-ratio:3/4; background:repeating-linear-gradient(0deg,#eef1f8 0 1px,#fff 1px 13px); }
.letter .nm { padding:12px 14px; font-size:13.5px; font-weight:600; }


/* Публикации: карточками, издание сверху, тема ниже. Годы убраны */
.media-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.media-card { display:block; background:#fff; border-radius:16px; padding:20px 22px;
              box-shadow:0 8px 26px rgba(20,22,40,.07); text-decoration:none;
              transition:box-shadow .15s, transform .15s; }
.media-card:hover { box-shadow:0 14px 34px rgba(20,22,40,.13); transform:translateY(-2px); }
.media-card .src { display:block; font-size:12px; font-weight:800; letter-spacing:.08em;
                   text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.media-card .mt { display:block; font-size:16px; font-weight:600; line-height:1.35; }

.hero-in.ph-left .portrait { order:-1; }
.hero-in.ph-short .portrait picture { aspect-ratio:1/1; }
/* при квадратном кадре режем снизу, а не по центру: голова остается целой */
.hero-in.ph-short .portrait img { object-position:50% 8%; }
/* зеркалим кадр, чтобы человек смотрел внутрь страницы, а не за ее край */
.hero-in.ph-flip .portrait img { transform:scaleX(-1); }
.about-in { display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:start; }
.about-in.solo { grid-template-columns:1fr; max-width:46em; }
.bio-body { margin-top:22px; }
.bio-body p { font-size:17px; line-height:1.65; margin-bottom:16px; color:#2c303c; }
.tl { margin-top:28px; display:grid; }
.about-side { display:grid; gap:20px; align-content:start; position:sticky; top:92px; }
.bio-shot { margin:32px 0; }
.bio-shot picture { width:100%; aspect-ratio:16/9; border-radius:18px; overflow:hidden;
                    display:block; background:var(--soft); }
.bio-shot img { width:100%; height:100%; object-fit:cover; display:block; }
.tl-row { display:grid; grid-template-columns:80px 1fr; gap:20px; padding:16px 0;
          border-top:1px solid var(--line); font-size:16px; }
.tl-row b { color:var(--accent); font-weight:800; }

.cta-box { background:var(--accent); color:#fff; border-radius:24px; padding:56px; text-align:center; }
.cta-box h2 { font-size:38px; line-height:1.1; letter-spacing:-0.03em; font-weight:800; }
.cta-box p { font-size:17px; color:rgba(255,255,255,.8); margin:14px auto 0; max-width:34em; }
.cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:30px; }

footer { background:var(--accent-dark); color:rgba(255,255,255,.75); padding:30px 0; font-size:14px; }
.foot-in { display:flex; justify-content:flex-end; }
.foot-in a { color:rgba(255,255,255,.75); text-decoration:none; }
.foot-in a:hover { color:#fff; }

/* Превью публикации: окно поверх страницы. Сначала человек убеждается,
   что материал настоящий, и только потом уходит на сайт издания */
.mp { position:fixed; inset:0; z-index:100; display:flex; align-items:center;
      justify-content:center; padding:20px; }
.mp[hidden] { display:none; }
.mp-back { position:absolute; inset:0; background:rgba(12,16,30,.62); backdrop-filter:blur(3px); }
.mp-box { position:relative; background:#fff; border-radius:20px; max-width:620px; width:100%;
          max-height:88vh; overflow:auto; box-shadow:0 30px 80px rgba(10,14,30,.35); }
.mp-x { position:absolute; top:12px; right:12px; z-index:2; width:36px; height:36px;
        border:none; border-radius:50%; background:rgba(255,255,255,.9); color:#14161c;
        font-size:24px; line-height:1; cursor:pointer; box-shadow:0 2px 10px rgba(0,0,0,.15); }
.mp-x:hover { background:#fff; }
.mp-img img { width:100%; display:block; max-height:320px; object-fit:cover; }
.mp-body { padding:24px 26px 26px; }
.mp-src { display:block; font-size:12px; font-weight:800; letter-spacing:.08em;
          text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.mp-title { font-size:22px; line-height:1.25; letter-spacing:-0.02em; font-weight:800; }
.mp-text { font-size:15.5px; line-height:1.55; color:#3c4152; margin-top:12px; }
.mp-acts { display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.mp-acts .btn { font-size:15px; padding:13px 22px; }

@media (max-width:600px) {
  .mp { padding:12px; }
  .mp-body { padding:20px; }
  .mp-title { font-size:19px; }
  .mp-acts .btn { flex:1 1 100%; text-align:center; }
}

.bio-h { font-size:21px; font-weight:800; letter-spacing:-0.02em; line-height:1.25;
         margin:36px 0 12px; color:var(--ink); }
.bio-body > .bio-h:first-child { margin-top:0; }
@media (max-width:600px) { .bio-h { font-size:19px; margin:28px 0 10px; } }

/* длинные слова вроде «Предпринимательство» не должны распирать страницу
   на узких экранах: заголовку разрешаем перенос внутри слова */
h1, .h2, .bio-h, .role { overflow-wrap:break-word; }

.cta-list { list-style:none; display:grid; grid-template-columns:1fr 1fr;
            grid-template-rows:auto auto; grid-auto-flow:column; gap:10px 28px;
            margin:22px auto 0; max-width:40em; text-align:left; }
.cta-list li { position:relative; padding-left:26px; font-size:15.5px; line-height:1.45;
               color:rgba(255,255,255,.9); }
.cta-list li::before { content:''; position:absolute; left:4px; top:.55em; width:7px; height:7px;
                       border-radius:50%; background:rgba(255,255,255,.55); }
@media (max-width:960px) {
  .cta-list { grid-template-columns:1fr; grid-template-rows:none;
              grid-auto-flow:row; gap:9px; max-width:none; }
  /* пункт должен читаться одной строкой: на узком экране жертвуем кеглем */
  .cta-list li { font-size:14.5px; padding-left:22px; }
  .cta-list li::before { left:2px; width:6px; height:6px; }
}
@media (max-width:365px) {
  /* на самых узких экранах ужимаем поля блока, чтобы пункт остался одной строкой */
  .cta-box { padding:28px 14px; }
  .cta-list li { font-size:12.5px; padding-left:18px; }
  .cta-list li::before { left:1px; width:5px; height:5px; top:.6em; }
}

/* биография и призыв идут встык: два отступа по 90px давали пустую полосу */
#about { padding-bottom:56px; }
#cta { padding-top:56px; }

@media (max-width:1100px) and (min-width:961px) {
  .media-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:960px) {
  .wrap { padding:0 20px; }
  .hero { padding:44px 0 52px; }
  .hero-in, .about-in { grid-template-columns:1fr; gap:32px; }
  .about-side { position:static; }
  /* на телефоне вертикаль дороже: между биографией и призывом хватает малого отступа */
  #about { padding-bottom:28px; }
  #cta { padding-top:28px; }
  .hero-in > *, .about-in > * { min-width:0; }
  /* на телефоне человека сначала видят, потом читают имя */
  .hero-in .portrait { order:-1; }
  h1 { font-size:38px; }
  .h2, .cta-box h2 { font-size:29px; }
  .hero .role { font-size:17px; }
  .hero .pitch { font-size:17px; }
  /* Цифры на телефоне по одной в строку: число слева, подпись справа.
     В две колонки подписи ломались на три строки и ряд плыл */
  .stats-in { grid-template-columns:1fr; }
  .stat + .stat { border-left:none; padding-left:0; }
  /* Колонка под число фиксированная: при auto подписи начинались
     на разном расстоянии, потому что «20+» и «с 2020» разной ширины */
  .stat { display:grid; grid-template-columns:6.2em 1fr; align-items:center; gap:14px;
          padding:15px 0; border-top:1px solid var(--line); }
  .stat b { font-size:30px; }
  .stat span { margin-top:0; font-size:14px; }
  section { padding:52px 0; }
  /* Одна колонка на телефоне: три карточки в ряд не помещались и
     вылезали за экран вместе с горизонтальным скроллом */
  .grid3, .media-grid { grid-template-columns:1fr; gap:14px; }
  .letters { grid-template-columns:repeat(2,1fr); }
  .media-card { padding:18px 20px; }
  .media-card .mt { font-size:15.5px; }
  .topic { padding:24px 22px; }
  .topic b { font-size:18px; }
  .int-in { grid-template-columns:1fr; gap:26px; }
  .price-row { grid-template-columns:1fr; gap:10px; padding:20px; }
  .cta-box { padding:30px 22px; }
  .head-row { flex-direction:column; align-items:flex-start; gap:18px; }
  .nav .links { display:none; }
  .msg span { display:none; }
  .msg { padding:13px 14px; min-height:44px; min-width:44px; justify-content:center; }
  .hero-cta .btn { flex:1 1 auto; text-align:center; }
}

/* ── Видео и разборы ─────────────────────────────────────────────────────
   Плитка ролика ведет на страницу с текстом внутри сайта, а не на YouTube:
   ролик там играет прямо на странице, а сайт получает внутренние ссылки. */
.vgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px 22px; }
.vcard { display:flex; flex-direction:column; text-decoration:none; color:inherit; }
.vsh { position:relative; display:block; border-radius:16px; overflow:hidden;
       background:#0d1220; aspect-ratio:16/9; }
.vsh picture, .vsh img { width:100%; height:100%; object-fit:cover; display:block; }
.vsh img { transition:transform .35s, opacity .2s; opacity:.92; }
.vcard:hover .vsh img { transform:scale(1.035); opacity:1; }
.vsh .play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.vsh .play i { width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,.94);
               display:flex; align-items:center; justify-content:center;
               box-shadow:0 6px 20px rgba(10,14,30,.3); transition:transform .2s; }
.vsh .play i::after { content:''; border-left:16px solid var(--accent);
                      border-top:10px solid transparent; border-bottom:10px solid transparent;
                      margin-left:5px; }
.vcard:hover .vsh .play i { transform:scale(1.08); }
.vtime { position:absolute; right:10px; bottom:10px; font-size:12.5px; font-weight:700;
         color:#fff; background:rgba(8,12,26,.78); border-radius:6px; padding:3px 7px; }
.vcard b { display:block; font-size:17px; font-weight:700; line-height:1.3;
           letter-spacing:-0.015em; margin-top:14px; }
.vcard:hover b { color:var(--accent); }
.vtx { display:block; font-size:14.5px; line-height:1.5; color:var(--muted); margin-top:7px; }

/* ── Страница разбора ──────────────────────────────────────────────────── */
.art, .art-list { padding:44px 0 80px; }
/* текст читается в узкой колонке, а список плиток на нее не налезает */
.art .wrap { max-width:860px; }
.art-list .a-lead { max-width:44em; }
.art-list .vgrid { margin-top:34px; }
.crumbs { display:flex; align-items:center; gap:9px; font-size:14px; color:var(--muted);
          margin-bottom:22px; flex-wrap:wrap; }
.crumbs a { text-decoration:none; color:var(--muted); }
.crumbs a:hover { color:var(--accent); }
.a-h1 { font-size:42px; line-height:1.12; letter-spacing:-0.03em; font-weight:800;
        overflow-wrap:break-word; }
.a-meta { display:flex; gap:18px; flex-wrap:wrap; font-size:14px; color:var(--muted);
          margin-top:16px; }
/* разделители точками убраны намеренно: на телефоне строка переносится,
   и точка уезжала в начало новой строки */
.a-player { position:relative; margin:30px 0 0; border-radius:18px; overflow:hidden;
            background:#0d1220; aspect-ratio:16/9; cursor:pointer; }
.a-player picture, .a-player img, .a-player iframe { width:100%; height:100%; display:block;
                                                     border:0; object-fit:cover; }
.a-player img { opacity:.9; transition:opacity .2s, transform .4s; }
.a-player:hover img { opacity:1; transform:scale(1.02); }
.a-player .play { position:absolute; inset:0; display:flex; align-items:center;
                  justify-content:center; border:none; background:none; cursor:pointer; }
.a-player .play i { width:76px; height:76px; border-radius:50%; background:rgba(255,255,255,.95);
                    display:flex; align-items:center; justify-content:center;
                    box-shadow:0 10px 30px rgba(10,14,30,.35); transition:transform .2s; }
.a-player .play i::after { content:''; border-left:23px solid var(--accent);
                           border-top:14px solid transparent; border-bottom:14px solid transparent;
                           margin-left:7px; }
.a-player:hover .play i { transform:scale(1.07); }
.a-lead { font-size:19.5px; line-height:1.6; margin-top:28px; color:#2a2f3d; font-weight:500; }
.a-body { font-size:17.5px; line-height:1.68; color:#22262f; }
.a-body h2 { font-size:29px; line-height:1.2; letter-spacing:-0.025em; font-weight:800;
             margin:44px 0 14px; }
.a-body h3 { font-size:21px; line-height:1.3; letter-spacing:-0.02em; font-weight:700;
             margin:32px 0 10px; }
.a-body p { margin-top:16px; }
.a-body a { color:var(--accent); font-weight:600; text-decoration:none;
            box-shadow:inset 0 -1px 0 rgba(11,52,124,.35); }
.a-body a:hover { box-shadow:inset 0 -2px 0 var(--accent); }
.a-body ul, .a-body ol { margin:16px 0 0 0; padding-left:0; list-style:none; }
.a-body ol { counter-reset:n; }
.a-body li { position:relative; padding-left:28px; margin-top:9px; }
.a-body ul li::before { content:''; position:absolute; left:7px; top:.72em; width:7px; height:7px;
                        border-radius:50%; background:var(--accent); }
.a-body ol li { counter-increment:n; }
.a-body ol li::before { content:counter(n); position:absolute; left:0; top:.05em;
                        font-weight:800; color:var(--accent); font-size:15px; }
.a-note { margin:26px 0 0; padding:20px 24px; background:var(--bg-alt); border-radius:14px;
          border-left:3px solid var(--accent); font-size:16.5px; line-height:1.6; color:#2a2f3d; }
/* минимум узкий намеренно: при 190px четыре плашки ломались на 3 плюс 1
   и ряд выглядел оборванным */
.a-facts { display:grid; grid-template-columns:repeat(auto-fit,minmax(165px,1fr)); gap:12px;
           margin-top:22px; }
.a-facts > div { background:#fff; border:1px solid var(--line); border-radius:14px;
                 padding:16px 18px; }
.a-facts span { display:block; font-size:13.5px; color:var(--muted); line-height:1.35; }
.a-facts b { display:block; font-size:19px; font-weight:800; letter-spacing:-0.02em;
             margin-top:6px; }
.a-author { display:flex; gap:20px; align-items:flex-start; margin-top:56px; padding-top:30px;
            border-top:1px solid var(--line); }
.a-ava { flex:0 0 auto; width:96px; }
.a-ava picture, .a-ava img { width:96px; height:96px; border-radius:50%; object-fit:cover;
                             display:block; }
.a-au-tx b { font-size:19px; font-weight:800; letter-spacing:-0.02em; }
.a-au-tx b a { color:inherit; text-decoration:none; }
.a-au-tx b a:hover { color:var(--accent); }
.a-au-tx p { font-size:16px; line-height:1.6; color:var(--muted); margin-top:8px; }
.a-au-btns { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.a-au-btns .btn { font-size:15px; padding:13px 22px; }

@media (max-width:960px) {
  .vgrid { grid-template-columns:repeat(2,1fr); gap:22px 18px; }
}
@media (max-width:600px) {
  /* одна колонка: две плитки в ряд на телефоне дают нечитаемые заголовки */
  .vgrid { grid-template-columns:1fr; gap:22px; }
  .art, .art-list { padding:26px 0 56px; }
  .a-h1 { font-size:29px; }
  .a-body { font-size:17px; }
  .a-body h2 { font-size:24px; margin:34px 0 12px; }
  .a-body h3 { font-size:19px; }
  .a-lead { font-size:18px; }
  .a-note { padding:18px 20px; font-size:16px; }
  .a-facts { grid-template-columns:1fr 1fr; gap:10px; }
  .a-facts > div { padding:14px 15px; }
  .a-facts b { font-size:17px; }
  .a-author { flex-direction:column; gap:16px; }
  .a-au-btns .btn { flex:1 1 auto; text-align:center; }
  .a-player .play i { width:60px; height:60px; }
  .a-player .play i::after { border-left-width:18px; border-top-width:11px;
                             border-bottom-width:11px; }
}
