:root{
  --bg-main:#16100B;
  --bg-card:#211710;
  --bg-alt:#1A130C;
  --accent:#F5B942;
  --accent-2:#00E6A8;
  --text-main:#FBF3E6;
  --text-muted:#B49B7E;
  --border:rgba(245,185,66,0.22);
  --surface-light:#F7EFE0;
  --surface-light-2:#FBF6EC;
  --ink:#1C130C;
  --grad-cta:linear-gradient(135deg,#F5B942 0%,#FF9A2E 100%);
  --font-head:'Poppins',system-ui,-apple-system,'Segoe UI',Arial,sans-serif;
  --font-body:'Poppins',system-ui,-apple-system,'Segoe UI',Arial,sans-serif;
  --radius:14px;
  --radius-sm:10px;
  --shadow-card:0 6px 22px rgba(0,0,0,.42);
  --maxw:1200px;
}

*{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:clamp(15px,1.05vw,16.5px);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{color:var(--accent-2)}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:800;line-height:1.12;margin:0 0 .5em;letter-spacing:-.01em}
h2{font-size:clamp(1.5rem,3.2vw,2.3rem)}
h3{font-size:clamp(1.15rem,2vw,1.4rem)}
p{margin:0 0 1rem;overflow-wrap:anywhere}
:focus-visible{outline:3px solid var(--accent-2);outline-offset:2px;border-radius:4px}

/* ---------- LAYOUT: strips (full-width alternating bands) ---------- */
.gic-container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1rem,4vw,2.25rem)}
.gic-section{padding-block:clamp(2.4rem,5vw,4rem);position:relative}
.gic-section--alt{background:var(--bg-alt)}
.gic-section__head{margin-bottom:clamp(1.4rem,3vw,2.2rem)}
.gic-eyebrow{font-family:var(--font-head);font-weight:700;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--accent-2);margin:0 0 .6rem}
.gic-lead{font-size:1.08rem;color:var(--text-muted);max-width:none}

