@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Onest-Variable.ttf") format("truetype-variations");
}

:root {
  --font: "Onest", "Segoe UI", Arial, sans-serif;
  --white: #FFFFFF;
  --ink: #17213A;
  --text: #243047;
  --muted: #5F6C7B;
  --blue: #2458A6;
  --blue-dark: #173E7A;
  --blue-soft: #EDF3FC;
  --link: #0000EE;
  --link-hover: #0000A8;
  --red: #C6283D;
  --berry: var(--red);
  --surface: #F4F6F8;
  --surface-strong: #E9EDF2;
  --border: #D8DEE8;
  --border-strong: #A9B4C4;
  --card-border: #8293AA;
  --gold: #A76700;
  --success: #14745B;
  --radius: 10px;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --page: 1184px;
  --reading: 68ch;
  --header: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--link-hover);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

::selection {
  background: var(--blue-soft);
  color: var(--ink);
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  margin-bottom: var(--s3);
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1;
}

h2 {
  margin-bottom: var(--s2);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h3 {
  margin-bottom: var(--s1);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

p {
  margin-bottom: var(--s2);
}

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

.reading-width {
  max-width: var(--reading);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  min-height: 48px;
  padding: 10px 16px;
  translate: 0 -140%;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: var(--header);
  align-items: center;
  gap: var(--s4);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.1875rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-name-play {
  color: var(--red);
}

.brand-name-atlas {
  color: var(--blue);
}

.brand-country {
  padding-left: 9px;
  border-left: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: var(--s1);
}

.primary-nav a {
  display: inline-flex;
  min-height: 48px;
  padding-inline: 10px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  text-decoration: underline;
}

.primary-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 2.5px;
}

.breadcrumbs {
  display: flex;
  margin: 0 0 var(--s3);
  padding: 0;
  flex-wrap: wrap;
  gap: 5px 9px;
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  color: var(--muted);
  content: "/";
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}

.page-hero {
  padding-block: var(--s5);
  border-bottom: 1px solid #CAD7EA;
  background: var(--blue-soft);
}

.page-hero--home {
  padding-block: 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: center;
  gap: var(--s4);
}

.eyebrow,
.section-kicker,
.card-category,
.record-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.4;
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: var(--s2);
  color: var(--text);
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  line-height: 1.6;
}

.hero-note {
  padding-block: var(--s2);
  border-block: 2px solid var(--ink);
}

.hero-note strong {
  display: block;
  margin-bottom: var(--s1);
  color: var(--ink);
  font-size: 1.125rem;
}

.hero-note p:last-child {
  margin: 0;
}

.hero-feature,
.hero-brand {
  display: grid;
  min-width: 0;
  padding: var(--s3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  gap: var(--s2);
}

.hero-feature h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-feature-brand {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: var(--s2);
}

.hero-feature-logo,
.hero-brand-logo {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: #030205;
  place-items: center;
}

.hero-feature-logo {
  width: 140px;
  height: 64px;
  padding: 4px;
}

.hero-feature-logo img,
.hero-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-feature-logo img,
.hero-brand:not(.hero-network) .hero-brand-logo img {
  object-fit: cover;
  object-position: center 65%;
}

.hero-feature .hero-feature-logo img[src$="mystake-logo.webp"],
.hero-brand:not(.hero-network) .hero-brand-logo img[src$="mystake-logo.webp"] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 8px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.hero-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.35;
}

.hero-feature p,
.hero-brand p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-feature .button {
  width: 100%;
}

.hero-brand {
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
}

.hero-brand-logo {
  width: 160px;
  height: 56px;
  padding: 4px;
}

.hero-brand:not(.hero-network) {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-brand:not(.hero-network) .hero-brand-logo {
  width: 200px;
  height: 64px;
}

.hero-network {
  grid-template-columns: 96px minmax(0, 1fr);
}

.hero-network .hero-brand-logo {
  width: 96px;
  height: 76px;
  padding: 12px;
  background: var(--white);
}

.hero-brand-copy .record-label {
  margin-bottom: 4px;
}

.hero-brand h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.hero-title-brand,
.hero-brand .hero-brand-copy h2 {
  color: var(--red);
}

.hero-art {
  display: grid;
  min-height: 224px;
  place-items: center;
}

.hero-art img {
  width: min(100%, 232px);
  height: 232px;
  object-fit: contain;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.9375rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
}

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

.button-secondary:hover {
  border-color: #090F1D;
  background: #090F1D;
  color: var(--white);
}

.text-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.section {
  padding-block: var(--s6);
}

.page-hero + .section {
  padding-top: var(--s4);
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-heading {
  margin-bottom: var(--s4);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  max-width: 72ch;
  margin: var(--s1) 0 0;
  color: var(--muted);
}

.section--centred > .page-wrap {
  max-width: 980px;
}

.section--centred .section-heading {
  max-width: 72ch;
  text-align: center;
}

.section--centred .section-heading,
.section--centred .section-intro,
.section--centred .reading-width {
  margin-inline: auto;
}

.section--centred .article-copy > .section-kicker,
.section--centred .article-copy > h2,
.section--centred .section--split > div > .section-kicker,
.section--centred .section--split > div > h2 {
  text-align: center;
}

.section--centred .article-copy > p:not(.section-kicker),
.section--centred .section--split > div > p:not(.section-kicker),
.section--centred > .page-wrap > .reading-width,
.section--centred .fact-strip {
  text-align: left;
}

.section--centred .article-layout,
.section--centred .section--split {
  align-items: center;
}

.section--centred .check-list,
.section--centred .table-region,
.section--centred .aside-note {
  text-align: left;
}

main p a:not(.button),
main li a:not(.button) {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: start;
  gap: var(--s6);
}

.section--split-reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.open-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.open-list li {
  display: grid;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--border);
  grid-template-columns: 1fr;
}

.open-list h3 {
  margin-bottom: 5px;
}

.open-list p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.fact-strip {
  display: grid;
  padding-block: var(--s3);
  border-block: 2px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.fact-strip div + div {
  padding-left: var(--s4);
  border-left: 1px solid var(--border-strong);
}

.fact-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.fact-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

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

.casino-card {
  display: grid;
  min-width: 0;
  min-height: 404px;
  padding: 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-rows: 96px 22px 18px 53px 56px 25px 18px 48px;
  align-content: start;
  gap: 6px;
}

.casino-card > * {
  min-width: 0;
  max-width: 100%;
}

.casino-logo {
  display: grid;
  height: 96px;
  padding: 0 4px 8px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  place-items: center;
}

.casino-logo-frame {
  display: grid;
  width: 100%;
  height: 86px;
  padding: 12px 16px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #030205;
  place-items: center;
}

.casino-logo img {
  width: auto;
  max-width: 78%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transform: none;
}

.casino-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 1.0625rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.casino-rating {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 780;
}

.star-meter {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #C8CED8;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: 1;
}

.star-meter::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-fill);
  overflow: hidden;
  color: var(--gold);
  content: "★★★★★";
}

.casino-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.casino-stats {
  display: grid;
  margin: 0;
  padding-block: var(--s1);
  border-block: 1px solid var(--border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 7px;
  list-style: none;
}

.casino-stats li {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.casino-stats li:nth-child(even) {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.payment-row {
  display: grid;
  width: 100%;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.payment-row img {
  width: 100%;
  max-width: 30px;
  height: 18px;
  justify-self: center;
  object-fit: contain;
}

.casino-perks {
  margin: 0;
  overflow: hidden;
  color: var(--berry);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.casino-card .button {
  width: 100%;
  align-self: end;
}

.module-note {
  max-width: 72ch;
  margin: var(--s3) 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.directory-tools {
  display: grid;
  margin-bottom: var(--s4);
  padding-bottom: var(--s4);
  border-bottom: 2px solid var(--ink);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--s3);
}

.field label {
  display: block;
  margin-bottom: var(--s1);
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.filter-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 376px));
  align-items: stretch;
  justify-content: center;
  gap: var(--s3);
}

.blog-card {
  display: grid;
  min-width: 0;
  min-height: 444px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-rows: auto 1fr;
}

.blog-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  padding: var(--s2);
  grid-template-rows: auto 64px 96px auto;
  align-content: start;
  gap: var(--s1);
}

.blog-card .card-category {
  margin: 0;
}

.blog-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-card .text-action {
  align-self: start;
  justify-self: start;
}

.profile-row {
  display: grid;
  padding-block: var(--s4);
  border-block: 2px solid var(--ink);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s4);
}

.profile-row h2,
.profile-row p {
  margin-bottom: var(--s1);
}

.sister-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s2);
}

