:root {
  --bg-main: #0C1B33;
  --bg-card: #14264A;
  --accent: #2ECC71;
  --accent-2: #00AA81;
  --text-main: #EAF0F8;
  --text-muted: #93A4BE;
  --border: #223A63;
  --accent-hover: #27AE60;
  --glow: 0 6px 18px rgba(46,204,113,0.30);
  --shadow-card: 0 8px 24px rgba(4,10,22,0.45);
  --font-head: 'Rubik', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--text-main);
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.ivg-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.25rem);
}

section { padding-block: clamp(3rem, 7vw, 5rem); }
.ivg-section--alt { background: #0A1728; }

.ivg-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}

/* ---------- Buttons ---------- */
.ivg-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: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #072012;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--glow);
  text-align: center;
}
.ivg-btn:hover { background: var(--accent-hover); text-decoration: none; transform: translateY(-2px); color: #072012; }
.ivg-btn--lg { padding: 1.05rem 2.2rem; font-size: 1.12rem; }
.ivg-btn--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border);
  box-shadow: none;
}
.ivg-btn--ghost:hover { background: var(--bg-card); color: var(--text-main); border-color: var(--accent-2); }

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

/* ---------- Header ---------- */
.ivg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,27,51,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.ivg-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}
.ivg-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.ivg-logo__img { height: 40px; width: auto; display: block; }
.ivg-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.ivg-nav a:not(.ivg-btn) {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--text-muted);
  transition: color .18s ease;
}
.ivg-nav a:not(.ivg-btn):hover { color: var(--text-main); text-decoration: none; }
.ivg-nav a:not(.ivg-btn).is-active { color: var(--accent); }
.ivg-header__cta { flex-shrink: 0; }

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

@media (max-width: 900px) {
  .ivg-burger { display: flex; }
  .ivg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem clamp(1rem, 4vw, 2.25rem) 1.25rem;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .ivg-header.is-open .ivg-nav { display: flex; }
  .ivg-nav a:not(.ivg-btn) {
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .ivg-nav .ivg-btn { margin-top: 1rem; }
  .ivg-header__cta { display: none; }
}

/* ---------- Hero (overlay pattern) ---------- */
.ivg-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0C1B33 0%, #14264A 100%);
}
.ivg-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
}
.ivg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10,12,18,.92) 0%, rgba(10,12,18,.74) 45%, rgba(10,12,18,.48) 100%);
}
.ivg-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.ivg-hero__content { max-width: 640px; }
.ivg-hero h1 { color: #fff; }
.ivg-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #DCE6F5;
  margin-bottom: 1.75rem;
}
.ivg-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.ivg-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem;
  margin-bottom: 1.1rem;
  background: rgba(0,170,129,0.18);
  border: 1px solid var(--accent-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}
.ivg-rating-badge .ivg-icon { color: var(--accent-2); width: 1.15em; height: 1.15em; }

/* ---------- Overview ---------- */
.ivg-overview p { color: var(--text-main); }
.ivg-overview__lead { font-size: 1.15rem; color: var(--text-muted); }

/* ---------- Stats bar ---------- */
.ivg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.ivg-stats__item {
  min-width: 0;
  text-align: center;
  padding: 1.25rem 1rem;
  border-inline-start: 2px solid var(--accent-2);
}
.ivg-stats__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--accent);
  line-height: 1;
}
.ivg-stats__label {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ---------- Feature cards / cards grid ---------- */
.ivg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.ivg-card {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease;
}
.ivg-card:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.ivg-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,170,129,0.15);
  color: var(--accent-2);
  margin-bottom: 1.1rem;
}
.ivg-card__icon .ivg-icon { width: 1.55rem; height: 1.55rem; }
.ivg-card h3 { margin-bottom: .5rem; }
.ivg-card p { color: var(--text-muted); margin-bottom: 0; }

/* ---------- Data table ---------- */
.ivg-table-wrap { overflow-x: auto; max-width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.ivg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: .96rem;
}
.ivg-table th, .ivg-table td {
  padding: .9rem 1.1rem;
  text-align: start;
  border-bottom: 1px solid var(--border);
}
.ivg-table thead th {
  background: var(--accent);
  color: #072012;
  font-family: var(--font-head);
  font-weight: 700;
  white-space: nowrap;
}
.ivg-table tbody tr:nth-child(odd) { background: var(--bg-main); }
.ivg-table tbody tr:nth-child(even) { background: var(--bg-card); }
.ivg-table td { color: var(--text-main); }

