/* ============ MERKUR - merkury-casino.de design system v2 ============
   Mobile-first, резиновая вёрстка. Контент-ширина ЕДИНАЯ: 800px на десктопе. */
:root {
  --bg: #16181d;
  --surface: #1d2026;
  --surface-2: #23262e;
  --border: #2e323c;
  --gold: #e8a33d;
  --gold-light: #f6cf75;
  --gold-dark: #c87f1f;
  --text: #f2efe8;
  --text-muted: #9aa0ab;
  --green: #58b97f;
  --red: #e06363;
  --radius: 14px;
  --radius-sm: 9px;
  --content: 800px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* единый контент-контейнер для ВСЕГО сайта */
.container { width: 100%; max-width: var(--content); margin: 0 auto; padding-left: 18px; padding-right: 18px; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.55rem, 5.5vw, 2.15rem); margin: .5em 0 .5em; }
h2 { font-size: clamp(1.25rem, 4vw, 1.55rem); margin: 1.9em 0 .6em; }
h3 { font-size: 1.1rem; margin: 1.4em 0 .5em; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }
strong { color: #fff; }
.muted { color: var(--text-muted); }

/* телефон: выглядит как ссылка, но не кликается */
.tel-look { color: var(--gold); white-space: nowrap; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22, 24, 29, .93); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 18px; height: 58px; }
.site-logo img { height: 22px; width: auto; }
.site-nav {
  display: none; position: absolute; top: 58px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 14px 18px; gap: 13px;
}
.site-nav--open { display: flex; }
.site-nav a { color: var(--text); font-size: 1.12rem; font-weight: 500; padding: 5px 0; }
.site-nav a:hover { color: var(--gold-light); text-decoration: none; }
.nav-toggle {
  display: block; margin-left: auto; background: none;
  border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; font-size: 1.05rem; padding: 4px 11px; cursor: pointer;
}