/* ---------- Buttons ---------- */
.gic-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-head);font-weight:800;font-size:.98rem;
  padding:.85rem 1.6rem;border-radius:999px;border:0;cursor:pointer;
  background:var(--grad-cta);color:#160E05;
  box-shadow:0 8px 28px rgba(245,185,66,.45);
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
  text-align:center;line-height:1.1;
}
.gic-btn:hover{color:#160E05;filter:brightness(1.07);transform:translateY(-2px);box-shadow:0 12px 34px rgba(245,185,66,.55)}
.gic-btn--ghost{background:transparent;color:var(--accent);border:1.5px solid var(--border);box-shadow:none}
.gic-btn--ghost:hover{color:var(--accent-2);border-color:var(--accent-2);filter:none}
.gic-btn--lg{padding:1rem 2rem;font-size:1.08rem}

/* ---------- Header (LIGHT surface — dark logo tone) ---------- */
.gic-header{
  position:sticky;top:0;z-index:50;
  background:var(--surface-light);
  border-bottom:1px solid rgba(28,19,12,.12);
  box-shadow:0 2px 14px rgba(0,0,0,.18);
}
.gic-header__inner{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  min-height:66px;
}
.gic-logo{display:inline-flex;align-items:center;flex-shrink:0}
.gic-logo__img{height:40px;width:auto;display:block}
.gic-nav{display:flex;align-items:center;gap:1.6rem}
.gic-nav a:not(.gic-btn){
  font-family:var(--font-head);font-weight:600;font-size:.95rem;
  color:var(--ink);position:relative;padding:.35rem 0;
}
.gic-nav a:not(.gic-btn):hover{color:#B4791A}
.gic-nav a:not(.gic-btn)::after{
  content:'';position:absolute;left:0;bottom:-2px;height:2px;width:0;
  background:var(--accent-2);transition:width .2s ease;
}
.gic-nav a:not(.gic-btn):hover::after{width:100%}
.gic-nav .gic-btn{color:#160E05}
.gic-nav .gic-btn:hover{color:#160E05}
.gic-nav__cta{margin-inline-start:.3rem}

.gic-burger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:0;border:0;border-radius:10px;cursor:pointer;
  background:transparent;flex-shrink:0;
}
.gic-burger span{display:block;height:2.5px;width:24px;margin-inline:auto;background:var(--ink);border-radius:2px;transition:transform .2s,opacity .2s}
.gic-header.is-open .gic-burger span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.gic-header.is-open .gic-burger span:nth-child(2){opacity:0}
.gic-header.is-open .gic-burger span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

@media (max-width:900px){
  .gic-burger{display:flex}
  .gic-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--surface-light-2);
    border-bottom:1px solid rgba(28,19,12,.12);
    box-shadow:0 14px 26px rgba(0,0,0,.28);
    padding:.5rem clamp(1rem,4vw,2rem) 1.2rem;
  }
  .gic-header.is-open .gic-nav{display:flex}
  .gic-nav a:not(.gic-btn){padding:.85rem .25rem;border-bottom:1px solid rgba(28,19,12,.09)}
  .gic-nav a:not(.gic-btn)::after{display:none}
  .gic-nav__cta{margin:.9rem 0 0}
  .gic-nav .gic-btn{width:100%}
}

/* ---------- Hero: OVERLAY (full-bleed) ---------- */
.gic-hero{
  position:relative;overflow:hidden;
  min-height:clamp(420px,60vh,620px);
  display:flex;align-items:center;
  background:radial-gradient(120% 120% at 25% 30%,rgba(245,185,66,.16),transparent 55%),var(--bg-main);
}
.gic-hero__img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
}
.gic-hero::after{
  content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(90deg,rgba(10,8,5,.92) 0%,rgba(12,9,6,.74) 46%,rgba(12,9,6,.5) 100%);
}
.gic-hero__inner{position:relative;z-index:1;width:100%;max-width:var(--maxw);margin-inline:auto;padding:clamp(2.5rem,6vw,4.5rem) clamp(1rem,4vw,2.25rem)}
.gic-hero__body{max-width:640px}
.gic-hero .gic-eyebrow{color:var(--accent-2)}
.gic-hero h1{
  color:#fff;font-size:clamp(2rem,5.5vw,3.5rem);margin-bottom:.5rem;
  background:linear-gradient(92deg,#FFDE8A 0%,#F5B942 45%,#FF9A2E 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.gic-hero__sub{color:#F3E9D8;font-size:clamp(1.05rem,1.8vw,1.25rem);margin-bottom:1.7rem;max-width:56ch}
.gic-hero__cta{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center}
.gic-chip{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:var(--font-head);font-weight:700;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;
  color:#062;background:rgba(0,230,168,.16);border:1px solid rgba(0,230,168,.5);
  padding:.4rem .8rem;border-radius:999px;color:var(--accent-2);
  box-shadow:0 0 18px rgba(0,230,168,.35);margin-bottom:1rem;
}
.gic-hero__rating{display:inline-flex;align-items:center;gap:.5rem;color:var(--accent-2);font-weight:700;margin-inline-start:.3rem}

/* ---------- Icons ---------- */
.gic-icon{width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;flex-shrink:0;color:var(--accent);stroke:currentColor;fill:none}
.gic-icon--lg{width:2.1em;height:2.1em}
.gic-icon--teal{color:var(--accent-2)}

/* ---------- Overview ---------- */
.gic-overview p{color:var(--text-main)}
.gic-overview p+p{margin-top:.25rem}

/* ---------- Feature cards: LADDER ---------- */
.gic-features{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:clamp(1rem,2.2vw,1.6rem)}
.gic-feature{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.5rem 1.4rem;box-shadow:var(--shadow-card);min-width:0;
  transition:transform .2s ease,border-color .2s ease;
}
.gic-feature:nth-child(even){transform:translateY(1.25rem)}
.gic-feature:hover{border-color:rgba(245,185,66,.55);transform:translateY(-4px)}
.gic-feature:nth-child(even):hover{transform:translateY(calc(1.25rem - 4px))}
.gic-feature__ic{
  display:inline-flex;align-items:center;justify-content:center;
  width:3rem;height:3rem;border-radius:12px;margin-bottom:1rem;
  background:radial-gradient(circle at 30% 25%,rgba(245,185,66,.28),rgba(245,185,66,.08));
  border:1px solid var(--border);color:var(--accent);
}
.gic-feature h3{margin-bottom:.4rem}
.gic-feature p{color:var(--text-muted);margin:0}
@media (max-width:640px){
  .gic-feature:nth-child(even){transform:none}
  .gic-feature:nth-child(even):hover{transform:translateY(-4px)}
}

/* ---------- Cards grid ---------- */
.gic-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));gap:clamp(1rem,2vw,1.5rem)}
.gic-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem;box-shadow:var(--shadow-card);min-width:0}
.gic-card h3{color:var(--accent)}
.gic-card p{color:var(--text-muted);margin:0}