.sister-card {
  display: grid;
  min-width: 0;
  min-height: 336px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-rows: 104px 1fr;
}

.sister-card-image {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: #030205;
  place-items: center;
}

.sister-card-image img {
  width: min(100%, 220px);
  height: 68px;
  object-fit: cover;
  object-position: center 65%;
}

.sister-card .sister-card-image img[src$="mystake-logo.webp"] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 32px), 220px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.sister-card-body {
  display: grid;
  padding: var(--s2);
  grid-template-rows: 44px 18px 84px 44px;
  align-content: start;
  gap: var(--s1);
}

.sister-card-body h3,
.sister-card-body .status,
.sister-card-body p {
  margin: 0;
}

.sister-card-body p {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.sister-card-body .button {
  width: 100%;
  margin-top: 0;
  align-self: start;
}

.network-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s2);
}

.network-card {
  display: grid;
  min-width: 0;
  min-height: 336px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-rows: 104px 1fr;
}

.network-card-image {
  display: grid;
  padding: var(--s2);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--blue-soft);
  place-items: center;
}

.network-card-image img {
  width: min(100%, 190px);
  height: 72px;
  object-fit: contain;
}

.network-card-body {
  display: grid;
  padding: var(--s2);
  grid-template-rows: 44px 18px 84px 44px;
  align-content: start;
  gap: var(--s1);
}

