@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Mulish:wght@400;500;600;700&display=swap');
:root {
  --bg-main: #16191D;
  --bg-card: #1E242A;
  --accent: #00B383;
  --accent-hover: #009973;
  --accent-2: #FF2E63;
  --text-main: #EDF2F5;
  --text-muted: #93A1AC;
  --border: #2B333B;

  --font-head: 'Montserrat', system-ui, Arial, sans-serif;
  --font-body: 'Mulish', system-ui, Arial, sans-serif;

  --radius: 8px;
  --radius-lg: 14px;
  --pill: 999px;
  --glow-teal: 0 0 16px rgba(0,179,131,0.35);
  --glow-magenta: 0 0 18px rgba(255,46,99,0.30);
  --shadow-card: 0 6px 22px rgba(0,0,0,0.30);
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.25rem);
  --section-y: clamp(3rem, 7vw, 5.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

img { max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- LAYOUT: edge-to-edge banded grid ---------- */
.icg-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icg-section {
  padding-block: var(--section-y);
  border-bottom: 1px solid var(--border);
}
.icg-section--alt { background: #12151A; }
.icg-section--flush { border-bottom: 0; }

.icg-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.icg-section__head { margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.icg-lead { color: var(--text-muted); font-size: 1.12rem; max-width: 62ch; }

/* ---------- BUTTONS ---------- */
.icg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.7rem;
  border-radius: var(--pill);
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #0A0D10;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
  white-space: nowrap;
}
.icg-btn:hover { background: var(--accent-hover); color: #0A0D10; box-shadow: var(--glow-teal); transform: translateY(-1px); }
.icg-btn--lg { padding: 1.1rem 2.2rem; font-size: 1.08rem; }
.icg-btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}
.icg-btn--ghost:hover { background: transparent; color: var(--accent-2); border-color: var(--accent-2); box-shadow: var(--glow-magenta); }
.icg-btn--magenta { background: var(--accent-2); color: #fff; }
.icg-btn--magenta:hover { background: #e01f52; color: #fff; box-shadow: var(--glow-magenta); }

/* ---------- HEADER ---------- */
.icg-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(18,21,26,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.icg-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 70px;
}
.icg-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.icg-logo__img { display: block; height: 40px; width: auto; }

.icg-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.icg-nav a:not(.icg-btn) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-muted);
  padding: .55rem .7rem;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.icg-nav a:not(.icg-btn):hover { color: var(--text-main); background: var(--bg-card); }
.icg-nav a:not(.icg-btn).is-active { color: var(--accent); }
.icg-nav .icg-btn { margin-left: .6rem; }

.icg-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.icg-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-main);
  transition: transform .2s ease, opacity .2s ease;
}
.icg-header.is-open .icg-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.icg-header.is-open .icg-burger span:nth-child(2) { opacity: 0; }
.icg-header.is-open .icg-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .icg-burger { display: flex; }
  .icg-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding: 1rem var(--gutter) 1.4rem;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .icg-header.is-open .icg-nav { display: flex; }
  .icg-nav a:not(.icg-btn) { padding: .8rem .6rem; font-size: 1.05rem; }
  .icg-nav .icg-btn { margin: .6rem 0 0; width: 100%; }
}

/* ---------- HERO (split) ---------- */
.icg-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 90% at 78% 30%, rgba(0,179,131,0.20), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(255,46,99,0.10), transparent 65%),
    var(--bg-main);
}
.icg-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.icg-hero__inner > * { min-width: 0; }
.icg-hero__text { text-align: left; }
.icg-hero h1 { margin-bottom: .5rem; }
.icg-hero__sub { color: var(--text-muted); font-size: 1.18rem; max-width: 46ch; margin-bottom: 1.6rem; }
.icg-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.icg-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.icg-hero__visual {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(0,179,131,0.35), transparent 55%),
    linear-gradient(135deg, #1E242A, #12151A);
  box-shadow: var(--shadow-card);
}
.icg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-2);
  padding: .4rem .8rem;
  border-radius: var(--pill);
  box-shadow: var(--glow-magenta);
  margin-bottom: 1.1rem;
}

@media (max-width: 820px) {
  .icg-hero__inner { grid-template-columns: 1fr; }
  .icg-hero__sub { max-width: none; }
}

/* ---------- ICONS ---------- */
.icg-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* ---------- OVERVIEW ---------- */
.icg-overview p { color: var(--text-main); }
.icg-overview p + p { margin-top: 0; }

