/* Crosswinz — Winz.io mockup theme (dark + yellow accent) */
:root {
  --bg: #0a0e14;
  --surface: #141a21;
  --surface-2: #1a222c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f5f7;
  --muted: #b8c0cc;
  --accent: #f5d547;
  --accent-hover: #ffe066;
  --accent-text: #0a0e14;
  --good: #3dd68c;
  --bad: #ff5c5c;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max: 1200px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --focus: 0 0 0 3px rgba(245, 213, 71, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  z-index: 100;
}

.skip:focus {
  left: 14px;
  outline: none;
  box-shadow: var(--focus);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(245, 213, 71, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-btn:focus {
  outline: none;
  box-shadow: var(--focus);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-logo {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:focus {
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}

.btn-arrow::after {
  content: "→";
  font-weight: 700;
}

/* ----- Hero ----- */
.hero {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.tag-yellow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 213, 71, 0.15);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

.rating-box {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.rating-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 4px;
}

.star-y {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.star-y.muted {
  fill: rgba(245, 213, 71, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
  }
}

@media (max-width: 420px) {
  .hero-features {
    grid-template-columns: 1fr;
  }
}

.hero-feat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.hero-feat-label {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-feat-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(245, 213, 71, 0.12);
  border: 1px solid rgba(245, 213, 71, 0.25);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.hero-feat-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}
.hero-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Layout split (main + sidebar) ----- */
.page {
  padding: 28px 0 48px;
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.layout-split > article {
  min-width: 0;
}


.sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----- Cards & panels ----- */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.panel-body {
  padding: 20px;
}

.panel-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

h2.section-title {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

h3.block-title {
  margin: 0 0 10px;
  font-size: 16px;
}

p.lead {
  margin: 0 0 14px;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

/* TOC */
#toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#toc a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

#toc a:hover {
  border-color: var(--border);
  color: var(--text);
  text-decoration: none;
}

#toc a.is-active {
  border-color: rgba(245, 213, 71, 0.35);
  background: rgba(245, 213, 71, 0.08);
  color: var(--text);
}

.toc-num {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  flex-shrink: 0;
}

/* Author sidebar */
.author-side {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.author-side img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 213, 71, 0.35);
}

.author-side strong {
  display: block;
  margin-bottom: 4px;
}

.author-side small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.author-meta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.author-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.author-list li {
  margin: 6px 0;
}

/* Trust sidebar */
.trust-logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.trust-row img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.trust-row span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.trust-row > a {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.trust-row > a:hover span {
  text-decoration: underline;
}

/* Kurzfassung — Blöcke untereinander, Tabelle ohne horizontale Scrollbar */
.kurz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.kurz-grid .table-wrap {
  overflow-x: visible;
  overflow-y: visible;
}

.kurz-grid table {
  min-width: 0;
  table-layout: fixed;
}

.kurz-grid th:first-child,
.kurz-grid td:first-child {
  width: 62%;
}

.kurz-grid th:last-child,
.kurz-grid td:last-child {
  width: 38%;
}

@media (max-width: 480px) {
  .kurz-grid th,
  .kurz-grid td {
    padding: 10px 10px;
    font-size: 13px;
  }
}

.kurz-cell {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  min-height: 100%;
}

.pro-list,
.con-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-list li,
.con-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.pro-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 900;
}

.con-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--bad);
  font-weight: 900;
}

.providers-row {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

@media (max-width: 900px) {
  .providers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .providers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.provider-logo img {
  width: 100%;
  max-height: 44px;
  height: auto;
  object-fit: contain;
}

/* Tables */
.table-wrap {
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--surface-2);
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

th {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
}

tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.td-strong {
  font-weight: 700;
  color: var(--text);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.badge-good {
  background: rgba(61, 214, 140, 0.15);
  color: var(--good);
}

.badge-warn {
  background: rgba(245, 213, 71, 0.12);
  color: var(--accent);
}

/* Bonus split */
.bonus-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

@media (max-width: 820px) {
  .bonus-split {
    grid-template-columns: 1fr;
  }
}

.media-framed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}

.media-framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-yellow {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid rgba(245, 213, 71, 0.22);
  color: var(--text);
  font-size: 14px;
}

.warn-box {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.22);
  font-size: 14px;
}

/* Game tabs */
.tabs {
  margin-bottom: 14px;
}

.tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tab-headers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-headers label {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

#tab-slots:checked ~ .tab-headers label[for="tab-slots"],
#tab-live:checked ~ .tab-headers label[for="tab-live"],
#tab-crash:checked ~ .tab-headers label[for="tab-crash"] {
  background: rgba(245, 213, 71, 0.15);
  border-color: rgba(245, 213, 71, 0.35);
  color: var(--accent);
}

.tab-panels {
  margin-top: 14px;
}

.tab-panel {
  display: none;
}

#tab-slots:checked ~ .tab-panels .panel-slots,
#tab-live:checked ~ .tab-panels .panel-live,
#tab-crash:checked ~ .tab-panels .panel-crash {
  display: block;
}

.games-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.game-tile:hover img,
.game-tile:focus-within img {
  transform: scale(1.04);
}

.game-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  background: rgba(10, 14, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.game-tile:hover .game-tile-overlay,
.game-tile:focus-within .game-tile-overlay {
  opacity: 1;
  visibility: visible;
}

.game-tile-btn {
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.game-tile-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.game-tile-btn:focus {
  outline: none;
  box-shadow: var(--focus);
}

.game-tile-btn--play {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.game-tile-btn--play:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.game-tile-btn--demo {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.game-tile-btn--demo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 213, 71, 0.35);
}

/* Touch / keine Hover: Buttons dauerhaft unten sichtbar */
@media (hover: none), (pointer: coarse) {
  .game-tile img {
    transform: none;
  }

  .game-tile:hover img,
  .game-tile:focus-within img {
    transform: none;
  }

  .game-tile-overlay {
    opacity: 1;
    visibility: visible;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(10, 14, 20, 0.82) 65%, rgba(10, 14, 20, 0.94) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-tile img {
    transition: none;
  }

  .game-tile:hover img,
  .game-tile:focus-within img {
    transform: none;
  }

  .game-tile-overlay {
    transition: none;
  }

  .game-tile-btn {
    transition: none;
  }

  .game-tile-btn:hover {
    transform: none;
  }
}

/* Payout row */
.pay-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 260px);
  gap: 18px;
  align-items: start;
}

@media (max-width: 820px) {
  .pay-row {
    grid-template-columns: 1fr;
  }
}

.coin-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coin-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  object-fit: contain;
  padding: 6px;
}

.withdraw-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 214, 140, 0.35);
  background: rgba(61, 214, 140, 0.06);
}

.withdraw-card h4 {
  margin: 0 0 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.withdraw-card .amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--good);
}

.withdraw-card .ok {
  font-size: 13px;
  color: var(--muted);
}

/* Triple bottom cards */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .triple-grid {
    grid-template-columns: 1fr;
  }
}

.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.step-pill {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.step-pill span {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq .faq-body {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Comparison highlight row */
tr.row-highlight td {
  background: rgba(245, 213, 71, 0.08);
  box-shadow: inset 0 0 0 1px rgba(245, 213, 71, 0.25);
}

/* Final CTA */
.final-cta {
  margin-top: 36px;
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.final-cta .rating-score {
  font-size: 36px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #070a10;
  padding: 40px 0 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 24px;
}

@media (max-width: 720px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-columns strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-columns a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
}

.footer-columns a:hover {
  color: var(--text);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-trust span,
.footer-trust a {
  font-size: 13px;
  color: var(--muted);
}

.footer-trust a:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(184, 192, 204, 0.65);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Inner pages: compact hero */
.page-hero {
  padding: 22px 0 8px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

/* Lists in article */
.article-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.article-list li {
  margin: 8px 0;
}