/* ---------- Data table ---------- */
.gic-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;border-radius:var(--radius);border:1px solid var(--border)}
.gic-table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:520px}
.gic-table thead th{
  background:#1C130C;color:var(--accent);font-family:var(--font-head);font-weight:700;
  text-align:start;padding:.9rem 1rem;white-space:nowrap;
  border-bottom:2px solid var(--accent-2);
}
.gic-table td{padding:.8rem 1rem;border-bottom:1px solid var(--border);color:var(--text-main)}
.gic-table tbody tr:nth-child(odd){background:#211710}
.gic-table tbody tr:nth-child(even){background:#1A1109}
.gic-table tbody tr:last-child td{border-bottom:0}
.gic-table .gic-rtp-val{color:var(--accent-2);font-weight:700}

/* ---------- Two cols + content panel ---------- */
.gic-twocols{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.4rem,3vw,2.4rem);align-items:start}
.gic-twocols>*{min-width:0}
@media (max-width:820px){.gic-twocols{grid-template-columns:1fr}}
.gic-panel{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow-card)}
.gic-panel__title{font-family:var(--font-head);font-weight:800;font-size:1.1rem;color:var(--accent);margin:0 0 1rem}
.gic-facts{margin:0}
.gic-facts__row{display:flex;justify-content:space-between;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--border)}
.gic-facts__row:last-child{border-bottom:0}
.gic-facts__row dt{color:var(--text-muted);margin:0}
.gic-facts__row dd{margin:0;font-weight:700;text-align:end;color:var(--text-main)}
.gic-checklist{list-style:none;margin:0;padding:0;display:grid;gap:.7rem}
.gic-checklist li{display:flex;align-items:flex-start;gap:.6rem;color:var(--text-main)}
.gic-checklist .gic-icon{color:var(--accent-2);margin-top:.15em}
.gic-stattiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));gap:.7rem;margin-top:.2rem}
.gic-stattile{background:var(--bg-main);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.9rem}
.gic-stattile b{display:block;font-family:var(--font-head);font-size:1.4rem;color:var(--accent);line-height:1}
.gic-stattile span{font-size:.78rem;color:var(--text-muted)}
.gic-score{display:flex;align-items:center;gap:.7rem}
.gic-score__num{font-family:var(--font-head);font-weight:800;font-size:2.4rem;color:var(--accent);line-height:1}
.gic-score__stars{display:inline-flex;gap:.15rem;color:var(--accent-2)}
.gic-score__label{color:var(--text-muted);font-size:.85rem}

/* ---------- Numbered list ---------- */
.gic-steps{list-style:none;counter-reset:step;margin:1.5rem 0 0;padding:0;display:grid;gap:1rem}
.gic-steps li{counter-increment:step;position:relative;padding:1.1rem 1.2rem 1.1rem 3.6rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);min-width:0}
.gic-steps li::before{
  content:counter(step);position:absolute;left:1rem;top:1.1rem;
  width:1.9rem;height:1.9rem;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-weight:800;color:#160E05;background:var(--grad-cta);border-radius:50%;
}
.gic-steps h3{margin:0 0 .25rem;font-size:1.05rem}
.gic-steps p{margin:0;color:var(--text-muted)}

/* ---------- Stats bar: TILES ---------- */
.gic-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(160px,100%),1fr));gap:clamp(.8rem,2vw,1.3rem)}
.gic-stat{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.3rem 1rem;text-align:center;box-shadow:var(--shadow-card);min-width:0}
.gic-stat__val{font-family:var(--font-head);font-weight:800;font-size:clamp(1.8rem,4vw,2.6rem);color:var(--accent);line-height:1;letter-spacing:-.02em}
.gic-stat__label{display:block;margin-top:.4rem;font-size:.82rem;color:var(--accent-2);text-transform:uppercase;letter-spacing:.06em;font-weight:600}

