:root {
  --brand: #0f6e63;
  --brand-dark: #0b5c55;
  --accent: #1fd79a;
  --accent-hover: #16c08a;
  --text-strong: #16181c;
  --text-weak: #5c6069;
  --stroke-strong: #8e939b;
  --stroke-weak: #e4e6e9;
  --fill: #f5f6f7;
  --white: #ffffff;
  --black: #050708;
  --radius: 8px;
  --shadow-raised: 0 1px 2px rgba(22, 24, 28, .08), 0 4px 16px rgba(15, 110, 99, .06);
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --space-xxl: 80px;
  --font-heading: "Roboto Slab", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text-strong);
  background: var(--fill);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
a,
td,
th,
.badge,
.stat,
.offer,
.method-card {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
}

h2 {
  font-size: 28px;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.wrap {
  width: min(1232px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: var(--text-strong);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.nav-links a {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.button,
.button-outline,
.card-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button {
  color: var(--text-strong);
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(31, 215, 154, .18), 0 10px 24px rgba(31, 215, 154, .18);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-hover);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: var(--stroke-strong);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, .06);
  border-color: var(--white);
}

.hero {
  color: var(--white);
  background: var(--black);
  border-bottom: 4px solid var(--accent);
}

.hero-inner {
  min-height: 332px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-xl);
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.6;
}

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

.hero-panel {
  min-width: 0;
  overflow: hidden;
  padding: var(--space-m);
  border: 1px solid rgba(142, 147, 155, .4);
  border-radius: var(--radius);
  background: rgba(22, 24, 28, .56);
}

.hero-panel h2 {
  color: var(--white);
  font-size: 18px;
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.content-shell {
  padding-block: 40px 40px;
}

.content-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: var(--space-m);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 84px;
  display: grid;
  gap: var(--space-l);
}

.side-block h2 {
  margin: 0 0 12px;
  color: var(--text-weak);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.side-block a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-strong);
  font-weight: 700;
}

.side-block a.active {
  color: var(--white);
  background: var(--text-strong);
}

.toc-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.toc-card.toc-card--past-faq {
  opacity: 0;
  pointer-events: none;
}

.toc-title {
  margin: 0 0 6px;
  padding-left: 12px;
  color: var(--text-weak);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.toc-card ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-card a {
  display: block;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.toc-card a.active,
.toc-card a.active:hover,
.toc-card a.active:focus {
  background: var(--text-strong);
  color: var(--white);
}

.toc-card a:hover,
.toc-card a:focus {
  background: rgba(31, 215, 154, .14);
  color: var(--text-strong);
}

.main-stack {
  display: grid;
  gap: var(--space-m);
  min-width: 0;
}

.page-index {
  padding-block: var(--space-xl) var(--space-xxl);
  background: var(--white);
}

.page-index h1 {
  color: var(--text-strong);
  font-size: clamp(38px, 5vw, 56px);
  text-transform: none;
}

.page-index .lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--text-weak);
}

.page-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-m);
  margin-top: var(--space-xl);
}

.page-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-raised);
}

.page-card-top {
  min-height: 196px;
  display: grid;
  place-items: center;
  padding: var(--space-m);
  background: var(--fill);
  color: var(--text-strong);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.page-card-bottom {
  min-height: 100px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: var(--space-s);
  background: var(--brand-dark);
  color: var(--white);
  text-align: center;
}

.page-card-bottom h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
  text-transform: none;
}

.page-card-bottom p {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.blog-index {
  padding-block: 40px var(--space-xxl);
  background: var(--white);
  border-top: 1px solid var(--stroke-weak);
}

.blog-index--tight {
  padding-bottom: 28px;
}

.blog-intro {
  margin-bottom: 34px;
}

.blog-intro h1 {
  max-width: 760px;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: clamp(38px, 4vw, 42px);
  line-height: 1.15;
  text-transform: none;
}

.blog-intro p {
  margin-top: 18px;
  color: var(--text-weak);
  font-size: 19px;
  line-height: 1.5;
}

.blog-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-m);
}

.blog-card {
  min-height: 229px;
  display: block;
  padding: 31px 24px 24px;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--fill);
  box-shadow: var(--shadow-raised);
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(15, 110, 99, .32);
  box-shadow: 0 1px 2px rgba(22, 24, 28, .08), 0 10px 24px rgba(15, 110, 99, .1);
}

.blog-card-kicker {
  margin: 0;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 14px;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.25;
  text-transform: none;
}