/* ---------- breadcrumb (под-страницы) ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .82rem; color: var(--text-muted); padding-top: 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb__sep { opacity: .45; }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ---------- author hero (страница автора) ---------- */
.author-hero { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.author-hero__photo { width: 104px; height: 104px; border-radius: 50%; border: 2px solid var(--gold-dark); flex-shrink: 0; }
.author-hero__bio { color: var(--text-muted); margin: 6px 0 0; }
@media (min-width: 600px) {
  .author-hero { flex-direction: row; align-items: center; gap: 22px; }
  .author-hero__photo { width: 128px; height: 128px; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 26px 0 4px; overflow: hidden; }
/* под-страницы с крошками: меньший и симметричный отступ вокруг breadcrumb (мобайл) */
.hero:has(.breadcrumb) { padding-top: 12px; }
.breadcrumb + h1 { margin-top: 12px; }
.hero::before {
  content: ""; position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 480px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(232,163,61,.15) 0%, rgba(232,163,61,.05) 45%, transparent 70%);
}
.hero .container { position: relative; }

/* byline chip */
.byline { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 12px 0 6px; font-size: .88rem; color: var(--text-muted); }
.byline img { border-radius: 50%; }
.byline__chip { background: var(--surface); border: 1px solid var(--border); padding: 3px 11px; border-radius: 99px; font-size: .8rem; }
.byline__chip--desktop { display: none; } /* время чтения - только desktop */
.byline__chip--date { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.byline__ico { color: var(--gold); flex-shrink: 0; }
.byline__chip-label { display: none; } /* mobile: вместо слова - иконка */

/* ---------- casino cards (mobile-first) ---------- */
.casino-list { display: flex; flex-direction: column; gap: 18px; margin: 24px 0 8px; }
.casino-card {
  position: relative; display: flex; flex-direction: column; gap: 13px;
  background: linear-gradient(180deg, var(--surface) 0%, #1a1d23 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px 16px;
}
.casino-card--top { border: 1.5px solid var(--gold); box-shadow: 0 0 30px rgba(232,163,61,.12); }
.casino-card__ribbon {
  position: absolute; top: -11px; left: 16px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  color: #1a1206; font-weight: 700; font-size: .76rem;
  padding: 3px 12px; border-radius: 99px;
}
.casino-card__pos {
  position: absolute; top: 12px; right: 15px;
  font-size: 1.25rem; font-weight: 800; color: var(--gold); opacity: .6;
}
.casino-card__logo {
  background: #14161a; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; display: flex; align-items: center; justify-content: center;
  min-height: 96px; max-width: 300px; margin: 0 auto; margin-bottom: 3vw;
}
.casino-card__logo img { height: 80px; width: auto; }
.casino-card__name { margin: 0 0 6px; font-size: 1.2rem; }
.casino-card__features { list-style: none; padding: 0; margin: 0 0 6px; }
.casino-card__features li { padding-left: 23px; position: relative; font-size: .93rem; margin-bottom: 3px; }
.casino-card__features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.casino-card__verdict { font-size: .85rem; color: var(--text-muted); margin: 0; }
.casino-card__aside {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.casino-card__rating { display: flex; align-items: center; justify-content: center; gap: 13px; }
.casino-card__score {
  font-size: 2.05rem; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 20%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.casino-card__score small { font-size: .95rem; -webkit-text-fill-color: var(--text-muted); color: var(--text-muted); font-weight: 600; }
.casino-card__rating-detail { display: flex; flex-direction: column; gap: 2px; }
.casino-card__rating-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); }
.stars { letter-spacing: 2px; font-size: 1.02rem; }
.star--full { color: var(--gold); }
.star--half { color: var(--gold); opacity: .55; }
.star--empty { color: #3a3e48; }
.casino-card__legal {
  display: none; /* mobile: скрыт, появляется только на desktop */
  align-self: center; font-size: .7rem; color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 12px; letter-spacing: .03em; white-space: nowrap;
}
.casino-card__cta { display: flex; gap: 10px; align-items: center; }
.casino-card__cta > .btn--outline { padding: 13px 18px; font-size: .92rem; white-space: nowrap; }
.casino-card__cta > .btn--gold { flex: 1; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 13px 26px; font-weight: 700; font-size: .98rem;
  transition: transform .12s ease, box-shadow .12s ease; text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #221503; box-shadow: 0 4px 18px rgba(232,163,61,.22); white-space: nowrap;
}
.btn--gold:hover { color: #221503; box-shadow: 0 6px 22px rgba(232,163,61,.36); }
.btn--outline { border: 1px solid var(--gold-dark); color: var(--gold); font-size: .88rem; padding: 9px 16px; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); text-decoration: none; }

/* тихая сноска-дисклеймер */
.affiliate-note {
  font-size: .8rem; color: #7d838f; font-style: italic;
  margin: 16px 0 6px; padding-top: 12px; border-top: 1px solid var(--border);
}

/* ---------- article / content ---------- */
.article { padding-top: 4px; padding-bottom: 28px; }
.content-img { display: block; margin: 26px 0; }
.content-img img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; height: auto; }
.anchor-jump { font-size: .9rem; }

/* tables: mobile = vertikale Karten (eine Karte je Zeile), Desktop = klassische Tabelle.
   Gilt automatisch für ALLE Tabellen in .table-wrap; data-label/.is-rowhead setzt das JS im Footer. */
.table-wrap { margin: 20px 0; }
.table-wrap table { border-collapse: collapse; width: 100%; font-size: .92rem; }
.table-wrap thead { display: none; }
.table-wrap tbody, .table-wrap tr, .table-wrap td { display: block; }
.table-wrap tr {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 12px; padding: 2px 15px 13px;
}
.table-wrap tr.row-highlight { border-color: var(--gold-dark); background: rgba(232,163,61,.06); }
.table-wrap td { padding: 9px 0; }
.table-wrap td:not(.is-rowhead) + td:not(.is-rowhead) { border-top: 1px dashed var(--border); }
.table-wrap td.is-rowhead {
  font-weight: 700; font-size: 1.05rem; color: var(--text);
  padding: 11px 0 9px; border-bottom: 1px solid var(--border);
}
.table-wrap td:not(.is-rowhead)::before {
  content: attr(data-label); display: block; margin-bottom: 3px;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .03em;
  color: var(--text-muted); font-weight: 700;
}
/* globale Zell-Helfer (beide Layouts) */
td .v-yes { color: var(--green); }
td .v-no { color: var(--red); }
.t-gold { color: var(--gold-light); font-weight: 700; }
.compare-head { display: flex; gap: 8px; align-items: center; font-weight: 700; }

/* FAQ */
.faq { margin: 18px 0; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 14px 42px 14px 16px; font-weight: 600; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "▾"; position: absolute; right: 16px; top: 13px; color: var(--gold); transition: transform .15s ease; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 16px 14px; color: var(--text-muted); }
.faq-answer p:last-child { margin-bottom: 0; }

/* author box */
.author-box {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 15px 16px; margin: 28px 0 8px;
}
.author-box__img { border-radius: 50%; flex-shrink: 0; }
.author-box__name { margin: 0 0 3px; font-weight: 700; }
.author-box__bio { margin: 0; font-size: .87rem; color: var(--text-muted); }
.author-box__dates { margin: 6px 0 0; font-size: .78rem; color: var(--text-muted); }

/* RG-плашка (ТОЛЬКО главная): 18+, телефон-текст, 2 внешние ссылки */
.rg-panel {
  background: linear-gradient(135deg, var(--surface) 65%, rgba(232,163,61,.07));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; margin: 28px 0;
}
.rg-panel__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  min-width: 38px; height: 26px; padding: 0 7px;
  border: 1.5px solid var(--red); color: var(--red); border-radius: 7px;
  font-size: .8rem; font-weight: 700;
}
.rg-panel__head p { margin: 0; font-weight: 600; font-size: .95rem; }
.rg-panel > p { margin: 0 0 12px; font-size: .88rem; color: var(--text-muted); }
.rg-panel__links { display: flex; flex-wrap: wrap; gap: 10px; }

/* callout */
.callout { background: var(--surface); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 13px 16px; margin: 20px 0; }
.callout p:last-child { margin-bottom: 0; }

/* link card */
.link-card {
  display: block; background: linear-gradient(135deg, var(--surface) 60%, rgba(232,163,61,.09));
  border: 1px solid var(--gold-dark); border-radius: var(--radius);
  padding: 16px 18px; margin: 22px 0; font-weight: 600;
}
.link-card:hover { text-decoration: none; border-color: var(--gold); box-shadow: 0 0 22px rgba(232,163,61,.14); }
.link-card small { display: block; color: var(--text-muted); font-weight: 400; margin-top: 3px; }

/* CTA-Band (inline, ведёт к якорю на странице) */
.cta-band {
  display: flex; flex-direction: column; gap: 13px; margin: 22px 0;
  background: linear-gradient(180deg, var(--surface) 0%, #1a1d23 100%);
  border: 1px solid var(--gold-dark); border-radius: var(--radius); padding: 16px 18px;
}
.cta-band__text { display: flex; flex-direction: column; gap: 4px; }
.cta-band__text strong { color: var(--text); font-size: 1.02rem; }
.cta-band__text span { color: var(--text-muted); font-size: .9rem; }
.cta-band .btn--gold { align-self: flex-start; }

/* ===== /slots/ v2 компоненты ===== */
/* 3 карточки-версии (Spielothek / GGL / International) */
.version-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 22px 0; }
.version-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; display: flex; flex-direction: column; gap: 9px;
}
.version-card--hl { border-color: var(--gold); box-shadow: 0 0 26px rgba(232,163,61,.1); }
.version-card__head { display: flex; align-items: center; gap: 10px; }
.version-card__ico { font-size: 1.35rem; line-height: 1; }
.version-card__title { font-size: 1.08rem; font-weight: 700; margin: 0; flex: 1; }
.version-card__badge {
  background: var(--surface-2); border: 1px solid var(--gold-dark); color: var(--gold-light);
  font-weight: 700; font-size: .82rem; padding: 3px 10px; border-radius: 99px; white-space: nowrap;
}
.version-card p { margin: 0; color: var(--text-muted); font-size: .92rem; }

/* сетка карточек слотов (обложка + название + RTP + текст) */
.slot-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 22px 0; }
.slot-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.slot-card__cover {
  aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,163,61,.18), transparent 62%), linear-gradient(180deg, #1f232b, #15171c);
  border-bottom: 1px solid var(--border);
}
.slot-card__cover img { width: 100%; height: 100%; object-fit: cover; border: 0; border-radius: 0; }
.slot-card__cover-ph { font-size: 2.6rem; opacity: .22; }
.slot-card__body { padding: 14px 16px 16px; }
.slot-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.slot-card__name { font-size: 1.12rem; font-weight: 700; margin: 0; flex: 1; }
.slot-card__rtp {
  background: var(--surface-2); border: 1px solid var(--gold-dark); color: var(--gold-light);
  font-weight: 700; font-size: .8rem; padding: 2px 9px; border-radius: 99px; white-space: nowrap;
}
.slot-card__vol { font-size: .8rem; color: var(--text-muted); margin: 0 0 6px; }
.slot-card__body p { margin: 0; color: var(--text-muted); font-size: .92rem; }