/* ---------- FEATURE CARDS / CARDS GRID ---------- */
.icg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.icg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  min-width: 0;
}
.icg-card:hover { border-color: var(--accent-2); box-shadow: var(--glow-magenta); transform: translateY(-3px); }
.icg-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0,179,131,0.14);
  color: var(--accent);
  margin-bottom: 1rem;
}
.icg-card__icon .icg-icon { width: 1.6em; height: 1.6em; }
.icg-card h3 { margin-bottom: .4rem; }
.icg-card p { color: var(--text-muted); margin: 0; font-size: .98rem; }

/* ---------- DATA TABLE ---------- */
.icg-table-wrap { overflow-x: auto; max-width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.icg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .97rem;
  min-width: 480px;
}
.icg-table thead th {
  background: var(--accent);
  color: #0A0D10;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  padding: .9rem 1.1rem;
  white-space: nowrap;
}
.icg-table td, .icg-table th { padding: .85rem 1.1rem; }
.icg-table tbody tr { border-top: 1px solid var(--border); }
.icg-table tbody tr:nth-child(odd) { background: var(--bg-main); }
.icg-table tbody tr:nth-child(even) { background: var(--bg-card); }
.icg-table td { color: var(--text-main); overflow-wrap: anywhere; }

/* ---------- TWO COLS + CONTENT PANEL ---------- */
.icg-twocols {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.icg-twocols > * { min-width: 0; }
@media (max-width: 820px) { .icg-twocols { grid-template-columns: 1fr; } }

.icg-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.icg-panel__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.icg-facts { margin: 0; }
.icg-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.icg-facts__row:last-child { border-bottom: 0; }
.icg-facts dt, .icg-facts__row > span:first-child { color: var(--text-muted); font-size: .92rem; }
.icg-facts dd, .icg-facts__row > span:last-child { margin: 0; font-weight: 700; font-family: var(--font-head); text-align: right; overflow-wrap: anywhere; }

.icg-checklist { list-style: none; margin: 0; padding: 0; }
.icg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  color: var(--text-main);
}
.icg-checklist .icg-icon { color: var(--accent); margin-top: .1rem; }

.icg-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.icg-tile {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.icg-tile__num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.icg-tile__label { font-size: .8rem; color: var(--text-muted); }

.icg-score { text-align: center; }
.icg-score__num { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: var(--accent); line-height: 1; }
.icg-score__stars { color: var(--accent-2); display: inline-flex; gap: .1rem; margin: .5rem 0; }
.icg-score__label { color: var(--text-muted); font-size: .9rem; }

/* ---------- NUMBERED LIST ---------- */
.icg-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 1rem; }
.icg-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.icg-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #0A0D10;
  font-family: var(--font-head);
  font-weight: 800;
}
.icg-steps h3 { margin-bottom: .3rem; }
.icg-steps p { color: var(--text-muted); margin: 0; }

/* ---------- STATS BAR ---------- */
.icg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1px;
  background: var(--accent-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.icg-stats__item { background: var(--bg-card); padding: 1.6rem 1rem; text-align: center; min-width: 0; }
.icg-stats__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--accent); line-height: 1; }
.icg-stats__label { color: var(--text-muted); font-size: .88rem; margin-top: .4rem; }

/* ---------- CATEGORIES BAR ---------- */
.icg-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.icg-pill {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-main);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: .55rem 1.1rem;
  border-radius: var(--pill);
  transition: border-color .15s ease, color .15s ease;
}
.icg-pill:hover, a.icg-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- PAGE HEADER + BREADCRUMB ---------- */
.icg-pagehead {
  position: relative;
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(0,179,131,0.14), transparent 60%),
    var(--bg-main);
}
.icg-pagehead h1 { margin-bottom: .5rem; }
.icg-pagehead__lead { color: var(--text-muted); max-width: 62ch; margin: 0; }
.icg-breadcrumb { font-size: .85rem; color: var(--text-muted); margin-bottom: .8rem; }
.icg-breadcrumb a { color: var(--text-muted); }
.icg-breadcrumb a:hover { color: var(--accent); }
.icg-breadcrumb span[aria-current] { color: var(--text-main); }

/* ---------- LEGAL BODY ---------- */
.icg-legal { counter-reset: legal; max-width: none; }
.icg-legal h2 { counter-increment: legal; }
.icg-legal h2::before { content: counter(legal) ". "; color: var(--accent); font-family: var(--font-head); }
.icg-legal p, .icg-legal li { color: var(--text-muted); }
.icg-legal ul, .icg-legal ol { padding-left: 1.3rem; }

