@charset "UTF-8";

:root {
  --c-primary: #0e3f49;
  --c-secondary: #0c3741;
  --c-accent: #ff4c3b;
  --c-bg: #104a55;
  --c-surface: #13525f;
  --c-text: #ffffff;
  --c-text-muted: #c0c8cf;
  --c-btn: #ff4c3b;
  --c-btn-text: #ffffff;
  --c-border: #116066;
  --c-grad-start: #0e3f49;
  --c-grad-end: #104a55;
  --c-logo-text: #ffffff;
}
.ld-logo-text { color: var(--c-logo-text) !important; }
[class*="_logo"] { color: #ffffff !important; }


.ld-logo-png { height: 39px; width: auto; display: block; object-fit: contain; }

.cn61-root {
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    position: relative;
    top: auto;
    z-index: auto;
  }
  .cn61-cta-desktop { display: flex; align-items: center; gap: 8px; }
  .cn61-mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .cn61-mrow { padding: 12px 0; border-top: 1px solid var(--c-border); }
  .cn61-mbtn-full { width: 100%; justify-content: center; }
  .cn61-logo-wrap { display: flex; align-items: center; gap: 14px; }
  .cn61-divider-v { width: 1px; height: 27px; background: var(--c-border); }
  .cn61-tagline { font-size: 0.77rem; color: var(--c-text-muted); letter-spacing: 0.02em; white-space: nowrap; }
  .cn61-nav {
    display: flex; align-items: center; gap: 2px;
    flex: 1; justify-content: center;
  }
  .cn61-nav a {
    color: color-mix(in srgb, var(--c-text) 65%, transparent);
    text-decoration: none; font-size: 0.86rem; font-weight: 500;
    padding: 6px 14px; border-radius: 6px;
    transition: background 0.147s, color 0.15s;
  }
  .cn61-nav a:hover { background: color-mix(in srgb, var(--c-text) 6%, transparent); color: var(--c-text); }
  .cn61-cta-wrap { display: flex; align-items: center; gap: 10px; }
  .cn61-cta-arrow { margin-left: 4px; font-size: 1.012em; }
  .cn61-menu-btn {
    display: none; background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text); width: 36px; height: 36px; border-radius: 6px;
    align-items: center; justify-content: center; cursor: pointer;
  }
  @media (max-width: 768px) {
    .cn61-nav { display: none; }
    .cn61-tagline { display: none; }
    .cn61-divider-v { display: none; }
    .cn61-cta-desktop { display: none !important; }
    .cn61-menu-btn { display: flex !important; }
  }

.ds64-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 367px;
  background: linear-gradient(133deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.015);
  box-shadow: 0 18px 51px rgba(0,0,0,0.414);
  display: flex;
  align-items: center;
}
.ds64-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ds64-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(93deg, rgba(0,0,0,0.876) 0%, rgba(0,0,0,0.652) 35%, rgba(0,0,0,0.14) 70%, rgba(0,0,0,0.032) 100%);
  z-index: 1;
}
.ds64-content {
  position: relative; z-index: 2;
  padding: 48px 51px;
  max-width: 607px;
}
.ds64-title {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.547);
}
.ds64-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.886);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 475px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.487);
}
.ds64-cta-row {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
/* Variant 02 signature: clean solid-accent rectangular buttons,
   icon on the left, bold uppercase text. Hover halo borrows the brand
   accent so the glow always matches the button colour. */
.ds64-cta {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 15px 27px;
  border-radius: 12px;
  background: var(--c-accent, #f59e0b);
  color: var(--c-bg, var(--c-bg));
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.039em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .25s ease, filter .18s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.307);
}
.ds64-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.27);
}
.ds64-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .ds64-card { min-height: 311px; }
  .ds64-overlay {
    background: linear-gradient(182deg, rgba(0,0,0,0.504) 0%, rgba(0,0,0,0.894) 100%);
  }
  .ds64-content { padding: 32px 23px; max-width: 100%; }
  .ds64-title { font-size: 27px; }
  .ds64-cta-row { flex-wrap: wrap; }
  .ds64-cta { padding: 13px 16px; font-size: 11px; }
}