/* компактный список казино (тонкие строки) */
.casino-compact { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 6px; }
.casino-row {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px;
}
.casino-row--top { border-color: var(--gold); }
.casino-row__logo {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 88px; height: 46px; background: #14161a; border: 1px solid var(--border); border-radius: 8px; padding: 6px;
}
.casino-row__logo img { max-height: 30px; max-width: 100%; width: auto; }
.casino-row__main { min-width: 0; }
.casino-row__top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.casino-row__name { font-weight: 700; color: var(--text); }
.casino-row__name:hover { color: var(--gold-light); }
.casino-row__rating { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--text-muted); }
.casino-row__rating .stars { font-size: .9rem; }
.casino-row__rating b { color: var(--gold); }
.casino-row__note { display: block; color: var(--text-muted); font-size: .88rem; margin-top: 3px; }
.casino-row__cta { grid-column: 1 / -1; }
.casino-row__cta .btn { width: 100%; }

@media (min-width: 600px) {
  .version-cards { grid-template-columns: repeat(3, 1fr); }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .casino-row { grid-template-columns: auto 1fr auto; }
  .casino-row__cta { grid-column: auto; }
  .casino-row__cta .btn { width: auto; }
}

/* ===== Casino-Review компоненты ===== */
/* test-summary (hero): циферблат рейтинга + сетка данных теста + CTA */
.test-summary {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin: 16px 0 4px;
  background: linear-gradient(180deg, var(--surface) 0%, #1a1d23 100%);
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 18px;
}
.test-summary__score { display: flex; align-items: center; gap: 14px; }
.rating-dial {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--gold) var(--p, 92%), var(--surface-2) 0);
  display: grid; place-items: center;
}
.rating-dial__inner { width: 68px; height: 68px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; line-height: 1; }
.rating-dial__num { font-size: 1.5rem; font-weight: 800; color: var(--gold-light); }
.rating-dial__max { font-size: .7rem; color: var(--text-muted); }
.test-summary__score-text { display: flex; flex-direction: column; gap: 4px; }
.test-summary__verdict { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); }
.test-summary__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.ts-stat { display: flex; align-items: center; gap: 9px; }
.ts-stat__ico { width: 22px; height: 22px; flex-shrink: 0; }
.ts-stat__main { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.ts-stat__label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .03em; }
.ts-stat__val { font-weight: 700; }
.test-summary__cta { display: flex; flex-direction: column; gap: 6px; }
.test-summary__cta .btn { width: 100%; }
.test-summary__legal { font-size: .72rem; color: var(--text-muted); text-align: center; }

