/* ============================================================
   «Вердиктъ» — редакционная дизайн-система
   Тёплая бумага, глубокий изумруд, золото, серифные заголовки.
   Совсем другой визуальный язык: линейки и рамки вместо теней-градиентов.
   ============================================================ */

:root {
  --paper:       #f5f1e8;   /* фон страницы — тёплая бумага */
  --paper-tint:  #efe9db;
  --surface:     #fffdf8;   /* карточки */
  --ink:         #21201b;   /* основной текст */
  --ink-soft:    #5f584c;
  --ink-faint:   #8a8172;
  --line:        #e0d8c6;
  --line-strong: #cabfa6;

  --forest:      #14503c;   /* фирменный изумруд */
  --forest-dk:   #0e3a2b;
  --forest-tint: #e3ede7;
  --gold:        #b0812a;   /* акцент-золото */
  --gold-dk:     #8f6716;
  --gold-tint:   #f2e7c9;
  --brick:       #9d3320;   /* негатив / опасность */
  --brick-tint:  #f3ddd6;

  --good: #1f6b45;
  --mid:  #a9791b;
  --bad:  #9d3320;

  --radius:    5px;
  --radius-lg: 8px;
  --maxw: 1140px;

  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans:  'PT Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  /* тонкая бумажная фактура из повторяющейся линейки */
  background-image: linear-gradient(var(--paper-tint) 1px, transparent 1px);
  background-size: 100% 34px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; line-height: 1.16; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold-dk); text-decoration: underline; text-underline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

.muted { color: var(--ink-soft); }
.hidden { display: none !important; }
.mt { margin-top: 18px; }
.inline-form { display: inline; }
.link-btn { background: none; border: 0; color: var(--forest); font: inherit; cursor: pointer; padding: 0; text-decoration: underline; }
.req { color: var(--brick); }

/* ---------- Кнопки: строгие, почти прямоугольные ---------- */
.btn {
  --b: var(--forest);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--radius); cursor: pointer;
  border: 1.5px solid var(--b); background: var(--b); color: #fdfbf4;
  text-decoration: none; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; color: #fff; background: var(--forest-dk); border-color: var(--forest-dk); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { --b: var(--forest); }