.cw92-wrap { max-width: 938px; margin: 0 auto; }
  .cw92-title { color: var(--c-text); margin: 0 0 22px; }
  .cw92-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .cw92-spec-frame {
    margin: 28px 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--c-surface);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, var(--c-border));
    box-shadow: 0 16px 44px -22px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .cw92-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .cw92-spec th, .cw92-spec td {
    padding: 14px 22px;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .cw92-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.117em;
    color: var(--c-bg);
    background: linear-gradient(138deg,
      var(--c-accent) 0%,
      color-mix(in srgb, var(--c-accent) 65%, var(--c-grad-end)) 100%);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .cw92-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
  }
  .cw92-spec tbody td { color: var(--c-text-muted); }
  .cw92-spec tbody tr:nth-child(even) {
    background: color-mix(in srgb, var(--c-accent) 4%, transparent);
  }
  .cw92-spec tbody tr:hover {
    background: color-mix(in srgb, var(--c-accent) 9%, transparent);
  }
  .cw92-spec tbody tr:hover th { color: var(--c-accent); }
  @media (max-width: 640px) {
    .cw92-spec th, .cw92-spec td { padding: 12px 14px; font-size: 14px; }
    .cw92-spec tbody th { width: 42%; }
  }

.dq95-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(138deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.099);
  box-shadow: 0 16px 49px rgba(0,0,0,0.405);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 37px;
}
.dq95-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dq95-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(89deg, rgba(0,0,0,0.584) 0%, rgba(0,0,0,0.202) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.dq95-frame {
  position: relative;
  z-index: 2;
  max-width: 608px;
  padding: 37px 43px;
  border-radius: 14px;
  border: 2px solid var(--c-accent, #f59e0b);
  background: rgba(0,0,0,0.204);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-align: center;
}
.dq95-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--c-accent, #f59e0b);
  line-height: 1.12;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.469);
}
.dq95-amount {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.436);
}
.dq95-cta {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 1014px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.318);
  transition: box-shadow .25s ease, filter .18s;
}
.dq95-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.232),
    0 10px 29px rgba(34,197,94,0.487);
}
@media (max-width: 768px) {
  .dq95-card {
    min-height: 332px;
    padding: 22px;
    justify-content: center;
  }
  .dq95-overlay {
    background: linear-gradient(185deg, rgba(0,0,0,0.492) 0%, rgba(0,0,0,0.717) 100%);
  }
  .dq95-frame { padding: 23px 22px; max-width: 100%; }
  .dq95-title { font-size: 22px; }
  .dq95-amount { font-size: 14px; }
}

.fv36-hero {
  position: relative;
  min-height: 447px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.fv36-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(132deg,
    rgb(0 0 0 / calc(.55 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.48 + var(--hi-offset, 0))) 100%);
}
.fv36-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 49px 25px;
  max-width: 707px;
}
.fv36-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.fv36-title { color: #fff; margin: 0 0 20px; text-shadow: 0 2px 14px rgba(0,0,0,0.485); }
.fv36-divider {
  width: 57px; height: 3px;
  background: var(--c-accent);
  margin: 0 auto 20px;
  border-radius: 3px;
}
.fv36-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.734);
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 539px;
}
.fv36-cta {
  display: inline-block;
  padding: 13px 37px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter .2s;
}
.fv36-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
    0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
}
@media (max-width: 600px) { .fv36-hero { min-height: 388px; } }