/* Steckbrief (факты) - список определений, mobile stacked / desktop 2 кол. */
.steckbrief { margin: 18px 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.steckbrief__row { padding: 11px 15px; border-bottom: 1px solid var(--border); }
.steckbrief__row:last-child { border-bottom: 0; }
.steckbrief dt { display: flex; align-items: center; gap: 8px; font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; color: var(--text-muted); font-weight: 700; margin-bottom: 3px; }
.steckbrief dd { margin: 0; }
.sb-ico { flex-shrink: 0; }

/* Plus / Minus */
.pro-contra { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 22px 0; }
.pro-contra__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.pro-contra__col--plus { border-top: 3px solid var(--green); }
.pro-contra__col--minus { border-top: 3px solid var(--red); }
.pro-contra__col h3 { margin: 0 0 10px; font-size: 1.05rem; }
.pro-contra__col ul { list-style: none; padding: 0; margin: 0; }
.pro-contra__col li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: .93rem; }
.pro-contra__col--plus li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pro-contra__col--minus li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Verdict (Fazit) - крупный рейтинг + категорийные бары + CTA */
.verdict {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin: 22px 0;
  background: linear-gradient(180deg, var(--surface) 0%, #1a1d23 100%);
  border: 1px solid var(--gold); border-radius: var(--radius); padding: 20px 18px;
  box-shadow: 0 0 30px rgba(232,163,61,.1);
}
.verdict__score { display: flex; align-items: center; gap: 13px; }
.verdict__num { font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 20%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.verdict__num small { font-size: 1rem; -webkit-text-fill-color: var(--text-muted); color: var(--text-muted); font-weight: 600; }
.verdict__score-text { display: flex; flex-direction: column; gap: 3px; }
.verdict__label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); }
.verdict__bars { display: flex; flex-direction: column; gap: 9px; }
.vbar { display: grid; grid-template-columns: 96px 1fr 30px; align-items: center; gap: 10px; font-size: .86rem; }
.vbar__label { color: var(--text-muted); }
.vbar__track { height: 8px; background: var(--surface-2); border-radius: 99px; overflow: hidden; }
.vbar__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 99px; }
.vbar__val { text-align: right; font-weight: 700; color: var(--gold-light); }
.verdict__cta { display: flex; flex-direction: column; gap: 6px; }
.verdict__cta .btn { width: 100%; }
.verdict__legal { font-size: .72rem; color: var(--text-muted); text-align: center; }

