:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #5d6878;
  --line: #dce3ec;
  --blue: #2f7bff;
  --green: #10a47a;
  --gold: #f7b955;
  --red: #b42318;
  --soft-blue: #e8f1ff;
  --soft-green: #e8f7f0;
  --soft-gold: #fff5df;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(20, 32, 51, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.05rem;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 168px;
  height: auto;
}

.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 0.88rem;
  min-width: 0;
}

.nav a {
  flex: 0 0 auto;
  color: var(--ink);
  padding: 7px 9px;
  border-radius: 7px;
  white-space: nowrap;
  text-decoration: none;
}

.nav a:hover {
  background: var(--soft-blue);
}

.nav a.is-current {
  background: #111827;
  color: white;
}

.hero {
  min-height: 60vh;
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(246, 248, 251, 0.98), rgba(246, 248, 251, 0.88) 42%, rgba(246, 248, 251, 0.26) 76%), var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1180px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 66px 20px 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 780;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 5.25rem);
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(2.25rem, 5.2vw, 4.4rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #344055;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 940px;
  margin-top: 24px;
}

.hero-proof span {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 5px 8px;
  align-items: center;
  border: 1px solid rgba(201, 217, 239, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 11px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.hero-proof .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.hero-proof strong,
.hero-proof small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-proof strong {
  color: var(--ink);
  line-height: 1.12;
}

.hero-proof small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 760;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  background: #26364f;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--soft-blue);
}

.section {
  padding: 54px 20px;
}

.section.alt {
  background: white;
  border-block: 1px solid var(--line);
}

.wrap {
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--gold);
  background: var(--soft-gold);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #523b16;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.input,
.select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.toolbar .input {
  max-width: 320px;
}

.toolbar .select {
  max-width: 230px;
}

.toolbar-status {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  contain: inline-size;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  scrollbar-color: #b8c7da transparent;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.detail-table-wrap table {
  table-layout: fixed;
}

.detail-table-wrap th,
.detail-table-wrap td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #344055;
  background: #f9fbfd;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

tr:last-child td {
  border-bottom: 0;
}

.rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 850;
}

.score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--green);
  font-weight: 900;
  font-size: 1.4rem;
}

.score small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--soft-blue);
  color: #16478f;
  font-size: 0.79rem;
  font-weight: 740;
}

.tag.green {
  background: var(--soft-green);
  color: #0a684f;
}

.tag.gold {
  background: var(--soft-gold);
  color: #765018;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.hub-card {
  display: grid;
  align-content: start;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid #c9d9ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
}

.card-icon .icon {
  width: 22px;
  height: 22px;
}

.hub-card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
}

.ranking-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.pick-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.pick-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.pick-rank {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
  font-weight: 900;
}

.pick-head h3 {
  font-size: 1.08rem;
}

.pick-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pick-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pick-metrics span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfe;
  padding: 9px;
}

.pick-metrics strong,
.pick-metrics small {
  display: block;
  overflow-wrap: anywhere;
}

.pick-metrics strong {
  color: var(--green);
  font-size: 1rem;
  line-height: 1.15;
}

.pick-metrics small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.pick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pick-actions .button {
  min-height: 40px;
  padding: 9px 12px;
}

.intent-strip {
  background: linear-gradient(180deg, #f8fafc, #eef5ff);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.intent-card {
  min-width: 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.intent-card:hover {
  border-color: #b8c7da;
  background: white;
  text-decoration: none;
}

.intent-card > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #c9d9ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
}

.intent-card span,
.intent-card strong,
.intent-card small {
  min-width: 0;
}

.intent-card strong {
  display: block;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.intent-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.payment-finder {
  background: #f8fafc;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-method-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.payment-method-card:hover {
  border-color: #b8c7da;
  background: #fbfcfe;
  text-decoration: none;
}

.payment-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d9ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
}

.payment-icon .icon {
  width: 22px;
  height: 22px;
}

.payment-copy,
.payment-copy strong,
.payment-copy small,
.payment-factors {
  min-width: 0;
  overflow-wrap: anywhere;
}

.payment-copy strong {
  display: block;
  line-height: 1.2;
}

.payment-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.payment-metrics span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfe;
  padding: 9px;
}

.payment-metrics b,
.payment-metrics small {
  display: block;
  overflow-wrap: anywhere;
}

.payment-metrics b {
  color: var(--green);
  line-height: 1.15;
}

.payment-metrics small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.payment-factors {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
}

.casino-goal-grid {
  margin-bottom: 24px;
}

.casino-goal-card {
  align-content: start;
}

.bonus-finder {
  background: #f8fafc;
}

.bonus-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bonus-type-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.bonus-type-card:hover {
  border-color: #b8c7da;
  background: #fbfcfe;
  text-decoration: none;
}

.bonus-type-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d9ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
}

.bonus-type-icon .icon {
  width: 22px;
  height: 22px;
}