.fg59-wrap { max-width: 1005px; margin: 0 auto; }
  .fg59-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 31px 30px;
    box-shadow: 0 16px 45px -22px rgba(0,0,0,0.258);
  }
  .fg59-title { color: var(--c-text); margin: 0 0 12px; }
  .fg59-intro { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .fg59-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 17px; counter-reset: vp04c; }
  .fg59-card {
    counter-increment: vp04c;
    position: relative;
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(138deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    color: #fff;
    overflow: hidden;
  }
  .fg59-card::before {
    content: counter(vp04c);
    position: absolute; top: 12px; right: 16px;
    font-size: 28px; font-weight: 900; line-height: 1;
    color: color-mix(in srgb, var(--c-accent) 70%, transparent);
    letter-spacing: -0.02em;
  }
  .fg59-card-h3 { color: #fff; font-size: 15px; font-weight: 800; line-height: 1.3; margin: 0 0 10px; padding-right: 36px; }
  .fg59-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.735); margin: 0; }

  .fg59-mid-p { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .fg59-panel {
    border-radius: 14px; padding: 22px 25px 24px;
    background: linear-gradient(132deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 52px -27px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 22px;
  }
  .fg59-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .fg59-panel-lead { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.755); margin: 0 0 16px; }
  .fg59-panel-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.794); margin: 16px 0 0; }

  .fg59-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }
  .fg59-bullet { display: flex; align-items: center; gap: 12px; }
  .fg59-bullet-icon {
    flex: 0 0 14px; width: 14px; height: 14px;
    background: var(--c-accent);
    transform: rotate(46deg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 22%, transparent);
  }
  .fg59-bullet-text { flex: 1; color: rgba(255,255,255,0.903); font-size: 13px; line-height: 1.4; font-weight: 500; }

  .fg59-h3-light { color: var(--c-text); font-size: 19px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .fg59-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .fg59-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--c-bg);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    border-radius: 12px; overflow: hidden;
    margin: 0 0 18px; table-layout: fixed;
  }
  .fg59-table th, .fg59-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .fg59-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.123em; text-transform: uppercase;
    color: var(--c-text);
    background: color-mix(in srgb, var(--c-accent) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  }
  .fg59-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .fg59-table tbody tr:last-child td { border-bottom: none; }
  .fg59-table tbody td:first-child {
    color: var(--c-text); font-weight: 600;
    border-left: 3px solid transparent;
    padding-left: 17px;
    transition: border-left-color .25s ease;
  }
  .fg59-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 6%, transparent); }
  .fg59-table tbody tr:hover td:first-child { border-left-color: var(--c-accent); }

  .fg59-cta-wrap { margin-top: 18px; }
  .fg59-cta {
    display: inline-block; padding: 12px 30px; border-radius: 975px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.098em;
    box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .fg59-cta:hover {
    filter: brightness(1.06); transform: translateY(-1px);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
      0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 768px) {
    .fg59-cards { grid-template-columns: 1fr; }
    .fg59-bullets { grid-template-columns: 1fr; }
    .fg59-table th, .fg59-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .fg59-outer { padding: 22px 18px; border-radius: 14px; }
    .fg59-panel { padding: 18px 16px; border-radius: 12px; }
  }

.bw37-wrap { max-width: 1117px; margin: 0 auto; }
  .bw37-intro { max-width: 775px; margin-bottom: 22px; }
  .bw37-title { color: var(--c-text); margin: 0 0 12px; }
  .bw37-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .bw37-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid color-mix(in srgb, var(--c-accent) 18%, var(--c-border)); box-shadow: 0 4px 22px -10px color-mix(in srgb, var(--c-accent) 30%, transparent); }
  .bw37-table { width: 100%; min-width: 730px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .bw37-table thead th { background: linear-gradient(178deg, color-mix(in srgb, var(--c-accent) 28%, var(--c-surface)), var(--c-surface)); color: var(--c-text); text-align: center; padding: 18px 16px; font-size: 0.965rem; font-weight: 800; border-bottom: 2px solid var(--c-accent); }
  .bw37-table thead th:first-child { text-align: left; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.138em; color: var(--c-text-muted); }
  .bw37-rank { display: block; font-size: 0.614rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 4px; }
  .bw37-table tbody td { padding: 16px; font-size: 14px; line-height: 1.5; color: var(--c-text-muted); text-align: center; border-bottom: 1px solid var(--c-border); }
  .bw37-table tbody td:first-child { text-align: left; color: var(--c-text); font-weight: 700; padding-left: 22px; }
  .bw37-table tbody tr:last-child td { border-bottom: none; }
  .bw37-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 4%, transparent); }
  .bw37-yes, .bw37-no { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; }
  .bw37-yes { background: var(--c-accent); color: var(--c-bg); }
  .bw37-no { background: color-mix(in srgb, var(--c-text-muted) 22%, transparent); color: var(--c-text-muted); }
  .bw37-yes svg, .bw37-no svg { width: 14px; height: 14px; }
  .bw37-val { font-weight: 700; color: var(--c-text); }