.blog-card p:not(.blog-card-kicker):not(.blog-card-meta) {
  margin-top: 10px;
  color: var(--text-weak);
  font-size: 16px;
  line-height: 1.5;
}

.blog-card-meta {
  margin-top: 12px;
  color: var(--text-weak);
  font-size: 16px;
  line-height: 1.5;
}

.policy-shell {
  padding-block: var(--space-xl) var(--space-l);
  background: var(--fill);
}

.policy-page {
  display: grid;
  gap: var(--space-m);
  max-width: none;
}

.policy-page section {
  display: grid;
  gap: 12px;
  padding-top: var(--space-m);
  border-top: 1px solid var(--stroke-weak);
}

.policy-page h2 {
  font-size: 26px;
  text-transform: none;
}

.policy-page p,
.policy-page li {
  color: var(--text-weak);
  font-size: 18px;
  line-height: 1.65;
}

.longform a,
.policy-page a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.longform a:hover,
.longform a:focus-visible,
.policy-page a:hover,
.policy-page a:focus-visible {
  color: var(--text-strong);
}

.policy-page ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.faq-list,
.policy-page section > details {
  display: grid;
  gap: 8px;
}

.faq-list details,
.policy-page section > details {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.faq-list summary,
.policy-page section > details > summary {
  cursor: pointer;
  padding: 18px 16px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-list details p,
.policy-page section > details > p {
  margin: 0;
  padding: 0 36px 18px;
  font-size: 16px;
  line-height: 1.6;
}

.panel,
.info-card,
.review-card,
.method-card,
.table-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-raised);
}

.author-rg-shell {
  padding: 0 0 var(--space-l);
  background: var(--fill);
}

.reviews-hub-index {
  padding-bottom: var(--space-m);
}

.reviews-hub-index + .reviews-hub-author {
  padding-top: var(--space-s);
}

.reviews-hub-copy {
  margin-top: var(--space-xl);
}

.payment-detail-index {
  padding-top: var(--space-m);
}

.payment-detail-index .reviews-hub-copy {
  margin-top: 0;
}

.payment-detail-index .policy-page section:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-s);
}

.article-mini-card {
  min-width: 0;
  padding: var(--space-s);
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(22, 24, 28, .06), 0 8px 18px rgba(15, 110, 99, .04);
}

.article-mini-card .article-card-kicker {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.article-mini-card p:not(.article-card-kicker) {
  margin-top: 8px;
  color: var(--text-weak);
  font-size: 16px;
  line-height: 1.55;
}

.article-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.author-rg-stack {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.policy-page > .author-rg-stack {
  margin-top: 0;
}

.content-grid .policy-page > .author-rg-stack {
  width: calc(100% + 240px + var(--space-m));
  margin-left: calc((240px + var(--space-m)) * -1);
}

.gc-author-card,
.gc-rg-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(22, 24, 28, .06), 0 8px 18px rgba(15, 110, 99, .04);
}

.gc-author-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "avatar meta"
    "bio bio";
  align-items: start;
  column-gap: 16px;
  row-gap: 16px;
  min-height: 255px;
  padding: 24px;
}

.gc-author-head {
  display: contents;
}

.gc-author-photo {
  grid-area: avatar;
  width: 112px;
  height: 112px;
  aspect-ratio: 1;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(22, 24, 28, .08);
  background: var(--fill);
}

.gc-author-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.gc-author-image[src*="oksana-kumetska"] {
  width: 142%;
  height: 142%;
}

.gc-author-meta {
  grid-area: meta;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 0;
}

.gc-author-card .gc-author-kicker {
  margin: 0;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gc-author-card .gc-author-name {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.gc-author-card .gc-author-role {
  margin: 0;
  color: var(--text-weak);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gc-author-card .gc-author-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  color: var(--text-weak);
  font-size: 14px;
  line-height: 1.5;
}

.gc-linkedin-glyph {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: var(--brand-dark);
}

.gc-linkedin-glyph svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.gc-author-social a,
.gc-rg-card a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.gc-author-card .gc-author-bio,
.gc-rg-card p {
  color: var(--text-weak);
  font-size: 15px;
  line-height: 1.6;
}

.gc-author-card .gc-author-bio {
  grid-area: bio;
  margin: 0;
  max-width: none;
}

.gc-rg-card {
  display: block;
  padding: 20px;
}

.gc-rg-card .gc-rg-heading {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.gc-rg-card p:not(.gc-rg-heading) {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-m);
  padding: var(--space-m);
  border-bottom: 1px solid var(--stroke-weak);
}

.panel-head p {
  max-width: 680px;
  margin-top: 8px;
  color: var(--text-weak);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-s);
}

.stat {
  min-width: 0;
  overflow: hidden;
  min-height: 116px;
  padding: var(--space-s);
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-raised);
}

