@font-face {
  font-family: 'Benzin';
  src: url('../BenzinBold.woff2') format('woff2');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --bg: #04140b;
  --bg2: #081a10;
  --bg3: #0d2417;
  --bg4: #123522;
  --accent: #16a34a;
  --accent2: #22c55e;
  --gold: #facc15;
  --text: #e6f4ea;
  --text2: #7e9c88;
  --green: #00d46a;
  --red: #ff4455;
  --border: rgba(22,163,74,.15);
  --border2: rgba(255,255,255,.07);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.2; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
  background: rgba(4,20,11,.97);
  border-bottom: 1px solid var(--border2);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.logo { font-family: 'Benzin', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo span { color: var(--text); font-weight: 700; }
nav { display: flex; align-items: center; gap: 2px; }
nav a { color: var(--text2); font-size: .82rem; padding: 7px 10px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
nav a:hover { color: var(--text); background: var(--bg3); }
.btn-nav { background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; color: #fff !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px; box-shadow: 0 3px 12px rgba(22,163,74,.35); }
.btn-nav:hover { opacity: .9; color: #fff !important; }

/* Mobile nav */
.mob-btn { display: none; background: none; border: 1px solid var(--border2); border-radius: 8px; cursor: pointer; padding: 7px 9px; flex-direction: column; gap: 5px; }
.mob-btn span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; }
.mob-nav { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 200; flex-direction: column; padding: 70px 24px 32px; gap: 2px; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav a { color: var(--text); font-size: 1rem; padding: 13px 16px; border-radius: 10px; border-bottom: 1px solid var(--border2); }
.mob-nav a:hover { background: var(--bg2); }
.mob-nav .btn-nav { margin-top: 12px; padding: 15px 20px !important; font-size: 1.05rem !important; text-align: center; border-radius: 12px !important; }
.mob-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--text2); font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* Breadcrumb */
.breadcrumb { padding: 13px 0; font-size: .8rem; color: var(--text2); }
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: 'Benzin', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: 10px; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
.btn:hover { opacity: .9; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(22,163,74,.42); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #f59e0b); color: #04140b; box-shadow: 0 4px 16px rgba(250,204,21,.28); }
.btn-gold:hover { color: #04140b; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); box-shadow: none; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { font-size: 1.02rem; padding: 15px 32px; border-radius: 12px; }
.btn-xl { font-size: 1.18rem; padding: 17px 42px; border-radius: 14px; box-shadow: 0 6px 28px rgba(22,163,74,.4); }

/* HERO */
.hero { padding: 60px 0 52px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/banner-hero.png'); background-size: cover; background-position: center; opacity: .1; pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% -5%, rgba(22,163,74,.16) 0%, transparent 60%), radial-gradient(ellipse at 5% 110%, rgba(250,204,21,.07) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.28); color: var(--accent); font-size: .78rem; font-weight: 700; padding: 6px 13px; border-radius: 20px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.9rem); font-weight: 900; line-height: 1.12; color: #fff; margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 1rem; color: var(--text2); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; max-width: 640px; }
.hero-stat { flex: 1; padding: 16px 10px; text-align: center; border-right: 1px solid var(--border2); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-family: 'Benzin', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--gold); }
.hero-stat span { font-size: .73rem; color: var(--text2); }

/* SECTIONS */
.section { padding: 60px 0; }
.section-sm { padding: 44px 0; }
.section-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
h3 { font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: 7px; }

/* CARDS */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 14px; margin-top: 24px; }
.info-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; transition: border-color .2s, transform .2s; }
.info-card:hover { border-color: rgba(22,163,74,.35); transform: translateY(-2px); }
.info-card p { font-size: .85rem; color: var(--text2); line-height: 1.65; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 28px; }
.feature-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: rgba(22,163,74,.35); transform: translateY(-2px); }
.feature-icon { font-size: 1.85rem; margin-bottom: 12px; }
.feature-card p { font-size: .81rem; color: var(--text2); }

/* GAMES GRID */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; margin-top: 28px; }
.game-card { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg3); border: 1px solid var(--border2); cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.game-card:hover { transform: scale(1.04); border-color: var(--accent); box-shadow: 0 8px 24px rgba(22,163,74,.2); }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 55%, transparent 100%); opacity: 0; display: flex; align-items: flex-end; padding: 10px; transition: opacity .2s; }
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn { background: var(--accent); color: #fff; font-size: .73rem; font-weight: 700; padding: 5px 14px; border-radius: 6px; }
.game-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%); padding: 20px 8px 7px; font-size: .71rem; font-weight: 600; color: #fff; }
.game-badge { position: absolute; top: 6px; left: 6px; background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; text-transform: uppercase; }
.game-badge.hot { background: #e53935; }
.game-badge.new { background: #2196f3; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 28px; }
.step { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px 20px; }
.step-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border-radius: 50%; font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(22,163,74,.28); }
.step p { font-size: .84rem; color: var(--text2); }

/* RATING BARS */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.rating-label { width: 160px; font-size: .84rem; color: var(--text2); flex-shrink: 0; }
.rating-bar { flex: 1; height: 8px; background: var(--bg3); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 4px; }
.rating-val { width: 30px; font-size: .88rem; font-weight: 700; color: var(--gold); text-align: right; }

/* PROMO BANNER */
.promo-banner { background: linear-gradient(135deg, #160a00, #2a1200 50%, #160a00); border: 2px solid rgba(22,163,74,.38); border-radius: 16px; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.promo-banner h2 { color: var(--gold); margin-bottom: 8px; font-size: 1.3rem; }
.promo-banner p { color: var(--text2); font-size: .88rem; }

/* PROMO CODE */
.promo-box { display: inline-flex; align-items: stretch; background: var(--bg3); border: 2px solid var(--gold); border-radius: 10px; overflow: hidden; }
.promo-code { padding: 13px 20px; font-family: 'Benzin', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--gold); letter-spacing: .1em; }
.promo-copy-btn { padding: 13px 18px; background: var(--gold); color: #04140b; font-weight: 700; cursor: pointer; border: none; font-size: .86rem; transition: background .2s; }
.promo-copy-btn:hover { background: #f59e0b; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 5px; margin-top: 24px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(22,163,74,.28); }
.faq-q { padding: 17px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: .9rem; transition: color .2s; user-select: none; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 17px; color: var(--text2); font-size: .87rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 14px; margin-top: 28px; }
.review-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-family: 'Benzin', sans-serif; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; color: #fff; font-size: .88rem; }
.review-date { font-size: .73rem; color: var(--text2); }
.review-stars { color: var(--gold); font-size: .86rem; margin-bottom: 10px; }
.review-text { font-size: .86rem; color: var(--text2); line-height: 1.65; }

/* TOP PICK CARD */
.top-card { background: var(--bg2); border: 2px solid rgba(250,204,21,.4); border-radius: 16px; padding: 28px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.top-card-left { flex: 1; min-width: 220px; }
.top-card-right { flex: 1; min-width: 220px; }
.casino-name-big { font-family: 'Benzin', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 7px; }
.stars-line { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: .74rem; font-weight: 600; }
.tag.g { background: rgba(0,212,106,.1); color: var(--green); border: 1px solid rgba(0,212,106,.18); }
.tag.o { background: rgba(22,163,74,.1); color: var(--accent); border: 1px solid rgba(22,163,74,.2); }
.tag.y { background: rgba(250,204,21,.1); color: var(--gold); border: 1px solid rgba(250,204,21,.18); }
.bonus-card { background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.2); border-radius: 10px; padding: 15px 18px; margin-bottom: 16px; }
.bonus-card span { font-size: .78rem; color: var(--text2); display: block; }
.bonus-card strong { font-family: 'Benzin', sans-serif; font-size: 1.45rem; color: var(--gold); display: block; margin: 4px 0; }

/* UTILS */
.green { color: var(--green); }
.gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* TABLE */
.table-wrap { overflow-x: auto; margin-top: 24px; }
table.data { width: 100%; border-collapse: collapse; min-width: 480px; }
table.data th { background: var(--bg3); padding: 11px 14px; text-align: left; font-size: .76rem; color: var(--text2); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border2); white-space: nowrap; }
table.data td { padding: 13px 14px; border-bottom: 1px solid var(--border2); font-size: .87rem; vertical-align: middle; }
table.data tr.highlight td { background: rgba(22,163,74,.05); }
table.data tr:hover td { background: var(--bg3); }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border2); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: .82rem; color: var(--text2); margin-bottom: 14px; line-height: 1.6; }
.footer-disclaimer { font-size: .75rem; color: var(--text2); line-height: 1.55; }
.footer-col h4 { color: #fff; font-size: .86rem; font-weight: 700; margin-bottom: 13px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: var(--text2); font-size: .82rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 38px 0 34px; }
  .hero h1 { font-size: 1.52rem; }
  .hero-stats { flex-wrap: wrap; max-width: 100%; }
  .hero-stat { flex: 0 0 50%; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border2); }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border2); }
  .section { padding: 42px 0; }
  .section-sm { padding: 30px 0; }
  .steps { grid-template-columns: 1fr; }
  .promo-banner { padding: 22px 18px; flex-direction: column; }
  .top-card { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border2) !important; }
  .hero-stat:last-child { border-bottom: none !important; }
  .btn-xl { font-size: .98rem; padding: 14px 26px; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}