.en44-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 640px) { .en44-grid { grid-template-columns: 1fr; } }
.en44-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: border-color .2s, transform .2s;
}
.en44-card:hover {
  border-color: color-mix(in srgb, var(--c-accent) 45%, transparent);
  transform: translateY(-2px);
}
.en44-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 27px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 12px;
  font-weight: 900;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.en44-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.en44-a {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.en44-header { text-align: center; }
.en44-title { margin-top: 8px; }
.en44-more {
  text-align: center;
  margin-top: 29px;
}

.sy32-wrap { padding: 0.758rem 0; }
  .sy32-inner { display: flex; align-items: center; gap: 0; }
  /* Single accent gradient on each side that fades from transparent at the
     page edge to the brand accent at the trophy — replaces the previous
     [grey][short-accent][trophy][short-accent][grey] layout, which left
     two long grey rules dominating the visual. */
  .sy32-line { flex: 1; height: 1px; }
  .sy32-line-left  { background: linear-gradient(to right, transparent, var(--c-accent)); }
  .sy32-line-right { background: linear-gradient(to left,  transparent, var(--c-accent)); }
  .sy32-trophy {
    padding: 0 0.991rem;
    flex-shrink: 0;
    font-size: 1.38rem;
    line-height: 1;
    display: flex;
    align-items: center;
  }

/* ── Layout contract ───────────────────────────────────────────────
     Two rows:
       Row 1 (top) — [logo] [nav + extra links] [compact payments → right]
       Row 2 (bottom) — [© brand · play responsibly · 18+] centred
     Payments live in row 1 and push to the right via `margin-left:auto`
     so the logo anchors the left, the nav fills the middle, and the
     payment strip caps the row on the right. Bottom row is pure
     compliance/brand copy — small + centred. */
  .lw63-root { background: var(--c-bg); }
  .lw63-top {
    display: flex; align-items: center;
    gap: 10px 20px; flex-wrap: wrap;
    padding: 14px 0;
    min-height: 43px;
  }
  .lw63-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
  /* `:empty` hides the nav when a landing (single-page) site produced
     no FOOTER_NAV_LINKS / FOOTER_EXTRA_LINKS output — avoids the ugly
     centred gap between logo and payments. */
  .lw63-nav:empty { display: none; }
  .lw63-nav a { font-size: 0.826rem; color: var(--c-text-muted); text-decoration: none; transition: color 0.201s; }
  .lw63-nav a:hover { color: var(--c-accent); }

  /* Compact payments pinned to the right edge of the top row. Same
     sizing recipe as footer_12 so the two dense variants look like
     siblings: 20 px tall icon, 4/8 padding, 50 px max-width. Scoped
     override of .ld-pay-logo. */
  .lw63-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
  .lw63-pay:empty { display: none; }
  .lw63-pay .ld-pay-logo {
    height: 20px;
    max-width: 51px;
    padding: 4px 8px;
    border-radius: 5px;
  }

  .lw63-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 10px 22px; flex-wrap: wrap;
    padding: 10px 0;
    border-top: 1px solid var(--c-border);
    font-size: 0.761rem; color: var(--c-text-muted);
  }
  .lw63-copy { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }

  @media (max-width: 768px) {
    .lw63-pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  }
  @media (max-width: 600px) {
    .lw63-top { flex-direction: column; align-items: flex-start; gap: 10px; }
    .lw63-nav { flex: 1 1 100%; }
    .lw63-pay { justify-content: flex-start; }
  }

/* ── csb mobile-header policy (appended last, wins source-order) ── */
@media (max-width: 768px) {
  body [class*="cta-desktop"],
  body [class*="actions-desktop"],
  body [class*="btns-desktop"],
  body [class*="cta-wrap"],
  body [class*="login-actions"],
  body [class*="strip-actions"] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  body [class*="cta-desktop"] .ld-btn,
  body [class*="actions-desktop"] .ld-btn,
  body [class*="btns-desktop"] .ld-btn,
  body [class*="cta-wrap"] .ld-btn,
  body [class*="cta-desktop"] button,
  body [class*="actions-desktop"] button,
  body [class*="btns-desktop"] button,
  body [class*="cta-wrap"] button,
  body [class*="cta-desktop"] a,
  body [class*="actions-desktop"] a,
  body [class*="btns-desktop"] a,
  body [class*="cta-wrap"] a {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }
}

/* Codex: normalize h3 vertical spacing */
h3 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* Codex: normalize content list spacing */
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) p + :where(ul, ol),
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) + p {
  margin-top: 16px !important;
}