.network-card-body h3,
.network-card-body .status,
.network-card-body p {
  margin: 0;
}

.network-card-body p {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.network-card-body .button {
  width: 100%;
  margin-top: 0;
  align-self: start;
}

.status {
  display: inline-block;
  margin-bottom: var(--s2);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.table-region {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
}

caption {
  padding: var(--s2);
  border-bottom: 1px solid var(--border-strong);
  color: var(--ink);
  font-weight: 750;
  text-align: left;
}

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

th {
  background: var(--surface);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 750;
}

td {
  font-size: 0.875rem;
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) minmax(230px, 1fr);
  align-items: start;
  gap: var(--s6);
}

.article-copy,
.aside-note {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-copy h2 {
  margin-top: var(--s5);
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy li + li {
  margin-top: var(--s1);
}

.section-followup {
  max-width: 76ch;
  margin: var(--s3) 0 0;
}

.licence-cards,
.editorial-columns,
.review-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s4);
}

.licence-cards article,
.editorial-columns > div,
.review-steps article {
  padding-top: var(--s3);
  border-top: 2px solid var(--ink);
}

.licence-cards h3,
.editorial-columns h3,
.review-steps h3 {
  margin-bottom: var(--s1);
}

.licence-cards p,
.editorial-columns p,
.review-steps p {
  color: var(--text);
  font-size: 0.9375rem;
}

.licence-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: var(--s2);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  place-items: center;
}

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

.group-list,
.brand-overview + .brand-overview {
  margin-top: var(--s5);
}