/* ---------- Categories bar ---------- */
.gic-cats{display:flex;flex-wrap:wrap;gap:.6rem}
.gic-cat{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem .9rem;border-radius:999px;background:var(--bg-card);border:1px solid var(--border);color:var(--text-main);font-size:.85rem;font-weight:600}
.gic-cat:hover{border-color:var(--accent-2);color:var(--accent-2)}

/* ---------- Page header ---------- */
.gic-pagehead{position:relative;overflow:hidden;background:var(--bg-alt);border-bottom:1px solid var(--border);padding-block:clamp(2rem,5vw,3rem)}
.gic-pagehead h1{color:var(--text-main);font-size:clamp(1.7rem,4vw,2.6rem)}
.gic-breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.85rem;color:var(--text-muted);margin-bottom:.7rem}
.gic-breadcrumb a{color:var(--accent)}
.gic-breadcrumb span{color:var(--text-muted)}

/* ---------- Legal body ---------- */
.gic-legal{counter-reset:sec}
.gic-legal h2{counter-increment:sec;font-size:1.3rem;margin-top:2rem}
.gic-legal h2::before{content:counter(sec) ". ";color:var(--accent)}
.gic-legal p,.gic-legal li{color:var(--text-main)}
.gic-legal ul,.gic-legal ol{padding-inline-start:1.3rem}
.gic-legal li{margin-bottom:.4rem}

/* ---------- TOC ---------- */
.gic-toc{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.3rem 1.5rem;margin-block:1.5rem}
.gic-toc__title{font-family:var(--font-head);font-weight:700;color:var(--accent);margin:0 0 .7rem}
.gic-toc ul{list-style:none;margin:0;padding:0;display:grid;gap:.4rem}
.gic-toc a{color:var(--text-main)}
.gic-toc a:hover{color:var(--accent-2)}

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

/* ---------- CTA block ---------- */
.gic-cta{
  position:relative;overflow:hidden;text-align:center;
  background:radial-gradient(120% 140% at 50% 0%,rgba(245,185,66,.2),transparent 60%),var(--bg-card);
  border:1px solid var(--border);border-radius:var(--radius);
  padding:clamp(2rem,5vw,3.2rem) clamp(1.2rem,4vw,2.5rem);
}
.gic-cta h2{color:var(--text-main)}
.gic-cta p{color:var(--text-muted);max-width:60ch;margin-inline:auto}
.gic-cta .gic-btn{margin-top:1rem}

/* ---------- Payments table ---------- */
.gic-pay td:first-child{white-space:nowrap;font-weight:600}
.gic-pay .gic-icon{color:var(--accent)}