.stat::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-weak);
  font-size: 14px;
}

.casino-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-s);
  padding: var(--space-m);
  counter-reset: casino-rank;
}

.review-card {
  position: relative;
  min-height: 438px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 16px;
  background: var(--fill);
  box-shadow: 0 0 0 1px rgba(31, 215, 154, .1), 0 12px 30px rgba(31, 215, 154, .12);
  text-align: center;
  transition: box-shadow 150ms ease, border-color 150ms ease;
  counter-increment: casino-rank;
}

.casino-list .review-card::before {
  content: counter(casino-rank);
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 700;
}

.review-card:hover,
.review-card:focus-within {
  border-color: rgba(31, 215, 154, .5);
  box-shadow: 0 0 0 1px rgba(31, 215, 154, .28), 0 16px 40px rgba(31, 215, 154, .18);
}

.casino-logo {
  width: 112px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid var(--text-strong);
  background: var(--black);
  font-family: var(--font-heading);
  font-size: 22px;
  object-fit: contain;
  padding: 0;
}

.review-copy {
  min-width: 0;
  width: 100%;
  display: contents;
}

.review-copy h2,
.method-card h2,
.info-card h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 22px;
}

.review-copy h2 {
  width: 100%;
  margin-top: 16px;
  font-size: 20px;
}

.review-copy p,
.method-card p,
.info-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 8px;
  color: var(--text-weak);
}