.group-list article,
.group-detail .page-wrap {
  display: grid;
  padding-block: var(--s3);
  border-top: 1px solid var(--border-strong);
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: var(--s4);
}

.group-list article:first-child {
  border-top: 2px solid var(--ink);
}

.group-list h3,
.group-list p,
.group-detail h2,
.group-detail p {
  margin: 0;
}

.group-list article > p,
.group-list article > .text-action {
  grid-column: 2;
}

.group-list .text-action {
  margin-top: var(--s1);
  justify-self: start;
}

.group-detail .section-kicker {
  grid-column: 1;
}

.group-detail h2 {
  grid-column: 1;
}

.group-detail p {
  grid-column: 2;
}

.group-detail p + p {
  margin-top: var(--s2);
}

.brand-overview {
  padding-top: var(--s4);
  border-top: 2px solid var(--ink);
}

.brand-overview header {
  margin-bottom: var(--s2);
}

.brand-overview header h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.brand-homepage {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--s3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: cover;
  object-position: top center;
}

.brand-overview-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  align-items: start;
  gap: var(--s5);
}

.brand-overview-copy p:last-child {
  margin-bottom: 0;
}

.check-list,
.warning-list,
.decision-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.check-list li,
.warning-list li,
.decision-list li {
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.check-list--large li {
  padding-block: 18px;
}

.warning-list li {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: var(--s4);
}

.warning-list span {
  color: var(--text);
}

.decision-list {
  counter-reset: decision;
}

.decision-list li {
  display: grid;
  counter-increment: decision;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: var(--s2);
}

.decision-list li::before {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--blue-dark);
  content: counter(decision);
  font-size: 0.8125rem;
  font-weight: 800;
  place-items: center;
}

.decision-list strong {
  display: block;
  margin-bottom: 3px;
}

.decision-list p {
  margin: 0;
}

.source-note {
  margin-top: var(--s4);
  padding-block: var(--s2);
  border-block: 1px solid var(--border-strong);
}

.source-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.source-note p {
  margin: 0;
  font-size: 0.875rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s5);
}

.pros-cons section {
  padding-top: var(--s3);
  border-top: 2px solid var(--ink);
}

.pros-cons ul {
  margin: 0;
  padding-left: 1.25rem;
}

.pros-cons li + li {
  margin-top: var(--s1);
}

.timeline {
  border-top: 2px solid var(--ink);
}

.timeline article {
  display: grid;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--border);
  grid-template-columns: 100px minmax(0, 1fr);
  gap: var(--s3);
}

.timeline span {
  color: var(--blue-dark);
  font-size: 1.125rem;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 4px;
}

.timeline p {
  max-width: 72ch;
  margin: 0;
}

.aside-note {
  position: sticky;
  top: calc(var(--header) + var(--s3));
  padding-block: var(--s3);
  border-block: 2px solid var(--ink);
}

.aside-note p:last-child {
  margin-bottom: 0;
}

.faq {
  max-width: 850px;
  margin-inline: auto;
  border-top: 2px solid var(--ink);
}

.faq-section .section-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  min-height: 64px;
  padding: 18px 42px 18px 0;
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
}

.faq details p {
  max-width: 68ch;
  margin: -4px 0 var(--s3);
  color: var(--text);
}

.author-box {
  display: grid;
  padding: var(--s3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
  gap: var(--s3);
}

.author-image {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  object-fit: cover;
}

.author-copy p {
  margin: var(--s1) 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.author-copy .record-label,
.author-copy strong {
  display: block;
}

.author-copy .record-label {
  margin-bottom: var(--s1);
}

.author-copy strong {
  color: var(--ink);
}

.author-actions {
  display: flex;
  min-height: 40px;
  grid-column: 2;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: var(--s2);
}

.author-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 650;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s3);
}