/* ---------- RTP grid ---------- */
.gic-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:640px){.gic-rtp{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:960px){.gic-rtp{grid-template-columns:repeat(4,minmax(0,1fr))}}
.gic-rtp-item{position:relative;overflow:hidden;min-width:0;border-radius:var(--radius);background:var(--bg-card);border:1px solid var(--border);transition:transform .2s,box-shadow .2s}
.gic-rtp-item::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--grad-cta);z-index:2}
.gic-rtp-item:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(245,185,66,.28)}
.gic-rtp-item__thumb{aspect-ratio:3/2;position:relative;background:linear-gradient(135deg,#2A1D10,#160E05)}
.gic-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.gic-rtp-item__name{padding:.6rem .7rem;font-family:var(--font-head);font-weight:600;font-size:.85rem;color:var(--text-main)}
.gic-rtp-badge{position:absolute;top:.5rem;right:.5rem;z-index:2;background:rgba(0,230,168,.18);border:1px solid rgba(0,230,168,.5);color:var(--accent-2);font-size:.72rem;font-weight:700;padding:.2rem .5rem;border-radius:999px}
.gic-rtp-tooltip{position:absolute;left:0;right:0;bottom:0;opacity:0;transition:opacity .2s;background:linear-gradient(0deg,rgba(10,8,5,.94),rgba(10,8,5,.2));color:#fff;padding:.6rem .7rem;font-size:.78rem;z-index:2}
.gic-rtp-item:hover .gic-rtp-tooltip{opacity:1}

/* ---------- Sticky nav (mobile bottom) ---------- */
.gic-sticky-nav{display:none}
@media (max-width:768px){
  .gic-sticky-nav{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:60;
    justify-content:space-around;align-items:center;gap:.3rem;
    background:var(--surface-light);border-top:1px solid rgba(28,19,12,.15);
    padding:.4rem .5rem;box-shadow:0 -4px 16px rgba(0,0,0,.3);
  }
  .gic-sticky-nav a{display:flex;flex-direction:column;align-items:center;gap:.15rem;font-size:.7rem;color:var(--ink);font-weight:600}
  .gic-sticky-nav .gic-icon{color:var(--ink)}
}

/* ---------- Chat widget ---------- */
.gic-chat-btn{position:fixed;right:1.1rem;bottom:1.1rem;z-index:60;width:56px;height:56px;border-radius:50%;border:0;cursor:pointer;background:var(--grad-cta);color:#160E05;box-shadow:0 8px 24px rgba(245,185,66,.5);display:flex;align-items:center;justify-content:center}
.gic-chat-dialog[hidden]{display:none}
.gic-chat-dialog{position:fixed;right:1.1rem;bottom:5rem;z-index:61;width:min(320px,90vw);background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-card);padding:1.2rem}

/* ---------- Footer (LIGHT surface — dark logo tone) ---------- */
.gic-footer{background:var(--surface-light);color:var(--ink);border-top:3px solid var(--accent)}
.gic-footer__inner{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:clamp(1.4rem,3vw,2.5rem);padding-block:clamp(2.2rem,4vw,3rem)}
.gic-footer__inner>*{min-width:0}
@media (max-width:820px){.gic-footer__inner{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.gic-footer__inner{grid-template-columns:1fr}}
.gic-footer__brand .gic-logo__img{height:38px;margin-bottom:.9rem}
.gic-footer__brand p{color:#5A4A38;font-size:.9rem}
.gic-footer__col h3{font-family:var(--font-head);font-weight:700;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:#8A6A2E;margin:0 0 .9rem}
.gic-footer__col ul{list-style:none;margin:0;padding:0;display:grid;gap:.55rem}
.gic-footer__col a{color:var(--ink);font-size:.92rem;font-weight:500}
.gic-footer__col a:hover{color:#B4791A}
.gic-footer__bottom{border-top:1px solid rgba(28,19,12,.14)}
.gic-footer__bottom-inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;padding-block:1.2rem;align-items:center}
.gic-disclaimer{font-size:.8rem;color:#6B5843;max-width:70ch;line-height:1.55}
.gic-footer__age{display:inline-flex;align-items:center;justify-content:center;width:2.2rem;height:2.2rem;border-radius:50%;background:#160E05;color:#fff;font-family:var(--font-head);font-weight:800;font-size:.85rem;flex-shrink:0}
.gic-copy{font-size:.8rem;color:#6B5843}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.gic-footer .gic-logo__img,.gic-footer .gic-footer__logo-chip{background:#fff;padding:.4rem .55rem;border-radius:8px;filter:none;box-sizing:border-box}
/* sa-ph-media */
.gic-page-header:has(.gic-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.gic-page-header:has(.gic-hero__img) .gic-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.gic-page-header:has(.gic-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))}
.gic-page-header:has(.gic-hero__img)>:not(.gic-hero__img){position:relative;z-index:2}
.gic-page-header:has(.gic-hero__img),.gic-page-header:has(.gic-hero__img) h1,.gic-page-header:has(.gic-hero__img) a,.gic-page-header:has(.gic-hero__img) p,.gic-page-header:has(.gic-hero__img) li,.gic-page-header:has(.gic-hero__img) span{color:#fff}
/* sa-hero-media */
.gic-hero:has(>.gic-hero__img){position:relative;isolation:isolate}
.gic-hero:has(>.gic-hero__img)>.gic-hero__img{z-index:0}
.gic-hero:has(>.gic-hero__img)::after{z-index:1}
.gic-hero:has(>.gic-hero__img)>:not(.gic-hero__img){position:relative;z-index:2}
/* sa-rhythm */
:where(.gic-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.gic-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.gic-rtp-item,.gic-rtp-item:hover,.gic-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