/* Иллюстрации внутри разделов: своя генерация, не стоки и не арт казино */
.section-img{
  float:right; width:min(320px,42%); margin:0 0 20px 28px;
  border-radius:var(--radius); border:1px solid var(--border);
  box-shadow:0 12px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.12);
}
@media(max-width:720px){
  .section-img{float:none; width:100%; max-width:420px; margin:0 auto 22px;}
}
.hero-bg{
  background-image:url('../images/hero-bg.webp');
  background-size:cover; background-position:center;
  opacity:.28;
}


/* ============================================================
   МОБИЛЬНОЕ МЕНЮ — исправления
   ============================================================ */

/* Блокировка прокрутки под открытым меню.
   overflow:hidden на body в Safari iOS не держит — страница продолжает
   уезжать под оверлеем. Работает только фиксация; позицию сохраняет и
   возвращает скрипт через inline top. */
body.nav-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.mob-nav {
  /* Отступ под «чёлку» и нижнюю полосу жестов на iPhone */
  padding: max(70px, calc(env(safe-area-inset-top) + 62px)) 20px
           max(28px, calc(env(safe-area-inset-bottom) + 20px));
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;   /* прокрутка меню не «протекает» на страницу */
}

/* Крестик: было 1.5rem без габаритов — пальцем не попасть.
   Минимум 44×44 по рекомендации к размеру точки касания. */