.btn-sm { padding: 8px 14px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-danger { --b: var(--brick); background: var(--brick); }
.btn-danger:hover { background: #7f2818; border-color: #7f2818; }
.btn-outline { background: transparent; color: var(--forest); }
.btn-outline:hover { background: var(--forest-tint); color: var(--forest-dk); border-color: var(--forest); }
.btn-light { --b: var(--gold-tint); background: var(--gold-tint); color: var(--forest-dk); border-color: var(--gold-tint); }
.btn-light:hover { background: #fff; color: var(--forest-dk); border-color: #fff; }
.btn-outline-light { background: transparent; color: #f3ecd8; border-color: rgba(243,236,216,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ---------- Шапка: серифный логотип, линейка снизу ---------- */
.site-header { background: var(--surface); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 40; }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-mark { display: inline-flex; }
.logo-text { font-family: var(--serif); font-weight: 900; font-size: 1.7rem; color: var(--ink); letter-spacing: -.02em; }
.logo-text em { font-style: normal; color: var(--forest); }

.header-search { flex: 1; max-width: 420px; display: flex; }
.header-search input {
  flex: 1; border: 1.5px solid var(--line-strong); border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius); padding: 10px 14px; font: inherit; background: var(--paper);
}
.header-search input:focus { outline: none; border-color: var(--forest); }
.header-search button {
  border: 1.5px solid var(--forest); background: var(--forest); color: #fff; cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0; padding: 0 15px; font-size: 1rem;
}
.header-search button:hover { background: var(--forest-dk); }

.header-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.header-nav > a { font-weight: 700; font-size: .96rem; color: var(--ink); position: relative; }
.header-nav > a:hover { color: var(--forest); text-decoration: none; }
.header-nav > a.active { color: var(--forest); }
/* кнопка в меню — цвет кнопки, а не пункта меню (иначе тёмный текст на тёмной кнопке) */
.header-nav > a.btn { color: #fdfbf4; }
.header-nav > a.btn:hover { color: #fff; }
.header-nav > a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); }
.nav-blacklist { color: var(--brick) !important; }
.nav-admin { color: var(--gold-dk) !important; }
.nav-badge { display: inline-block; min-width: 19px; height: 19px; padding: 0 5px; margin-left: 4px; border-radius: 10px; background: var(--brick); color: #fff; font-size: .72rem; line-height: 19px; text-align: center; }
.nav-user { display: inline-flex; align-items: center; gap: 8px; }
.header-cta { flex-shrink: 0; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .2s; }

/* ---------- Аватары и монограммы ---------- */
.avatar, .company-logo {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--serif); font-weight: 800; color: #fff;
  background: hsl(var(--hue, 150) 38% 32%);
  border-radius: 3px;
}
.avatar-sm, .company-logo-sm { width: 34px; height: 34px; font-size: .95rem; }
.avatar-lg { width: 60px; height: 60px; font-size: 1.5rem; border-radius: 4px; }
.company-logo-lg { width: 70px; height: 70px; font-size: 1.9rem; border-radius: 4px; }

/* ---------- Флеш-сообщения ---------- */
.flash { margin: 18px 0; padding: 13px 18px; border-radius: var(--radius); border-left: 4px solid var(--forest); background: var(--forest-tint); color: var(--forest-dk); }
.flash-ok { border-left-color: var(--forest); background: var(--forest-tint); }
.flash-warn { border-left-color: var(--gold); background: var(--gold-tint); color: var(--gold-dk); }
.flash-err { border-left-color: var(--brick); background: var(--brick-tint); color: #7f2818; }

.site-main { min-height: 60vh; }

/* ---------- Звёзды и «вердикт»-оценки ---------- */
.stars { display: inline-flex; gap: 1px; font-size: 1.02rem; letter-spacing: 1px; color: var(--line-strong); }
.stars .star.on { color: var(--gold); }
.rating-good { color: var(--good); }
.rating-mid  { color: var(--mid); }
.rating-bad  { color: var(--bad); }
.rating-none { color: var(--ink-faint); }

/* ============================================================
   ГЛАВНАЯ — редакционный масштаб
   ============================================================ */
.hero { background: var(--forest); color: #f2ecd9; border-bottom: 6px solid var(--gold); background-image: none; }
.hero .container { padding-top: 54px; padding-bottom: 54px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .95fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-tint); border: 1px solid rgba(240,231,201,.4); padding: 5px 12px; border-radius: 2px; margin-bottom: 20px; }
.hero h1 { color: #fffdf6; font-size: 3.1rem; margin-bottom: .35em; }
.hero-sub { font-size: 1.12rem; color: #ddd3bb; max-width: 34em; }
.hero-search { display: flex; gap: 10px; margin: 26px 0 18px; max-width: 480px; }
.hero-search input { flex: 1; border: 1.5px solid transparent; border-radius: var(--radius); padding: 14px 16px; font: inherit; background: #fffdf8; color: var(--ink); }
.hero-search input:focus { outline: none; border-color: var(--gold); }
.hero-search .btn { --b: var(--gold); background: var(--gold); border-color: var(--gold); color: #2a1e05; }
.hero-search .btn:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }
.hero-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 6px; font-size: .9rem; }
.hero-chips-label { color: #c9bfa5; }
.hero-chip { color: #f2ecd9; border-bottom: 1px dotted rgba(242,236,217,.5); }
.hero-chip:hover { color: #fff; border-color: #fff; text-decoration: none; }
.hero-stats { display: flex; gap: 34px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(240,231,201,.25); }
.hero-stats b { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold-tint); }
.hero-stats span { font-size: .84rem; color: #c9bfa5; }

/* правая колонка — «вырезка» с верхним отзывом, как заметка в газете */
.hero-cards { position: relative; }
.hero-card { display: block; background: #fffdf8; color: var(--ink); border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: 3px; padding: 20px 22px; }
.hero-card:hover { text-decoration: none; transform: translateY(-2px); transition: transform .15s; }
.hero-card-back { position: absolute; inset: 16px -14px -16px 20px; z-index: -1; opacity: .5; transform: rotate(1.5deg); }
.hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-card-company { font-weight: 700; }
.hero-card-title { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; margin: 8px 0 4px; }
.hero-card-body { color: var(--ink-soft); font-size: .95rem; }
.hero-card-meta { font-size: .82rem; color: var(--ink-faint); }

/* ---------- Секции ---------- */
.section { padding: 48px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.section-head h2 { margin: 0; }
.section-head h2::before { content: '§ '; color: var(--gold); font-size: .8em; }

.feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Карточка отзыва ---------- */
.review-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--forest); border-radius: 3px; padding: 22px 24px; display: flex; flex-direction: column; }
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.company-chip, .user-chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); }
.company-chip:hover, .user-chip:hover { color: var(--forest); text-decoration: none; }
.review-card-title { font-size: 1.28rem; margin: 4px 0 10px; }
.review-card-title a { color: var(--ink); }
.review-card-title a:hover { color: var(--forest); text-decoration: none; }
.review-card-body { color: var(--ink-soft); margin: 0 0 14px; }
.review-card-body-full p { margin: 0 0 .8em; color: var(--ink); }
.review-card-pros, .review-card-cons { font-size: .95rem; margin: 4px 0; }
.review-card-pros { color: var(--good); }
.review-card-cons { color: var(--brick); }
.review-card-photos { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 12px; }
.review-card-photo { width: 92px; height: 92px; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); display: block; }
.review-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card-photo-more { display: flex; align-items: center; justify-content: center; background: var(--paper-tint); color: var(--ink-soft); font-weight: 700; }
.review-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); font-size: .84rem; color: var(--ink-faint); }
.rec-yes { color: var(--good); font-weight: 700; }
.rec-no { color: var(--brick); font-weight: 700; }

.empty-state { text-align: center; padding: 40px; color: var(--ink-soft); background: var(--surface); border: 1px dashed var(--line-strong); border-radius: var(--radius); }

/* ---------- Плашка «оставьте отзыв» ---------- */
.cta-band { background: var(--ink); color: #efe9db; background-image: none; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { color: #fffdf6; }
.cta-inner p { color: #c9c1b0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Хлебные крошки ---------- */
.breadcrumbs { font-size: .86rem; color: var(--ink-faint); padding: 18px 0 4px; }
.breadcrumbs a { color: var(--ink-soft); }

/* ============================================================
   СТРАНИЦА КОМПАНИИ
   ============================================================ */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.company-hero { display: grid; grid-template-columns: 1fr 300px; gap: 0; overflow: hidden; padding: 0; }
.company-hero-main { padding: 28px 30px; }
.company-hero-main > span.company-logo-lg { float: left; margin: 4px 18px 8px 0; }
.company-hero-main h1 { font-size: 2rem; }
.company-req { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 8px 0; font-size: .95rem; }
.company-req.muted { font-size: .9rem; }
.company-desc { clear: both; margin-top: 14px; color: var(--ink-soft); }
.company-phones { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 14px; font-size: .92rem; clear: both; }
.company-phone { display: inline-block; padding: 4px 12px; border: 1px solid var(--forest); border-radius: 2px; color: var(--forest); font-weight: 700; }
.company-phone:hover { background: var(--forest); color: #fff; text-decoration: none; }

.company-hero-side { background: var(--forest); color: #f2ecd9; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.big-rating { text-align: center; }
.big-rating b { font-family: var(--serif); font-size: 3.4rem; line-height: 1; display: block; color: #fffdf6; }
.big-rating.rating-good b { color: #bfe6cf; }
.big-rating.rating-mid b { color: var(--gold-tint); }
.big-rating.rating-bad b { color: #f0c3b7; }
.big-rating .stars { font-size: 1.15rem; color: rgba(242,236,217,.4); }
.big-rating .stars .star.on { color: var(--gold); }
.big-rating .muted { color: #c9bfa5 !important; display: block; margin-top: 4px; }
.rec-pct { display: block; margin-top: 6px; font-weight: 700; color: #bfe6cf; }
.breakdown { display: flex; flex-direction: column; gap: 6px; }
.breakdown-row { display: grid; grid-template-columns: 26px 1fr 28px; align-items: center; gap: 8px; font-size: .84rem; color: #d9d0bb; }
.bar { height: 7px; background: rgba(242,236,217,.18); border-radius: 4px; overflow: hidden; }
.bar-fill { display: block; height: 100%; background: var(--gold); }
.company-hero-side .btn { --b: var(--gold); background: var(--gold); border-color: var(--gold); color: #2a1e05; }
.company-hero-side .btn:hover { background: #fffdf8; border-color: #fffdf8; color: var(--forest-dk); }

.company-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; margin: 30px 0; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; border-bottom: 2px solid var(--ink); padding-bottom: 10px; }
.toolbar h2 { margin: 0; }
.sort-tabs { display: flex; flex-wrap: wrap; gap: 4px; }
.sort-tabs a { font-size: .88rem; font-weight: 700; padding: 6px 12px; border-radius: 2px; color: var(--ink-soft); }
.sort-tabs a:hover { background: var(--paper-tint); text-decoration: none; }
.sort-tabs a.active { background: var(--forest); color: #fff; }
.review-stack { display: flex; flex-direction: column; gap: 18px; }

.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { padding: 20px; }
.sidebar-card h3 { font-size: 1.05rem; border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 12px; }
.sidebar-company { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.sidebar-company:last-child { border-bottom: 0; }
.sidebar-company b { display: block; font-family: var(--sans); font-size: .95rem; }
.sidebar-company:hover { text-decoration: none; }

.blacklist-banner { border-left-width: 5px; }

/* Галерея фото из отзывов — лента-«полоса» */
.gallery-carousel { margin-top: 18px; clear: both; max-width: 620px; }
.gallery-carousel-title { font-size: 1rem; margin-bottom: 10px; }
.gallery-carousel-wrap { position: relative; }
.company-gallery { display: flex; gap: 10px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.company-gallery::-webkit-scrollbar { height: 6px; }
.company-gallery::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.company-gallery-item { flex: 0 0 116px; width: 116px; height: 116px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; scroll-snap-align: start; }
.company-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.company-gallery-item:hover img { transform: scale(1.06); }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--forest); background: #fffdf8; color: var(--forest); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.gallery-arrow:hover { background: var(--forest); color: #fff; }
.gallery-arrow[hidden] { display: none; }
.gallery-arrow-prev { left: -12px; }
.gallery-arrow-next { right: -12px; }
.gallery-carousel-static .company-gallery { overflow: visible; flex-wrap: wrap; padding-bottom: 0; }

/* ============================================================
   СТРАНИЦА ОТЗЫВА
   ============================================================ */
.review-full { display: flex; flex-direction: column; gap: 0; }
.review-page-h1 { font-size: 1.5rem; color: var(--ink-soft); font-family: var(--sans); font-weight: 700; }
.review-full-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.review-full-score { font-family: var(--serif); font-size: 2rem; font-weight: 800; }
.review-full-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 800; margin: 6px 0 16px; }
.review-full-body { font-size: 1.08rem; line-height: 1.72; }
.review-full-body p { margin: 0 0 1em; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.pros, .cons { padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--line); }
.pros { background: var(--forest-tint); border-left: 3px solid var(--good); }
.cons { background: var(--brick-tint); border-left: 3px solid var(--brick); }
.review-photos { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.review-photo { width: 150px; height: 150px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }

.company-chip-big { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin: 20px 0; }
.company-chip-cta { margin-left: auto; }
.company-banner { background: var(--forest); color: #f2ecd9; border-radius: var(--radius); padding: 26px; margin: 24px 0; background-image: none; }
.company-banner-main h3 { color: #fffdf6; }
.company-banner-rating { font-family: var(--serif); font-size: 2rem; color: var(--gold-tint); }
.company-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.review-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.vote-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1.5px solid var(--forest); background: transparent; color: var(--forest); border-radius: var(--radius); font-weight: 700; cursor: pointer; }
.vote-btn.voted, .vote-btn:hover { background: var(--forest); color: #fff; }
.vote-count { font-variant-numeric: tabular-nums; }

.comments-card { margin: 24px 0; }
.comment { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.comment:last-child { border-bottom: 0; }
.comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: .9rem; }
.comment-form { margin-top: 18px; }
.complaint-toggle { font-size: .86rem; color: var(--ink-faint); }
.complaint-form { margin-top: 12px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-tint); }

/* ============================================================
   ФОРМЫ
   ============================================================ */
.form-card { max-width: 760px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field > span { font-weight: 700; font-size: .95rem; }
.field input[type=text], .field input[type=email], .field input[type=search], .field input[type=password],
.field textarea, .field select, input[type=text], input[type=email], input[type=password], textarea, select {
  font: inherit; padding: 11px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  background: var(--surface); color: var(--ink); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--forest); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-invalid input, .field-invalid textarea { border-color: var(--brick); background: var(--brick-tint); }
.field-err { color: var(--brick); font-size: .85rem; }
.char-counter { font-size: .82rem; color: var(--ink-faint); text-align: right; }
.form-note { font-size: .88rem; color: var(--ink-soft); }
.form-divider { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.page-head { margin: 24px 0 8px; }
.page-desc { color: var(--ink-soft); margin-bottom: 20px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check-label { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.check-label input { width: auto; }
.file-input { font: inherit; }

/* Ввод оценки звёздами */
.star-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; font-size: 2rem; }
.star-input input { position: absolute; opacity: 0; width: 0; }
.star-input label { color: var(--line-strong); cursor: pointer; transition: color .1s; }
.star-input label:hover, .star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--gold); }

/* ============================================================
   КАТАЛОГ / РЕЙТИНГ / ЧС / ПОИСК
   ============================================================ */
.company-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.company-list-wide { grid-template-columns: 1fr; }
.company-card { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.company-card:hover { border-color: var(--forest); text-decoration: none; }
.company-card-info { flex: 1; min-width: 0; }
.company-card-name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.company-card-legal { font-size: .85rem; color: var(--ink-faint); }
.company-card-rating { text-align: right; flex-shrink: 0; }
.company-card-rating b { font-family: var(--serif); font-size: 1.5rem; display: block; }
.plain-list { display: flex; flex-direction: column; gap: 12px; }

.rating-table { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.rating-row { display: grid; grid-template-columns: 44px 40px 1fr auto; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.rating-row:last-child { border-bottom: 0; }
.rating-row:hover { background: var(--paper-tint); text-decoration: none; }
.rating-pos { font-family: var(--serif); font-size: 1.4rem; font-weight: 800; color: var(--line-strong); text-align: center; }
.rating-pos.top { color: var(--gold); }
.rating-name { min-width: 0; }
.rating-name b { font-family: var(--serif); font-size: 1.1rem; display: block; }
.rating-score { text-align: right; }
.rating-score b { font-family: var(--serif); font-size: 1.5rem; }

.blacklist-note { color: var(--brick); font-size: .9rem; margin-top: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

/* Бейджи */
.badge { display: inline-block; padding: 2px 9px; border-radius: 2px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-mod { background: var(--gold-tint); color: var(--gold-dk); }
.badge-pending { background: var(--gold-tint); color: var(--gold-dk); }
.badge-rejected { background: var(--brick-tint); color: #7f2818; }

/* ============================================================
   ОШИБКА / ТЕКСТОВЫЕ СТРАНИЦЫ
   ============================================================ */
.error-wrap { text-align: center; padding: 90px 20px; }
.error-code { font-family: var(--serif); font-size: 6rem; font-weight: 900; color: var(--forest); line-height: 1; }
.text-page { max-width: 760px; margin: 0 auto; padding: 30px 0 60px; }
.text-page h1 { border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.text-page h2 { margin-top: 1.4em; }

/* ============================================================
   ПРОФИЛЬ / АВТОРИЗАЦИЯ
   ============================================================ */
.auth-wrap { max-width: 440px; margin: 50px auto; }
.auth-card { padding: 32px; }
.auth-alt { text-align: center; margin-top: 16px; font-size: .9rem; }
.profile-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.profile-layout { display: grid; grid-template-columns: 1fr 280px; gap: 30px; }
.profile-stats { display: flex; gap: 24px; }
.profile-stats b { font-family: var(--serif); font-size: 1.6rem; display: block; }

/* ============================================================
   АДМИНКА
   ============================================================ */
.admin-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 24px; border-bottom: 2px solid var(--ink); }
.admin-tabs a { padding: 10px 16px; font-weight: 700; font-size: .92rem; color: var(--ink-soft); border-bottom: 3px solid transparent; margin-bottom: -2px; }
.admin-tabs a:hover { color: var(--forest); text-decoration: none; }
.admin-tabs a.active { color: var(--forest); border-bottom-color: var(--gold); }
.admin-search { max-width: 280px; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: .92rem; }
.admin-table th { text-align: left; padding: 12px 14px; background: var(--paper-tint); border-bottom: 2px solid var(--line-strong); font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: 0; }
.row-banned { opacity: .55; }
.mod-card { border-left: 3px solid var(--gold); }
.mod-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.reject-form { display: flex; gap: 6px; align-items: center; }
.reject-note { color: var(--brick); font-size: .88rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 20px 0; }
.stat-tile { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--forest); border-radius: var(--radius); padding: 18px 20px; }
.stat-tile b { font-family: var(--serif); font-size: 2rem; display: block; }
.stat-warn { border-top-color: var(--brick); }
.bulk-row { display: grid; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--surface); }
.bulk-remove { justify-self: end; }
.cat-tile { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.blacklist-card { border: 1px solid var(--brick); background: var(--brick-tint); }
.form-card + .form-card { margin-top: 20px; }

/* ============================================================
   ПОДВАЛ
   ============================================================ */
.site-footer { background: var(--ink); color: #d8d0bf; margin-top: 40px; background-image: none; }
.site-footer a { color: #d8d0bf; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; padding: 46px 24px 30px; }
.footer-grid h4 { font-family: var(--serif); color: #fffdf6; font-size: 1.05rem; margin-bottom: 12px; }
.footer-grid > div a { display: block; padding: 3px 0; font-size: .92rem; }
.footer-logo .logo-text { color: #fffdf6; font-size: 1.5rem; }
.footer-logo .logo-text em { color: var(--gold); }
.footer-note { color: #a89f8d; font-size: .88rem; }
.footer-demo { color: #8a8272; font-style: italic; }
.footer-mail { font-weight: 700; margin-top: 6px; display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(216,208,191,.2); padding: 18px 24px; font-size: .84rem; color: #948b79; }

/* ============================================================
   ПАГИНАЦИЯ
   ============================================================ */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 34px 0 0; flex-wrap: wrap; }
.page { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-weight: 700; color: var(--ink); background: var(--surface); }
.page:hover { border-color: var(--forest); color: var(--forest); text-decoration: none; }
.page.current { background: var(--forest); border-color: var(--forest); color: #fff; }
.page.dots { border: 0; background: none; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-cards { display: none; }
  .company-hero { grid-template-columns: 1fr; }
  .company-hero-side { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .company-hero-side .big-rating { text-align: left; }
  .company-hero-side .breakdown { display: none; }
  .company-layout, .profile-layout { grid-template-columns: 1fr; }
  .sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .header-search { display: none; }
  /* газетная планка на телефоне занимала две строки и ломала геометрию шапки */
  .topbar { display: none; }
  .header-inner { gap: 12px; min-height: 60px; }
  .logo-mark svg { width: 34px; height: 34px; }
  .logo-text { font-size: 1.3rem; white-space: nowrap; }
  .logo-tag { font-size: .58rem; white-space: nowrap; }
  .logo, .logo-block { min-width: 0; }
  .burger { flex-shrink: 0; }
  /* закрытое меню полностью невидимо (раньше его паддинг висел полоской поверх логотипа) */
  .header-nav { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border-bottom: 2px solid var(--ink); padding: 0; margin: 0; max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .25s ease; }
  .header-nav.open { max-height: 440px; padding: 8px 0; visibility: visible; }
  .header-nav > a, .header-nav .inline-form { padding: 12px 24px; border-bottom: 1px solid var(--line); }
  .header-nav > a.active::after { display: none; }
  .burger { display: flex; margin-left: auto; }
  .feed, .company-list, .review-grid { grid-template-columns: 1fr; }
  .field-row, .pros-cons { grid-template-columns: 1fr; }
  .gallery-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   СТРУКТУРА v2: газетная планка, масхед, сводка, леджер, досье
   ============================================================ */

/* Верхняя тонкая планка */
.topbar { background: var(--ink); color: #b9b09c; font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; padding-top: 6px; padding-bottom: 6px; }
.topbar a { color: #d8d0bf; }
.topbar a:hover { color: var(--gold); }

/* Шапка: логотип с подписью, без поиска */
.logo-block { display: flex; flex-direction: column; line-height: 1.1; }
.logo-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.site-header { border-bottom: 3px double var(--ink); }

/* Цифровой балл вместо звёзд */
.score { display: inline-flex; align-items: baseline; gap: 3px; font-family: var(--serif); line-height: 1; white-space: nowrap; }
.score b { font-size: 1.35rem; font-weight: 800; }
.score small { font-size: .8rem; color: var(--ink-faint); font-family: var(--sans); }
.score-word { font-family: var(--sans); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-left: 6px; align-self: center; }
.score-good b, .score-good .score-word { color: var(--good); }
.score-mid b, .score-mid .score-word { color: var(--mid); }
.score-bad b, .score-bad .score-word { color: var(--bad); }
.score-none b, .score-none .score-word { color: var(--ink-faint); }

/* Масхед главной: светлый, по центру, двойные линейки */
.masthead { border-bottom: 3px double var(--ink); background: var(--surface); }
.masthead-inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 56px 24px 48px; }
.masthead h1 { font-size: 2.9rem; }
.masthead-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 36em; margin: 0 auto 1.2em; }
.masthead-search { display: flex; gap: 10px; max-width: 540px; margin: 0 auto 14px; }
.masthead-search input { flex: 1; }
.masthead-chips { font-size: .9rem; color: var(--ink-faint); }
.masthead-chips a { color: var(--forest); }

/* Сводка: лента + правая колонка */
.digest { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; }
.rule-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 6px; }
.rule-head h2 { margin: 0; font-size: 1.5rem; }

.digest-rail { display: flex; flex-direction: column; gap: 22px; }
.rail-box { border: 1px solid var(--line); background: var(--surface); padding: 18px 20px; }
.rail-box h3 { font-size: 1.05rem; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.rail-box-good h3 { border-bottom-color: var(--good); }
.rail-box-bad h3 { border-bottom-color: var(--brick); }
.rail-list { list-style: none; margin: 0; padding: 0; counter-reset: rail; }
.rail-list li { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; counter-increment: rail; }
.rail-list li::before { content: counter(rail) '.'; font-family: var(--serif); font-weight: 800; color: var(--ink-faint); min-width: 18px; }
.rail-list li:last-child { border-bottom: 0; }
.rail-list a { color: var(--ink); flex: 1; min-width: 0; }  /* длинные названия переносятся, а не распирают колонку */
.rail-list a:hover { color: var(--forest); }
.rail-score { font-family: var(--serif); font-weight: 800; }
.rail-all { display: inline-block; margin-top: 10px; font-size: .88rem; }
.rail-box-cta { background: var(--forest-tint); border-color: var(--forest); }

/* Леджер — записи с датой слева */
.ledger { display: flex; flex-direction: column; }
.entry { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line-strong); }
.entry:last-child { border-bottom: 0; }
.entry-date { display: flex; flex-direction: column; gap: 8px; font-size: .84rem; color: var(--ink-faint); border-right: 1px solid var(--line); padding-right: 16px; }
.entry-top { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: baseline; font-size: .9rem; margin-bottom: 4px; }
.entry-company { font-weight: 700; color: var(--forest); }
.entry-author { color: var(--ink-faint); }
.entry-title { font-size: 1.3rem; margin: 2px 0 8px; }
.entry-title a { color: var(--ink); }
.entry-title a:hover { color: var(--forest); text-decoration: none; }
.entry-text { color: var(--ink-soft); margin: 0 0 10px; }
.entry-text-full p { color: var(--ink); margin: 0 0 .8em; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--ink-faint); }
.entry-more { margin-left: auto; font-weight: 700; }

/* Досье компании */
.dossier-head { margin: 10px 0 18px; }
.dossier-head h1 { font-size: 2.1rem; }
.dossier-verdict { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold); padding: 18px 24px; margin-bottom: 22px; }
.dossier-score { display: flex; flex-direction: column; gap: 4px; }
.dossier-score .score b { font-size: 2.6rem; }
.dossier-breakdown { flex: 1; min-width: 220px; max-width: 380px; }
.dossier-breakdown .breakdown-row { display: grid; grid-template-columns: 16px 1fr 30px; gap: 8px; align-items: center; font-size: .82rem; color: var(--ink-soft); }
.dossier-breakdown .bar { background: var(--paper-tint); height: 8px; border-radius: 0; }
.dossier-breakdown .bar-fill { background: var(--forest); }
.dossier-cta { margin-left: auto; }

.req-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); margin-bottom: 22px; font-size: .96rem; }
.req-table th { text-align: left; width: 240px; padding: 10px 16px; color: var(--ink-soft); font-weight: 700; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); vertical-align: top; background: var(--paper-tint); }
.req-table td { padding: 10px 16px; border-bottom: 1px solid var(--line); }
.req-table tr:last-child th, .req-table tr:last-child td { border-bottom: 0; }
.req-table td.company-phones { margin: 0; }

.also-strip { display: flex; gap: 14px; overflow-x: auto; padding: 14px 0; }
.also-item { flex: 0 0 220px; border: 1px solid var(--line); background: var(--surface); padding: 14px 16px; }
.also-item b { display: block; font-family: var(--serif); }
.also-item:hover { border-color: var(--forest); text-decoration: none; }

/* Сегментный ввод оценки */
.seg-input { display: flex; gap: 8px; flex-wrap: wrap; }
.seg { cursor: pointer; }
.seg input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg span { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 84px; padding: 10px 12px; border: 1.5px solid var(--line-strong); background: var(--surface); border-radius: var(--radius); transition: all .12s; }
.seg b { font-family: var(--serif); font-size: 1.3rem; }
.seg small { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); }
.seg:hover span { border-color: var(--forest); }
.seg input:checked + span { background: var(--forest); border-color: var(--forest); color: #fff; }
.seg input:checked + span small { color: var(--gold-tint); }
.seg input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Каталог — одна колонка-список */
.company-list { grid-template-columns: 1fr; }
.company-card { border-left: 3px solid var(--forest); }

/* Подвал: одна широкая строка */
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 40px 24px 26px; }
.footer-brand .logo-text { color: #fffdf6; font-size: 1.5rem; }
.footer-brand .logo-text em { color: var(--gold); }
.footer-nav { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.footer-nav a { font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Страница отзыва: оценка и вердикт в шапке */
.review-full-score { display: flex; align-items: center; gap: 12px; margin-left: auto; }

@media (max-width: 940px) {
  .digest { grid-template-columns: minmax(0, 1fr); }
  .digest-rail { flex-direction: row; flex-wrap: wrap; }
  .rail-box { flex: 1; min-width: 240px; }
  .dossier-cta { margin-left: 0; width: 100%; }
}
@media (max-width: 720px) {
  .masthead h1 { font-size: 2.1rem; }
  .masthead-search { flex-direction: column; }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  /* лента на телефоне: дата слева, балл справа, компания — отдельной строкой */
  .entry { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .entry-date { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 14px; border-right: 0; padding-right: 0; min-width: 0; }
  .entry-date .score { max-width: 100%; }
  .entry-body { min-width: 0; }
  .entry-text { font-size: .98rem; }
  .entry-top { flex-direction: column; align-items: flex-start; gap: 2px; margin: 2px 0 0; }
  .entry-company { font-size: 1.02rem; }
  .entry-author { font-size: .84rem; }
  .entry-top .rec-yes, .entry-top .rec-no { font-size: .8rem; }
  .entry-title { font-size: 1.2rem; margin: 6px 0 6px; }
  .entry-meta .entry-more { margin-left: 0; }
  /* «Лидеры» и «Зона риска» на телефоне всегда в столбик, без сжатых колонок */
  .digest-rail { flex-direction: column; }
  .rail-box { min-width: 0; width: 100%; }
  .req-table th { width: 40%; }
  .dossier-verdict { gap: 18px; }
}
.company-logo { width: 46px; height: 46px; font-size: 1.2rem; }
.company-card-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }

/* Баннер компании на странице отзыва: светлые элементы на изумрудном */
.company-banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border: 0; }
.company-banner-main { display: flex; align-items: center; gap: 14px; }
.company-banner .muted { color: #c9bfa5 !important; }
.company-banner .score b { color: var(--gold-tint); }
.company-banner .score small { color: #c9bfa5; }
.company-banner .score-word { color: var(--gold-tint); }
.company-banner-rating { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.company-banner .btn-primary { --b: var(--gold); background: var(--gold); border-color: var(--gold); color: #2a1e05; }
.company-banner .btn-primary:hover { background: #fffdf8; border-color: #fffdf8; color: var(--forest-dk); }
.company-banner .btn-outline { color: #f3ecd8; border-color: rgba(243,236,216,.6); }
.company-banner .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.company-banner-actions { margin-top: 0; }

/* Базовый размер аватара (в шапке отзыва он без модификатора) */
.avatar { width: 46px; height: 46px; font-size: 1.15rem; }
.avatar-sm { width: 34px; height: 34px; font-size: .95rem; }
.avatar-lg { width: 60px; height: 60px; font-size: 1.5rem; }

/* Комментарии: аватар слева от текста */
.comment { display: flex; gap: 12px; align-items: flex-start; }
.comment > div { flex: 1; min-width: 0; }
.comment p { margin: 0; }

/* Список «другие отзывы» без маркеров */
.plain-list { list-style: none; margin: 0; padding: 0; }
.plain-list li { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); flex-wrap: wrap; }
.plain-list li:last-child { border-bottom: 0; }
.plain-list .score b { font-size: 1.05rem; }
.plain-list .score-word { display: none; }

/* Чип компании в отзыве */
.company-chip-big:hover { border-color: var(--forest); text-decoration: none; }
.company-chip-big > span:nth-child(2) { display: flex; flex-direction: column; }

/* Формы жалобы и комментария: аккуратные отступы */
.complaint-form select, .complaint-form textarea { margin-bottom: 10px; }
.comment-form textarea { margin-bottom: 10px; }
.comments-card h2 { font-size: 1.4rem; border-bottom: 2px solid var(--ink); padding-bottom: 8px; }

/* ---------- QA-фиксы по итогам обхода страниц ---------- */
/* Шапка страницы: заголовок слева, действие справа */
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.page-head h1 { margin: 0; }
/* Форма-фильтр каталога: элементы рядом, а не по краям */
form.toolbar { justify-content: flex-start; gap: 10px; }
form.toolbar input[type=search] { max-width: 440px; }
/* Профиль: бейдж роли и плитки статистики */
.profile-stats span { color: var(--ink-faint); font-size: .85rem; }

/* Страница «Проверка компании» */
.search-page-form { margin: 6px 0 10px; max-width: 560px; }
.mention-list { display: flex; flex-direction: column; }
.mention-row { display: flex; align-items: center; gap: 16px; padding: 13px 4px; border-bottom: 1px dashed var(--line); color: var(--ink); }
.mention-row:last-child { border-bottom: 0; }
.mention-row:hover { background: var(--paper-tint); text-decoration: none; }
.mention-row .score { min-width: 120px; }
.mention-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mention-text b { font-family: var(--serif); }
.mention-row .entry-more { white-space: nowrap; }
@media (max-width: 720px) {
  .mention-row { flex-wrap: wrap; gap: 6px 14px; }
  .mention-row .entry-more { display: none; }
}