.bonus-type-copy,
.bonus-type-copy strong,
.bonus-type-copy small,
.bonus-risk {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bonus-type-copy strong {
  display: block;
  line-height: 1.2;
}

.bonus-type-copy small,
.bonus-risk {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.bonus-type-copy small {
  margin-top: 5px;
}

.bonus-risk {
  grid-column: 1 / -1;
}

.finder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  padding: 18px;
  margin-bottom: 20px;
}

.finder-panel label {
  display: grid;
  gap: 8px;
  color: #344055;
  font-weight: 780;
}

.finder-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.finder-label .icon {
  color: var(--green);
}

.finder-panel .input {
  max-width: none;
}

.result-count {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.empty-state {
  margin-top: 14px;
}

.compact-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.compact-link {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  text-decoration: none;
}

.compact-link:hover {
  border-color: #b8c7da;
  background: #fbfcfe;
  text-decoration: none;
}

.compact-link strong,
.compact-link span {
  overflow-wrap: anywhere;
}

.compact-link span {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
  margin: 10px 0 6px;
}

.list-clean {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.list-clean li:last-child {
  border-bottom: 0;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(130px, 220px) 1fr 70px;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.bar-track {
  height: 12px;
  background: #e8edf4;
  border-radius: 999px;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.review-hero {
  background: white;
  border-bottom: 1px solid var(--line);
}

.review-hero .wrap {
  padding: 52px 20px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fbfcfe;
}

.fact strong {
  display: block;
  font-size: 1.1rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-summary {
  padding-block: 30px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.comparison-decision {
  padding-block: 30px;
  background: linear-gradient(180deg, #f8fafc, #eef5ff);
  border-bottom: 1px solid var(--line);
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.decision-main h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
}

.decision-main p {
  margin: 12px 0 0;
  color: var(--muted);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.summary-main h2 {
  max-width: 680px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
}

.summary-main p {
  margin: 12px 0 0;
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
  font-weight: 760;
  text-decoration: none;
}

.quick-links a:hover {
  background: var(--soft-blue);
  text-decoration: none;
}

.fit-grid {
  align-items: stretch;
}

.fit-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.fit-card h3,
.fit-card p {
  margin: 0;
}

.fit-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d9ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff9eb);
  color: var(--blue);
}

.fit-icon .icon {
  width: 22px;
  height: 22px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  padding: 14px;
}

.summary-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.summary-item .summary-label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.summary-label .icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.summary-item strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.summary-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.rating-form {
  display: grid;
  gap: 12px;
}

.rating-form label {
  display: grid;
  gap: 6px;
  color: #344055;
  font-weight: 720;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px 18px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #101827;
  color: #dce3ec;
  padding: 36px 20px;
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer .small {
  color: #b7c2d1;
}

.is-hidden {
  display: none;
}

@media (max-width: 860px) {
  .nav-wrap,
  .section-head,
  .site-footer .wrap {
    display: block;
  }

  .nav {
    justify-content: flex-start;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    padding: 8px 10px;
  }

  table {
    min-width: 760px;
    font-size: 0.92rem;
  }

  .detail-table-wrap table {
    min-width: 620px;
  }

  th,
  td {
    padding: 11px 12px;
  }

  .table-wrap:not(.ranking-table-wrap) th:first-child,
  .table-wrap:not(.ranking-table-wrap) td:first-child,
  .ranking-table-wrap th:nth-child(2),
  .ranking-table-wrap td:nth-child(2) {
    position: sticky;
    left: 0;
    z-index: 2;
    background: white;
    box-shadow: 1px 0 0 var(--line);
  }

  .table-wrap:not(.ranking-table-wrap) th:first-child,
  .ranking-table-wrap th:nth-child(2) {
    z-index: 3;
    background: #f9fbfd;
  }

  .ranking-table-wrap th:nth-child(2),
  .ranking-table-wrap td:nth-child(2) {
    min-width: 220px;
    max-width: 240px;
  }

  .brand-logo {
    width: 148px;
  }

  .hero {
    min-height: 54vh;
    background-image: linear-gradient(180deg, rgba(246, 248, 251, 0.98), rgba(246, 248, 251, 0.84)), var(--hero-image);
  }

  .hero-inner {
    padding: 46px 20px 34px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .hero-proof span {
    min-height: 42px;
    padding: 9px;
  }

  .hero-proof small {
    display: none;
  }

  .hero-actions {
    margin-top: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
  }

  .lead {
    max-width: 100%;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .fact-grid,
  .summary-panel,
  .summary-grid,
  .decision-panel,
  .decision-grid,
  .finder-panel,
  .intent-grid,
  .ranking-picks,
  .payment-method-grid,
  .bonus-type-grid,
  .compact-link-grid {
    grid-template-columns: 1fr;
  }

  .pick-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-panel {
    padding: 18px;
  }

  .decision-panel {
    padding: 18px;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