.mob-close {
  top: max(14px, env(safe-area-inset-top));
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  z-index: 2;
}
.mob-close:hover, .mob-close:focus-visible { color: var(--text); background: var(--bg4); }

/* Пункты меню тоже до 44 px по высоте */
.mob-nav a { min-height: 44px; display: flex; align-items: center; }

/* Бургер — те же 44×44 */
.mob-btn { width: 44px; height: 44px; align-items: center; justify-content: center; }

/* Текущая страница видна и в шапке, и в меню */
nav a[aria-current="page"] { color: var(--gold); background: var(--bg3); }
.mob-nav a[aria-current="page"] { color: var(--gold); background: var(--bg2); }

/* Видимый фокус с клавиатуры — раньше обводки не было нигде */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Ссылок в шапке стало девять: до 1024 px они уже не помещаются
   и наезжают на логотип. Переключаемся на бургер раньше. */
@media (max-width: 1024px) {
  nav { display: none; }
  .mob-btn { display: flex; }
}

/* Страховка от горизонтального выезда.
   ВАЖНО: именно clip, а не hidden. overflow-x:hidden на html/body делает
   их скролл-контейнером, и position:sticky у шапки перестаёт работать —
   шапка уезжает вместе со страницей. clip обрезает, но контейнер не создаёт.
   Сами причины выезда устранены выше, это только подстраховка. */
body { overflow-x: clip; }
img, table, pre, video, iframe { max-width: 100%; }

/* Длинный текст на кнопках («Зарегистрироваться с кодом VOVA») при
   white-space:nowrap растягивал кнопку до 427 px — на экране 375 правый
   край с частью надписи уезжал за границу. Разрешаем перенос. */
@media (max-width: 620px) {
  .btn, .btn-lg, .btn-xl, .btn-nav {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
  }
  .btn-lg  { padding: 13px 18px; font-size: .95rem; }
  .btn-xl  { padding: 14px 18px; font-size: .98rem; }
}

/* Подсказка, что таблицу можно листать вбок: иначе на телефоне
   не видно, что справа есть ещё колонки. */
.table-wrap { position: relative; }
.table-wrap::after {
  content: "";
  position: absolute; top: 0; right: 0; width: 26px; height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4,20,11,0), rgba(4,20,11,.92));
  opacity: 0; transition: opacity .2s;
}
@media (max-width: 768px) { .table-wrap::after { opacity: 1; } }

/* ============================================================
   РАЗМЕР ТОЧЕК КАСАНИЯ НА ТЕЛЕФОНЕ
   Ссылки в подвале были высотой 17 px, кнопки «Играть» на карточках — 29.
   В такие попадают через раз, особенно большим пальцем на ходу.
   Минимум 44 px — тот размер, при котором промахов почти не остаётся.
   ============================================================ */
@media (max-width: 768px) {
  .footer-col li a,
  .footer-col a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 2px 0;
  }
  .game-play-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-left: 18px; padding-right: 18px; }
  .logo { min-height: 44px; }
  /* Между соседними ссылками нужен зазор, иначе увеличенные зоны
     касания слипаются и палец попадает в соседнюю. */
  .footer-col li + li { margin-top: 2px; }
}

/* Хлебные крошки: ссылки были высотой 17 px. Даём габарит, а отступ
   самой полосы уменьшаем, чтобы она не стала вдвое толще.
   Ссылки внутри абзацев намеренно НЕ трогаем: они в потоке текста,
   увеличение габарита разорвёт межстрочный интервал, и правила
   размера точки касания на такие ссылки не распространяются. */
@media (max-width: 768px) {
  .breadcrumb { padding: 2px 0; }
  .breadcrumb a { display: inline-flex; align-items: center; min-height: 42px; }
}