.author-card {
  display: grid;
  min-height: 100%;
  padding: var(--s3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  grid-template-columns: 112px minmax(0, 1fr);
  gap: var(--s3);
}

.author-card-image {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  object-fit: cover;
}

.author-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.author-card h3 {
  margin: 0 0 2px;
}

.author-card .author-role {
  margin: 0 0 var(--s2);
  color: var(--ink);
  font-weight: 700;
}

.author-card-copy > p:not(.card-category):not(.author-role) {
  margin: 0;
  color: var(--text);
  font-size: 0.9375rem;
}

.author-card-actions {
  display: flex;
  min-height: 40px;
  margin-top: auto;
  padding-top: var(--s2);
  align-items: flex-end;
  justify-content: flex-end;
  gap: var(--s2);
}

.author-card-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 650;
}

.contact-form {
  display: grid;
  max-width: 700px;
  gap: var(--s3);
}

.site-footer {
  margin-top: var(--s6);
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.footer-main {
  display: grid;
  padding-block: 52px 44px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--s5);
}

.footer-brand p {
  max-width: 39ch;
  margin: var(--s2) 0 0;
  color: var(--text);
  font-size: 0.9375rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer-nav strong {
  margin-bottom: var(--s1);
  color: var(--ink);
  font-size: 0.9375rem;
}

.footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 540;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  min-height: 64px;
  padding-block: var(--s2);
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

.footer-bottom p {
  margin: 0;
  color: var(--text);
  font-size: 0.8125rem;
}

.empty-state {
  display: none;
  padding-block: var(--s4);
  border-block: 2px solid var(--ink);
}

.empty-state.is-visible {
  display: block;
}

@media (max-width: 900px) {
  :root {
    --header: 112px;
  }

  .page-wrap {
    width: min(calc(100% - 32px), var(--page));
  }

  .header-inner {
    display: grid;
    min-height: var(--header);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .primary-nav {
    display: grid;
    width: 100%;
    margin-left: 0;
    padding-bottom: var(--s1);
    border-top: 1px solid var(--border);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .primary-nav a {
    min-height: 48px;
    padding-inline: 4px;
    justify-content: center;
    font-size: 0.8125rem;
  }

  .hero-grid,
  .section--split,
  .section--split-reverse,
  .article-layout {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .licence-cards,
  .editorial-columns {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .brand-overview-copy {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .hero-grid {
    align-items: start;
  }

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

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

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

  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .group-list article,
  .group-detail .page-wrap {
    grid-template-columns: 1fr;
    gap: var(--s1);
  }

  .group-list article > p,
  .group-list article > .text-action,
  .group-detail .section-kicker,
  .group-detail h2,
  .group-detail p {
    grid-column: 1;
  }

  .blog-card {
    min-height: 0;
  }

  .aside-note {
    position: static;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  h1 {
    margin-bottom: var(--s2);
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .page-hero,
  .page-hero--home {
    padding-block: var(--s3);
  }

  .hero-grid {
    gap: var(--s2);
  }

  .hero-feature,
  .hero-brand {
    padding: var(--s2);
    gap: 12px;
  }

  .hero-feature-brand {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-feature-logo {
    width: 120px;
    height: 46px;
    padding: 4px;
  }

  .hero-feature p,
  .hero-brand p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .hero-brand {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .hero-brand-logo {
    width: 128px;
    height: 46px;
    padding: 4px;
  }

  .hero-brand:not(.hero-network) .hero-brand-logo {
    width: 180px;
    height: 58px;
  }

  .hero-network {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .hero-network .hero-brand-logo {
    width: 72px;
    height: 60px;
    padding: 9px;
  }

  .hero-brand h2 {
    font-size: 1.125rem;
  }

  .hero-art {
    min-height: 112px;
  }

  .hero-art img {
    width: 112px;
    height: 112px;
  }

  .eyebrow {
    margin-bottom: var(--s1);
  }

  .hero-lead {
    margin-bottom: var(--s2);
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-note {
    padding-block: var(--s2);
  }

  .hero-note strong {
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .hero-note p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .section {
    padding-block: var(--s5);
  }

  .page-hero + .section {
    padding-top: var(--s3);
  }

  .button-row .button {
    width: 100%;
  }

  .fact-strip {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }

  .review-steps,
  .pros-cons {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .warning-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline article {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: var(--s2);
  }

  .fact-strip div + div {
    padding: var(--s2) 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .casino-card {
    min-height: 372px;
    padding: 9px;
    grid-template-rows: 82px 21px 17px 53px 56px 22px 18px 48px;
    gap: 5px;
  }

  .casino-logo {
    height: 82px;
    padding: 0 2px 6px;
  }

  .casino-logo img {
    max-width: 78%;
    max-height: 50px;
    transform: none;
  }

  .casino-logo-frame {
    height: 74px;
    padding: 10px 12px;
  }

  .casino-card h3 {
    font-size: 1rem;
  }

  .casino-rating {
    gap: 4px;
    font-size: 0.75rem;
  }

  .star-meter {
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .casino-description {
    width: 100%;
    font-size: 0.8125rem;
    text-align: center;
  }

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

  .payment-row {
    gap: 2px;
  }

  .payment-row img {
    max-width: 21px;
    height: 14px;
  }

  .casino-card .button {
    min-height: 48px;
    padding-inline: 8px;
    font-size: 0.8125rem;
  }

  .directory-tools,
  .profile-row {
    grid-template-columns: 1fr;
  }

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

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

  .profile-row .button {
    width: 100%;
  }

  .blog-card-body {
    padding: var(--s2);
  }

  .author-box {
    grid-template-columns: 64px 1fr;
    gap: var(--s2);
  }

  .author-image {
    width: 64px;
    height: 64px;
  }

  .author-actions {
    grid-column: 2;
    justify-self: end;
  }

  .author-grid {
    grid-template-columns: 1fr;
  }

  .author-card {
    padding: var(--s2);
    grid-template-columns: 84px minmax(0, 1fr);
    gap: var(--s2);
  }

  .author-card-image {
    width: 84px;
    height: 84px;
  }

  .footer-main {
    padding-block: var(--s5) var(--s4);
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4) var(--s3);
  }

  .footer-nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--s1);
  }
}

@media (max-width: 700px) {
  h1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1;
  }

  .page-hero,
  .page-hero--home {
    padding-block: 12px;
  }

  .hero-grid {
    gap: 12px;
  }

  .page-hero .eyebrow {
    margin-bottom: 4px;
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .page-hero .button {
    min-height: 44px;
    padding-block: 8px;
  }

  .hero-feature,
  .hero-brand {
    padding: 10px;
    gap: 8px;
  }

  .hero-feature h2 {
    font-size: 0.875rem;
  }

  .hero-feature-brand {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-feature-logo {
    width: 112px;
    height: 44px;
    padding: 4px;
  }

  .hero-feature strong {
    font-size: 0.9375rem;
  }

  .hero-feature p,
  .hero-brand p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero-brand {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .hero-brand-logo {
    width: 120px;
    height: 44px;
    padding: 4px;
  }

  .hero-brand:not(.hero-network) .hero-brand-logo {
    width: 160px;
    height: 52px;
  }

  .hero-network {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .hero-network .hero-brand-logo {
    width: 62px;
    height: 52px;
    padding: 8px;
  }

  .hero-brand h2 {
    margin-bottom: 3px;
    font-size: 1rem;
  }

  .hero-art {
    min-height: 88px;
  }

  .hero-art img {
    width: 88px;
    height: 88px;
  }

  .page-hero + .section {
    padding-top: 14px;
  }

  .section--listings .section-heading {
    margin-bottom: 12px;
  }

  .section--listings .section-heading .section-kicker {
    margin-bottom: 4px;
  }

  .section--listings .section-heading h2 {
    font-size: 1.5rem;
  }

  .section--listings .section-intro {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.pa-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