/* ---------- TOC ---------- */
.icg-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.icg-toc__title { font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.icg-toc ol { margin: 0; padding-left: 1.2rem; }
.icg-toc li { margin-bottom: .4rem; }
.icg-toc a { color: var(--text-muted); }
.icg-toc a:hover { color: var(--accent); }

/* ---------- FAQ ---------- */
.icg-faq details { border-bottom: 1px solid var(--border); }
.icg-faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: baseline;
}
.icg-faq summary::-webkit-details-marker { display: none; }
.icg-faq summary::before { content: '+'; margin-right: .6rem; color: var(--accent); font-weight: 800; transition: transform .2s; }
.icg-faq details[open] summary::before { content: '−'; }
.icg-faq details > :not(summary) { padding: .2rem 0 1.1rem 1.4rem; color: var(--text-muted); }

/* ---------- PAYMENTS TABLE ---------- */
.icg-payments td:first-child { font-weight: 700; font-family: var(--font-head); white-space: nowrap; }
.icg-payments .icg-icon { color: var(--accent); margin-right: .4rem; }

/* ---------- RTP GRID ---------- */
.icg-rtp {
  display: grid;
  gap: clamp(.6rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .icg-rtp { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .icg-rtp { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.icg-rtp-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: box-shadow .2s ease, transform .2s ease;
}
.icg-rtp-item:hover { box-shadow: var(--glow-teal); transform: translateY(-3px); }
.icg-rtp-item__thumb {
  aspect-ratio: 3/2;
  position: relative;
  background: linear-gradient(135deg, #1E242A, #12151A);
}
.icg-rtp-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.icg-rtp-item__name { padding: .6rem .7rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; overflow-wrap: anywhere; }
.icg-rtp-item__rtp {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .72rem;
  color: #fff;
  background: var(--accent-2);
  padding: .25rem .55rem;
  border-radius: var(--pill);
}
.icg-rtp-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity .2s;
  padding: .6rem .7rem;
  background: linear-gradient(0deg, rgba(10,13,16,0.95), rgba(10,13,16,0.05));
  font-size: .8rem;
  color: var(--text-main);
}
.icg-rtp-item:hover .icg-rtp-tooltip { opacity: 1; }

/* ---------- CTA BLOCK ---------- */
.icg-cta {
  background:
    radial-gradient(70% 140% at 20% 0%, rgba(0,179,131,0.22), transparent 60%),
    radial-gradient(60% 120% at 90% 100%, rgba(255,46,99,0.18), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.icg-cta h2 { margin-bottom: .6rem; }
.icg-cta p { color: var(--text-muted); max-width: 52ch; margin-inline: auto; margin-bottom: 1.6rem; }

/* ---------- STICKY NAV (mobile) ---------- */
.icg-sticky-nav { display: none; }
@media (max-width: 767px) {
  .icg-sticky-nav {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 55;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: .5rem;
    gap: .5rem;
  }
  .icg-sticky-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    font-size: .7rem;
    color: var(--text-muted);
  }
}

/* ---------- FOOTER ---------- */
.icg-footer {
  background: #101317;
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 3.6rem) 1.5rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.icg-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.icg-footer__grid > * { min-width: 0; }
.icg-footer__brand .icg-logo__img { height: 38px; margin-bottom: 1rem; }
.icg-footer__brand p { font-size: .9rem; max-width: 40ch; }
.icg-footer__col h3 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-main); margin-bottom: 1rem; }
.icg-footer__col ul { list-style: none; margin: 0; padding: 0; }
.icg-footer__col li { margin-bottom: .55rem; }
.icg-footer__col a { color: var(--text-muted); }
.icg-footer__col a:hover { color: var(--accent); }
.icg-footer__disclaimer {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.icg-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 .4rem;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  margin-right: .6rem;
  vertical-align: middle;
}
.icg-footer__copy {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}
@media (max-width: 767px) {
  .icg-footer { padding-bottom: 5rem; }
  .icg-footer__grid { grid-template-columns: 1fr 1fr; }
  .icg-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .icg-footer__grid { grid-template-columns: 1fr; }
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-ph-media */
.icg-page-header:has(.icg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.icg-page-header:has(.icg-hero__img) .icg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.icg-page-header:has(.icg-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
.icg-page-header:has(.icg-hero__img)>:not(.icg-hero__img){position:relative;z-index:2}
.icg-page-header:has(.icg-hero__img),.icg-page-header:has(.icg-hero__img) h1,.icg-page-header:has(.icg-hero__img) a,.icg-page-header:has(.icg-hero__img) p,.icg-page-header:has(.icg-hero__img) li,.icg-page-header:has(.icg-hero__img) span{color:#fff}
/* sa-slot-link */
.icg-rtp-item,.icg-rtp-item:hover,.icg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
/* sa-logo-chip */
.icg-footer .icg-logo__img,.icg-footer .icg-footer__logo-chip{background:#fff;padding:.4rem .55rem;border-radius:8px;filter:none;box-sizing:border-box}