/* ---------- Two cols / content panel ---------- */
.ivg-two-cols {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.ivg-two-cols > * { min-width: 0; }
@media (max-width: 820px) { .ivg-two-cols { grid-template-columns: 1fr; } }

.ivg-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.ivg-panel__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.ivg-facts { margin: 0; }
.ivg-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.ivg-facts__row:last-child { border-bottom: 0; }
.ivg-facts dt { color: var(--text-muted); font-size: .92rem; margin: 0; }
.ivg-facts dd { margin: 0; font-weight: 600; text-align: end; overflow-wrap: anywhere; }

.ivg-checklist { list-style: none; margin: 0; padding: 0; }
.ivg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .55rem 0;
}
.ivg-checklist .ivg-icon { color: var(--accent); margin-top: .1rem; }

.ivg-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.ivg-mini-stats__tile {
  min-width: 0;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.ivg-mini-stats__num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.ivg-mini-stats__label { font-size: .78rem; color: var(--text-muted); }

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

/* ---------- Numbered list ---------- */
.ivg-numbered { list-style: none; counter-reset: ivg-n; margin: 0; padding: 0; }
.ivg-numbered li {
  position: relative;
  counter-increment: ivg-n;
  padding: .5rem 0 1.25rem 3.4rem;
  min-height: 2.6rem;
}
.ivg-numbered li::before {
  content: counter(ivg-n);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #072012;
  font-family: var(--font-head);
  font-weight: 700;
}

/* ---------- Categories bar ---------- */
.ivg-cats { display: flex; flex-wrap: wrap; gap: .6rem; }
.ivg-cats__pill {
  padding: .45rem 1.05rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .88rem;
  color: var(--text-muted);
}
.ivg-cats__pill:hover { border-color: var(--accent-2); color: var(--text-main); text-decoration: none; }

/* ---------- Page header ---------- */
.ivg-page-header {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(135deg, #0C1B33 0%, #14264A 100%);
  border-bottom: 1px solid var(--border);
}
.ivg-page-header h1 { margin-bottom: .5rem; }

/* ---------- Breadcrumb ---------- */
.ivg-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}
.ivg-crumb li { display: inline-flex; align-items: center; gap: .4rem; }
.ivg-crumb li:not(:last-child)::after { content: "/"; color: var(--border); }
.ivg-crumb a { color: var(--text-muted); }
.ivg-crumb a:hover { color: var(--accent); }
.ivg-crumb [aria-current="page"] { color: var(--text-main); }

/* ---------- Legal body ---------- */
.ivg-legal { max-width: 100%; counter-reset: ivg-sec; }
.ivg-legal h2 {
  counter-increment: ivg-sec;
  margin-top: 2.25rem;
  font-size: 1.4rem;
}
.ivg-legal h2::before {
  content: counter(ivg-sec) ". ";
  color: var(--accent);
}
.ivg-legal p, .ivg-legal li { color: var(--text-muted); }
.ivg-legal ul, .ivg-legal ol { padding-inline-start: 1.4rem; }
.ivg-legal li { margin-bottom: .5rem; }

/* ---------- CTA block ---------- */
.ivg-cta-block { text-align: center; }
.ivg-cta-block__inner {
  background: linear-gradient(135deg, #14264A 0%, #0A1728 100%);
  border: 1px solid var(--accent-2);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--shadow-card);
}
.ivg-cta-block h2 { margin-bottom: .6rem; }
.ivg-cta-block p { color: var(--text-muted); max-width: 60ch; margin-inline: auto; margin-bottom: 1.75rem; }

/* ---------- TOC ---------- */
.ivg-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.ivg-toc__title { font-family: var(--font-head); font-weight: 700; margin-bottom: .75rem; }
.ivg-toc ul { list-style: none; margin: 0; padding: 0; }
.ivg-toc li { padding: .35rem 0; border-bottom: 1px dashed var(--border); }
.ivg-toc li:last-child { border-bottom: 0; }
.ivg-toc a { color: var(--text-muted); }
.ivg-toc a:hover { color: var(--accent); }

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

/* ---------- Payments table ---------- */
.ivg-payments { width: 100%; border-collapse: collapse; min-width: 560px; }
.ivg-payments th, .ivg-payments td { padding: .85rem 1rem; text-align: start; border-bottom: 1px solid var(--border); white-space: nowrap; }
.ivg-payments thead th { background: var(--accent); color: #072012; font-family: var(--font-head); }
.ivg-payments td:first-child { display: flex; align-items: center; gap: .6rem; }
.ivg-payments .ivg-icon { color: var(--accent-2); }

/* ---------- RTP grid ---------- */
.ivg-rtp {
  display: grid;
  gap: clamp(.6rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .ivg-rtp { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .ivg-rtp { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.ivg-rtp-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--accent-2);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ivg-rtp-item:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.ivg-rtp-item__thumb {
  aspect-ratio: 3/2;
  position: relative;
  background: linear-gradient(135deg, #14264A 0%, #0A1728 100%);
}
.ivg-rtp-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ivg-rtp-item__name {
  padding: .6rem .75rem;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ivg-rtp-badge {
  position: absolute;
  top: .5rem;
  inset-inline-end: .5rem;
  padding: .2rem .55rem;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  border-radius: var(--radius-pill);
}
.ivg-rtp-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity .2s;
  padding: .6rem .75rem;
  background: linear-gradient(0deg, rgba(7,16,32,.95), rgba(7,16,32,.6));
  font-size: .78rem;
  color: #DCE6F5;
}
.ivg-rtp-item:hover .ivg-rtp-tooltip { opacity: 1; }

/* ---------- Sticky nav (mobile) ---------- */
.ivg-sticky-nav { display: none; }
@media (max-width: 768px) {
  .ivg-sticky-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    justify-content: space-around;
    padding: .5rem;
  }
  .ivg-sticky-nav a { display: inline-flex; flex-direction: column; align-items: center; gap: .15rem; font-size: .7rem; color: var(--text-muted); }
  .ivg-sticky-nav a .ivg-icon { color: var(--accent); }
}

/* ---------- Chat widget ---------- */
.ivg-chat-btn {
  position: fixed;
  bottom: 1.25rem;
  inset-inline-end: 1.25rem;
  z-index: 95;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #072012;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ivg-chat-dialog {
  position: fixed;
  bottom: 5.75rem;
  inset-inline-end: 1.25rem;
  z-index: 95;
  width: min(320px, calc(100vw - 2.5rem));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

/* ---------- Footer ---------- */
.ivg-footer {
  background: #08152A;
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
  font-size: .92rem;
}
.ivg-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
}
.ivg-footer__grid > * { min-width: 0; }
@media (max-width: 820px) { .ivg-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ivg-footer__grid { grid-template-columns: 1fr; } }
.ivg-footer__brand .ivg-logo__img { height: 38px; margin-bottom: 1rem; }
.ivg-footer__about { color: var(--text-muted); max-width: 34ch; }
.ivg-footer h3 {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.ivg-footer__col ul { list-style: none; margin: 0; padding: 0; }
.ivg-footer__col li { margin-bottom: .6rem; }
.ivg-footer__col a { color: var(--text-muted); }
.ivg-footer__col a:hover { color: var(--text-main); }
.ivg-footer__disclaimer {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.7;
}
.ivg-footer__badges { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.ivg-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.ivg-footer__bottom {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .82rem;
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.ivg-footer .ivg-logo__img,.ivg-footer .ivg-footer__logo-chip{background:#fff;padding:.4rem .55rem;border-radius:8px;filter:none;box-sizing:border-box}
/* sa-ph-media */
.ivg-page-header:has(.ivg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.ivg-page-header:has(.ivg-hero__img) .ivg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.ivg-page-header:has(.ivg-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))}
.ivg-page-header:has(.ivg-hero__img)>:not(.ivg-hero__img){position:relative;z-index:2}
.ivg-page-header:has(.ivg-hero__img),.ivg-page-header:has(.ivg-hero__img) h1,.ivg-page-header:has(.ivg-hero__img) a,.ivg-page-header:has(.ivg-hero__img) p,.ivg-page-header:has(.ivg-hero__img) li,.ivg-page-header:has(.ivg-hero__img) span{color:#fff}
/* sa-slot-link */
.ivg-rtp-item,.ivg-rtp-item:hover,.ivg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