/* Callout (экспертный совет) */
.callout { display: flex; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 16px; margin: 20px 0; }
.callout__ico { font-size: 1.3rem; line-height: 1.2; flex-shrink: 0; }
.callout__body { font-size: .93rem; }
.callout__body strong { color: var(--gold-light); }
.callout__body p:last-child { margin-bottom: 0; }

@media (min-width: 600px) {
  .test-summary { grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
  .test-summary__grid { grid-template-columns: 1fr 1fr 1fr; }
  .test-summary__cta .btn { width: auto; white-space: nowrap; }
  .steckbrief__row { display: grid; grid-template-columns: 230px 1fr; gap: 16px; align-items: baseline; }
  .steckbrief dt { margin-bottom: 0; }
  .pro-contra { grid-template-columns: 1fr 1fr; align-items: start; }
  .verdict { grid-template-columns: 210px 1fr; align-items: center; }
  .verdict__cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .verdict__cta .btn { width: auto; }
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 44px; padding: 34px 0 22px; background: #13151a; font-size: .9rem; }
.footer-brand { margin-bottom: 26px; }
.footer-brand img { margin-bottom: 4px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
.footer-col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin: 0 0 9px; }
.footer-col a { display: block; color: var(--text); padding: 3px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-note { color: var(--text-muted); font-size: .83rem; margin-top: 11px; }
.footer-rg { display: flex; gap: 12px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 15px; }
.footer-rg p { margin: 0; color: var(--text-muted); font-size: .85rem; }
.footer-disclaimer, .footer-copy { color: #6d7380; font-size: .77rem; margin: 0 0 8px; }

/* ---------- desktop/tablet (mobile-first; 600px - чтобы выдерживать масштаб ОС 125-150% при полуэкранных окнах) ---------- */
@media (min-width: 600px) {
  body { font-size: 17px; }
  .site-header__inner { height: 62px; gap: 26px; }
  .site-logo img { height: 24px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row; gap: 22px;
    background: none; border: none; padding: 0; margin-left: auto;
  }
  .site-nav a { font-size: .95rem; padding: 0; }
  .byline__chip--desktop { display: inline-block; }
  .byline__ico { display: none; }            /* desktop: вместо иконки - слово «Veröffentlicht:» */
  .byline__chip-label { display: inline; }
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
  .cta-band .btn--gold { align-self: auto; flex-shrink: 0; }
  .hero { padding: 40px 0 6px; }
  .hero:has(.breadcrumb) { padding-top: 16px; }
  .breadcrumb + h1 { margin-top: 16px; }

  .casino-card { padding: 22px 22px 18px; }
  .casino-card__main { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
  .casino-card__logo { min-height: 70px; padding: 13px 14px; max-width: none; margin: 0; }
  .casino-card__logo img { height: 38px; }
  .casino-card__aside { flex-direction: row; align-items: center; justify-content: space-between; gap: 14px; }
  .casino-card__rating { justify-content: flex-start; }
  .casino-card__legal { display: inline-block; }

  /* Tabellen: zurück zur klassischen Darstellung */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap table { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
  .table-wrap thead { display: table-header-group; }
  .table-wrap tbody { display: table-row-group; }
  .table-wrap tr { display: table-row; background: none; border: 0; border-radius: 0; margin: 0; padding: 0; }
  .table-wrap tr.row-highlight { background: none; }
  .table-wrap tr.row-highlight td { background: rgba(232,163,61,.07); }
  .table-wrap th, .table-wrap td { display: table-cell; text-align: left; padding: 10px 13px; border-bottom: 1px solid var(--border); border-top: 0; vertical-align: top; }
  .table-wrap th { background: var(--surface-2); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
  .table-wrap tr:last-child td { border-bottom: none; }
  .table-wrap td.is-rowhead { font-weight: 400; font-size: .92rem; color: inherit; padding: 10px 13px; }
  .table-wrap td:not(.is-rowhead)::before { content: none; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
}