.review-copy p {
  width: 100%;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.badges {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 8px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.casino-list .payment-methods {
  min-height: 34px;
  justify-content: center;
  margin: 10px 0 8px;
}

.payment-methods span {
  width: 42px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
}

.payment-methods img {
  max-width: 34px;
  max-height: 18px;
  object-fit: contain;
}

.badge {
  max-width: 100%;
  overflow: hidden;
  padding: 4px 8px;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  color: var(--text-weak);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.review-action {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.rating {
  font-family: var(--font-heading);
  font-size: 17px;
  text-align: center;
}

.rating span {
  color: var(--text-weak);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

.card-button {
  width: 100%;
  color: var(--text-strong);
  white-space: nowrap;
  background: var(--accent);
}

.card-button.primary:hover,
.card-button.primary:focus-visible {
  background: var(--accent-hover);
}

.card-button.secondary {
  border-color: var(--stroke-weak);
  background: var(--white);
  color: var(--text-strong);
}

.card-button.secondary:hover,
.card-button.secondary:focus-visible {
  border-color: var(--stroke-strong);
  background: var(--white);
}

.method-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-s);
  padding: var(--space-m);
}

.policy-page .info-grid {
  padding: 0;
}

.method-card,
.info-card {
  min-height: 190px;
  padding: var(--space-s);
  background: var(--fill);
}

.review-page .info-card {
  position: relative;
  min-height: 0;
  padding: 22px 24px;
  border-color: #b8ddd5;
  background: linear-gradient(180deg, #edf8f5 0%, #f8fbfa 100%);
  box-shadow: 0 1px 2px rgba(22, 24, 28, .06), 0 14px 30px rgba(15, 110, 99, .08);
}

.review-page .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-dark);
}

.review-page .info-card:nth-child(2) {
  border-color: #d7dce1;
  background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
}

.review-page .info-card:nth-child(2)::before {
  background: var(--text-strong);
}

.review-page .info-card:nth-child(3) {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  box-shadow: 0 18px 34px rgba(11, 92, 85, .18);
}

.review-page .info-card:nth-child(3)::before {
  background: var(--accent);
}

.review-page .info-card h2 {
  color: var(--brand-dark);
  font-size: 20px;
}

.review-page .info-card li,
.review-page .info-card p {
  color: var(--text-weak);
}

.review-page .info-card li::marker {
  color: var(--brand-dark);
}

.review-page .info-card:nth-child(3) h2,
.review-page .info-card:nth-child(3) p {
  color: var(--white);
}

.method-logo-row {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.method-logo-row span {
  width: 46px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke-weak);
  border-radius: var(--radius);
  background: var(--white);
}

.method-logo-row img {
  max-width: 36px;
  max-height: 20px;
  object-fit: contain;
}

.method-card h2,
.info-card h2 {
  font-size: 19px;
  text-transform: uppercase;
}

.method-meta {
  display: grid;
  gap: 6px;
  margin-top: var(--space-s);
  color: var(--text-weak);
  font-size: 14px;
}

.method-meta strong {
  color: var(--text-strong);
}

.table-card {
  padding: 0;
}

.table-title {
  padding: var(--space-s);
  color: var(--white);
  background: var(--brand-dark);
  font-family: var(--font-heading);
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-weak);
  font-size: 14px;
}

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

th {
  color: var(--text-weak);
  font-weight: 700;
}

td:first-child {
  color: var(--text-strong);
  font-weight: 700;
}

.footer {
  color: rgba(255, 255, 255, .72);
  background: var(--black);
}

.footer .wrap {
  padding-block: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: var(--space-l);
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer p {
  max-width: 320px;
  margin-top: var(--space-s);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  margin-top: var(--space-xl);
  padding-top: var(--space-m);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-inner,
  .content-grid,
  .review-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .content-grid .policy-page > .author-rg-stack {
    width: 100%;
    margin-left: 0;
  }

  .stat-grid,
  .casino-list,
  .method-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .blog-post-shell .sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, 1232px);
  }

  h1 {
    font-size: 40px;
  }

  .nav {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding-block: 8px;
  }

  .nav-links {
    margin-left: auto;
    justify-content: flex-end;
    gap: var(--space-s);
  }

  .hero-inner {
    min-height: auto;
    padding-block: var(--space-l);
  }

  .stat-grid,
  .method-grid,
  .article-card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .page-index {
    padding-block: var(--space-l) var(--space-xl);
  }

  .page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-s);
    margin-top: var(--space-l);
  }

  .page-card-top {
    min-height: 136px;
    padding: var(--space-s);
    font-size: 24px;
  }

  .page-card-bottom {
    min-height: 76px;
    padding: 12px 8px;
  }

  .page-card-bottom h2 {
    font-size: 16px;
  }

  .page-card-bottom p {
    font-size: 12px;
  }

  .blog-index {
    padding-block: var(--space-l) var(--space-xl);
  }

  .blog-intro {
    margin-bottom: var(--space-m);
  }

  .blog-intro h1 {
    font-size: 36px;
  }

  .blog-intro p {
    font-size: 17px;
  }

  .blog-card-list {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .casino-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xs);
    padding: var(--space-s);
  }

  .review-card {
    min-height: 358px;
    padding: 18px 8px 10px;
  }

  .casino-logo {
    width: 86px;
    height: 66px;
  }

  .review-copy h2 {
    font-size: 16px;
  }

  .casino-list .payment-methods {
    min-height: 30px;
    gap: 4px;
  }

  .casino-list .payment-methods span {
    width: 34px;
    height: 24px;
  }

  .casino-list .payment-methods img {
    max-width: 28px;
    max-height: 16px;
  }

  .review-copy p {
    min-height: 64px;
    padding: 8px;
    font-size: 13px;
  }

  .badges {
    font-size: 12px;
  }

  .card-button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .panel-head,
  .footer-bottom {
    flex-direction: column;
  }

  .footer .wrap {
    padding-block: 36px 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer p {
    max-width: none;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .16em;
  }

  .footer h3::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(31, 215, 154, .38);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
  }

  .gc-author-card {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "avatar meta"
      "bio bio";
    gap: 14px 12px;
    min-height: 0;
    padding: 16px;
  }

  .gc-author-head {
    display: contents;
  }

  .gc-author-photo {
    grid-area: avatar;
    width: 88px;
    height: 88px;
    border-radius: 4px;
  }

  .gc-author-meta {
    grid-area: meta;
    gap: 4px;
    padding-top: 0;
  }

  .gc-author-card .gc-author-kicker {
    margin: 0;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .gc-author-card .gc-author-name {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
  }

  .gc-author-card .gc-author-role {
    margin: 0;
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: .04em;
  }

  .gc-author-card .gc-author-social {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .gc-author-card .gc-author-bio {
    grid-area: bio;
    font-size: 15px;
    line-height: 1.5;
  }

  .gc-rg-card {
    padding: 16px;
  }

  .gc-rg-card .gc-rg-heading {
    font-size: 18px;
    line-height: 1.3;
  }
}
