/* deploy-css-a630fc4ca4d2 */

:root{
  --st-primary:#1e88e5;
  --st-primary-dark:#12599b;
  --st-primary-darker:#0d3f6e;
  --st-secondary:#ffffff;
  --st-accent:#ffeb3b;
  --st-ink:#0f1f2e;
  --st-muted:#5b7186;
  --st-border:#dfe7ee;
  --st-bg:#f5f8fb;
  --st-card:#ffffff;
  --st-header-h:64px;
  --st-header-h-desktop:84px;
  --st-mobilecta-h:68px;
  --st-radius:14px;
  --st-shadow:0 10px 30px -12px rgba(15,31,46,0.25);
  --st-font-display:'Fraunces',serif;
  --st-font-body:'Work Sans',sans-serif;
}



*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--st-font-body);
  color:var(--st-ink);
  background:var(--st-bg);
  line-height:1.6;
  padding-top:var(--st-header-h);
  padding-bottom:calc(var(--st-mobilecta-h) + env(safe-area-inset-bottom));
  overflow-x:hidden;
}

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

h1,h2,h3{font-family:var(--st-font-display);color:var(--st-ink);line-height:1.15;margin:0.3em 0 0.5em;}

p{margin:0 0 0.75em;max-width:70ch;}

a{color:var(--st-primary);text-decoration:none;}

.st-section-heading{
  font-size:clamp(1.5rem,4vw + 0.5rem,2.4rem);
  border-left:6px solid var(--st-accent);
  padding-left:0.6em;
  margin-bottom:0.6em;
}

main section{
  padding:1.5rem 1.25rem;
  max-width:1200px;
  margin:0 auto;
}

@media (min-width:768px){
  main section{padding:2.5rem 2rem;}
}
@media (min-width:1200px){
  main section{padding:3rem 2rem;}
}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0.6em 1.4em;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease,background-color 0.15s ease,color 0.15s ease;
}
.st-btn-primary{
  background:var(--st-accent);
  color:var(--st-primary-darker);
  border-color:var(--st-accent);
}
.st-btn-primary:hover{background:#fff176;}
.st-btn-ghost{
  background:transparent;
  color:var(--st-secondary);
  border-color:rgba(255,255,255,0.7);
}
.st-btn-ghost:hover{background:rgba(255,255,255,0.15);}
.st-btn-large{font-size:1.1rem;padding:0.8em 1.8em;}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important;}
}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:linear-gradient(135deg,var(--st-primary-darker),var(--st-primary));
  border-bottom:4px solid var(--st-accent);
  transition:padding 0.2s ease,box-shadow 0.2s ease;
}
.st-header.is-scrolled{
  box-shadow:0 6px 20px rgba(13,63,110,0.35);
}
.st-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0.6rem 1rem;
  max-width:1400px;
  margin:0 auto;
  min-height:var(--st-header-h);
}
@media (min-width:1024px){
  .st-header-inner{min-height:var(--st-header-h-desktop);padding:0.8rem 2rem;}
}
.st-logo{display:flex;align-items:center;}
.st-logo-img{height:36px;width:auto;}
@media (min-width:1024px){.st-logo-img{height:44px;}}

.st-nav{display:none;}
@media (min-width:1024px){
  .st-nav{display:flex;flex:1;justify-content:center;}
  .st-nav-links{
    display:flex;
    align-items:center;
    gap:1.75rem;
    list-style:none;
    margin:0;padding:0;
    flex-wrap:wrap;
  }
  .st-nav-links a{
    color:var(--st-secondary);
    font-weight:500;
    padding:0.4em 0;
    border-bottom:2px solid transparent;
  }
  .st-nav-links a:hover,.st-nav-link.is-current{
    border-bottom-color:var(--st-accent);
  }
}

.st-auth-cluster{display:none;}
@media (min-width:1024px){
  .st-auth-cluster{
    display:flex;
    align-items:center;
    gap:0.75rem;
  }
}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  background:transparent;
  border:2px solid rgba(255,255,255,0.6);
  border-radius:8px;
  cursor:pointer;
  padding:0;
}
.st-hamburger span{
  display:block;
  width:22px;
  height:2px;
  margin:0 auto;
  background:var(--st-secondary);
  transition:transform 0.2s ease,opacity 0.2s ease;
}
@media (min-width:1024px){.st-hamburger{display:none;}}
.st-menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.st-menu-toggle.is-active span:nth-child(2){opacity:0;}
.st-menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.st-mobile-nav{
  display:none;
  list-style:none;
  margin:0;
  padding:0.5rem 1rem 1.25rem;
  background:var(--st-primary-dark);
}
.st-mobile-nav.is-open{display:flex;flex-direction:column;gap:0.4rem;}
.st-mobile-nav li{width:100%;}
.st-mobile-nav a{
  display:flex;
  align-items:center;
  min-height:44px;
  color:var(--st-secondary);
  font-weight:500;
  padding:0.4em 0.2em;
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.st-mobile-nav a.st-btn{justify-content:center;border-bottom:none;margin-top:0.4rem;}
@media (min-width:1024px){.st-mobile-nav{display:none !important;}}

.st-hero{
  background:linear-gradient(160deg,var(--st-primary-darker) 0%,var(--st-primary) 65%);
  color:var(--st-secondary);
  padding:2rem 1.25rem;
  position:relative;
  overflow:hidden;
}
.st-hero::after{
  content:"";
  position:absolute;
  inset:auto -20% -40% auto;
  width:60%;
  height:60%;
  background:radial-gradient(circle,rgba(255,235,59,0.35),transparent 70%);
  pointer-events:none;
}
.st-hero-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1;}
.st-hero-copy{max-width:640px;}
.st-hero-kicker{
  text-transform:uppercase;
  letter-spacing:0.15em;
  font-weight:600;
  color:var(--st-accent);
  margin:0 0 0.5em;
  font-size:0.85rem;
}
.st-hero-title{
  font-size:clamp(2rem,6vw + 0.5rem,3.6rem);
  border-bottom:5px solid var(--st-accent);
  padding-bottom:0.3em;
  display:inline-block;
  margin-bottom:0.5em;
}
.st-hero-subtitle{
  font-size:clamp(1rem,1.5vw + 0.6rem,1.25rem);
  color:rgba(255,255,255,0.9);
  max-width:60ch;
}
.st-hero-media{margin-top:1.5rem;position:relative;z-index:1;}

@media (min-width:1024px){
  .st-hero{padding:3.5rem 2rem;}
  .st-hero-inner{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:2rem;
    align-items:center;
  }
  .st-hero-media{margin-top:0;}
}

.st-hero-slider{
  display:flex;
  gap:0.75rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  border-radius:var(--st-radius);
  padding-bottom:0.25rem;
}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  border-radius:var(--st-radius);
  overflow:hidden;
  aspect-ratio:16/10;
}
.st-hero-slide img{width:100%;height:100%;object-fit:cover;}

.st-facts{background:var(--st-bg);}
.st-facts-table-wrap{
  background:var(--st-card);
  border-radius:var(--st-radius);
  border:1px solid var(--st-border);
  box-shadow:var(--st-shadow);
  overflow:hidden;
  border-top:5px solid var(--st-accent);
  margin-top:1rem;
}
.st-facts-table{
  width:100%;
  border-collapse:collapse;
}
.st-facts-table tbody{display:grid;}
.st-facts-table tr{
  display:grid;
  grid-template-columns:1fr;
  border-bottom:1px solid var(--st-border);
  position:relative;
  padding:0.9rem 1rem;
}
.st-facts-table tr::before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:4px;
  background:var(--st-primary);
}
.st-facts-table tr:nth-child(even){background:rgba(30,136,229,0.04);}
.st-facts-table tr:last-child{border-bottom:none;}
.st-facts-table th,
.st-facts-table td{
  display:block;
  text-align:left;
  padding:0;
}
.st-facts-table th{
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--st-muted);
  font-weight:600;
  margin-bottom:0.2rem;
}
.st-facts-table td{
  font-size:1.1rem;
  font-weight:600;
  color:var(--st-ink);
}

@media (min-width:768px){
  .st-facts-table tr{
    grid-template-columns:1fr 2fr;
    align-items:center;
    padding:1.1rem 1.5rem;
  }
  .st-facts-table th{margin-bottom:0;}
  .st-facts-table tr:hover{background:rgba(30,136,229,0.08);}
}

.st-kyc,.st-responsible,.st-mobile-app,.st-security{background:var(--st-secondary);}
.st-kyc-text,.st-responsible-text,.st-mobile-text,.st-security-text{color:var(--st-ink);}

.st-payments{background:var(--st-bg);}
.st-payments-intro{color:var(--st-muted);}

.st-registration{background:var(--st-secondary);}
.st-reg-steps{
  display:grid;
  gap:0.9rem;
  padding:0;
  margin:0 0 1.25rem;
  list-style:none;
  counter-reset:st-step;
}
.st-reg-steps li{
  counter-increment:st-step;
  position:relative;
  padding:0.9rem 1rem 0.9rem 3rem;
  background:var(--st-card);
  border:1px solid var(--st-border);
  border-radius:10px;
}
.st-reg-steps li::before{
  content:counter(st-step);
  position:absolute;
  left:0.7rem;
  top:0.5rem;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--st-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.85rem;
}
@media (min-width:768px){
  .st-reg-steps{grid-template-columns:repeat(2,1fr);}
}

.st-games{background:var(--st-bg);}
.st-games-intro{color:var(--st-muted);}
.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0.9rem;
  margin:1.25rem 0;
}
@media (min-width:600px){
  .st-games-grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:900px){
  .st-games-grid{grid-template-columns:repeat(4,1fr);}
}
@media (min-width:1200px){
  .st-games-grid{grid-template-columns:repeat(5,1fr);}
}
.st-game-card{
  background:var(--st-card);
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--st-border);
  transition:transform 0.15s ease,box-shadow 0.15s ease;
  display:flex;
  flex-direction:column;
}
.st-game-card:hover{transform:translateY(-3px);box-shadow:var(--st-shadow);}
.st-game-img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}
.st-game-name{
  padding:0.5rem 0.6rem;
  font-size:0.85rem;
  font-weight:600;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:2.6em;
}

.st-bonus{background:var(--st-secondary);}
.st-bonus-list{
  display:grid;
  gap:0.75rem;
  padding:0;
  margin:1rem 0 1.25rem;
  list-style:none;
}
.st-bonus-list li{
  position:relative;
  padding:0.7rem 1rem 0.7rem 2.2rem;
  background:linear-gradient(90deg,rgba(30,136,229,0.06),transparent);
  border-left:4px solid var(--st-primary);
  border-radius:6px;
}
.st-bonus-list li::before{
  content:"★";
  position:absolute;
  left:0.7rem;
  color:var(--st-accent);
}
@media (min-width:768px){
  .st-bonus-list{grid-template-columns:repeat(2,1fr);}
}

.st-faq{background:var(--st-bg);}
.st-faq-list{display:grid;gap:0.75rem;margin-top:1rem;}
.st-faq-item{
  background:var(--st-card);
  border:1px solid var(--st-border);
  border-radius:10px;
  padding:0.2rem 1rem;
}
.st-faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  min-height:44px;
  padding:0.7rem 0;
  font-weight:600;
  list-style:none;
}
.st-faq-q::-webkit-details-marker{display:none;}
.st-faq-q::after{
  content:"+";
  font-size:1.3rem;
  color:var(--st-primary);
  transition:transform 0.2s ease;
  margin-left:0.5rem;
}
details[open] .st-faq-q::after{transform:rotate(45deg);}
.st-faq-a{
  padding:0 0 1rem;
  color:var(--st-muted);
}

.st-footer{
  background:var(--st-primary-darker);
  color:rgba(255,255,255,0.9);
  padding:2rem 1.25rem 1rem;
}
.st-footer-columns{
  display:grid;
  gap:1.5rem;
  max-width:1200px;
  margin:0 auto;
}
@media (min-width:768px){
  .st-footer-columns{grid-template-columns:2fr 1fr 1fr;}
}
.st-footer-heading{
  color:var(--st-accent);
  font-size:1rem;
  margin-bottom:0.6em;
}
.st-footer-col ul{list-style:none;padding:0;margin:0;display:grid;gap:0.4rem;}
.st-footer-col a{color:rgba(255,255,255,0.85);}
.st-footer-logo{height:34px;margin-bottom:0.6rem;}
.st-footer-text,.st-footer-disclaimer{color:rgba(255,255,255,0.7);font-size:0.9rem;}

.st-footer-payments{
  max-width:1200px;
  margin:1.75rem auto 0;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,0.15);
}
.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  justify-content:center;
  margin-top:0.75rem;
}
.st-payment-logo{
  height:30px;
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:rgba(255,255,255,0.95);
  border-radius:8px;
  padding:0.4rem 0.7rem;
}

.st-footer-bottom{
  text-align:center;
  max-width:1200px;
  margin:1.5rem auto 0;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:0.85rem;
  color:rgba(255,255,255,0.6);
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1200;
  display:flex;
  gap:0.5rem;
  padding:0.6rem 0.75rem;
  padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
  background:var(--st-primary-darker);
  border-top:3px solid var(--st-accent);
}
.st-mobile-cta .st-btn{flex:1;min-height:44px;}
@media (min-width:1024px){
  .st-mobile-cta{display:none;}
  body{padding-bottom:0;}
}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobilecta-h) + 1rem + env(safe-area-inset-bottom));
  z-index:1100;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--st-accent);
  color:var(--st-primary-darker);
  border:none;
  font-size:1.2rem;
  cursor:pointer;
  box-shadow:var(--st-shadow);
}
@media (min-width:1024px){
  .st-back-to-top{bottom:1.5rem;}
}
.is-hidden{display:none !important;}

.st-cookie-banner{
  position:fixed;
  left:0.75rem;right:0.75rem;
  bottom:calc(var(--st-mobilecta-h) + 0.75rem + env(safe-area-inset-bottom));
  z-index:1150;
  background:var(--st-secondary);
  border:1px solid var(--st-border);
  border-left:4px solid var(--st-primary);
  border-radius:10px;
  padding:1rem;
  box-shadow:var(--st-shadow);
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  align-items:center;
  max-width:600px;
  margin:0 auto;
}
@media (min-width:1024px){
  .st-cookie-banner{bottom:1.25rem;left:auto;right:1.25rem;}
}

.st-games-cols-5{width:100%;}

@media (min-width:1024px){
  .st-header-inner{gap:1.5rem;}
}
[class*="-mobile-menu"].is-open,[class*="-mobile-nav"].is-open,[class*="-mobile-menu"].is-open.is-hidden{display:block !important}
[class*="-mobile-nav"].is-open [class*="-mobile-menu"],[class*="-mobile-menu"].is-open [class*="-mobile-nav-list"]{display:block !important}
[class*="-mobile-nav"].is-open [class*="-mobile-nav-list"],[class*="-mobile-menu"].is-open [class*="-nav-list"]{display:flex !important}

@media(max-width:900px){[class*="-header-inner"],[class*="-header"] > [class*="-inner"]{position:relative}[data-burger-open="true"]{display:flex !important;flex-direction:column;align-items:stretch;gap:.15rem;position:absolute;left:0;right:0;top:100%;z-index:70;margin:0;padding:.5rem;list-style:none;max-height:75vh;overflow-y:auto;background:#ffffff;border-top:1px solid rgba(255,255,255,.14);box-shadow:0 14px 28px rgba(0,0,0,.38)}[data-burger-open="true"] > li{width:100%}[data-burger-open="true"] a{display:block;width:100%;padding:.7rem .9rem;min-height:44px}}

html{scroll-behavior:smooth}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
[id]{scroll-margin-top:calc(var(--st-hdr,64px) + 12px)}

.st-hero-slider{display:flex;gap:.75rem;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.st-hero-slider::-webkit-scrollbar{display:none}
.st-hero-slide{flex:0 0 100%;scroll-snap-align:center;width:100%;height:auto;object-fit:cover;border-radius:14px}
.st-hero-img{max-width:100%;height:auto;border-radius:14px}
:where(.st-games-grid){display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
@media(min-width:640px){:where(.st-games-grid){grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:900px){:where(.st-games-grid){grid-template-columns:repeat(5,minmax(0,1fr))}}
@media(min-width:1400px){:where(.st-games-grid){grid-template-columns:repeat(6,minmax(0,1fr))}}
.st-game-img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block;border-radius:10px}
.st-payments-row{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}
.st-payment-logo{max-height:32px;width:auto;object-fit:contain}
[class*="-hero-media"]{position:absolute;inset:0;z-index:1;overflow:hidden}
[class*="-hero-media"]>img,[class*="-hero-media"] [class*="-hero-img"],[class*="-hero-media"] [class*="-hero-slide"]{width:100%;height:100%;object-fit:cover;border-radius:0}
[class*="-hero-media"]::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.72))}
[class*="-hero-content"]{position:relative;z-index:2}
@media(max-width:767px){[class*="-hero-media"]{display:block !important;visibility:visible !important;opacity:1 !important;max-height:none !important}}
@supports selector(:has(*)){@media(max-width:767px){*:has(> [class*="-hero-media"]){flex-direction:column !important;align-items:stretch !important;flex-wrap:wrap !important}[class*="-hero-media"]{position:relative !important;inset:auto !important;order:2 !important;flex:0 0 auto !important;width:100% !important;height:auto !important;margin:1rem 0 0 !important;border-radius:14px;overflow:hidden}[class*="-hero-media"]::after{display:none !important}[class*="-hero-media"]>img,[class*="-hero-media"] [class*="-hero-img"]{width:100% !important;height:auto !important;aspect-ratio:auto !important;object-fit:contain;border-radius:14px}[class*="-hero-media"] [class*="-hero-slide"]{width:100% !important;height:auto !important;aspect-ratio:16/9;object-fit:cover;border-radius:14px}[class*="-hero-slider"]{height:auto !important;aspect-ratio:auto !important}}}

:where(.st-promo-section){max-width:1200px;margin:0 auto}
.st-promo-section{padding:0 1.25rem}

:where(.st-headline-section){max-width:1200px;margin:0 auto}
.st-headline-section{padding:2rem 1.25rem 1rem}
.st-headline-section > :is(h1,[class*="-title"]){color:inherit !important;margin:0}

.st-lead-cta{max-width:1200px;margin:0 auto;padding:1rem 1.25rem 1.25rem;text-align:center}
.st-lead-cta-btn{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:.85rem 2.25rem;font-size:1.05rem;line-height:1.2;max-width:100%}
.st-lead-intro{max-width:860px;margin:0 auto;padding:0 1.25rem 2rem}
.st-lead-intro p{color:inherit;margin:0;line-height:1.75;font-size:1.05rem}
@media(max-width:640px){.st-lead-cta-btn{width:100%}.st-headline-section{padding:1.5rem 1.25rem .6rem}.st-lead-cta{padding:.6rem 1.25rem 1rem}.st-lead-intro{padding-bottom:1.5rem}}

section[class*="-hero"]{max-width:1200px !important;margin-left:auto !important;margin-right:auto !important;border-radius:16px;overflow:hidden}

[class*="-footer"] [class*="-logo"]:not([class*="-payment"]){filter:none !important}

.st-promo{position:relative;overflow:hidden;border-radius:16px;margin:0 0 1rem}
.st-promo-track{display:flex;transition:transform .5s ease;will-change:transform}
.st-promo-slide{position:relative;flex:0 0 100%;min-width:100%;display:flex;align-items:center;min-height:clamp(230px,44vw,420px);overflow:hidden}
.st-promo-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.st-promo-slide::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(0,0,0,.80) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,.05) 100%)}
.st-promo-body{position:relative;z-index:2;max-width:min(560px,58%);padding:clamp(1rem,3vw,2.5rem)}
.st-promo-title{margin:0 0 .45rem;color:#fff;font-weight:800;line-height:1.15;font-size:clamp(1.25rem, 1rem + 2vw, 2.35rem)}
.st-promo-text{margin:0 0 1rem;color:rgba(255,255,255,.9);line-height:1.45;font-size:clamp(.9rem, .85rem + .35vw, 1.05rem)}
.st-promo-cta{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.6rem 1.5rem;border-radius:999px;background:#ffeb3b;color:#111111;font-weight:700;text-decoration:none;box-shadow:0 8px 20px rgba(0,0,0,.28)}
.st-promo-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:40px;height:40px;padding:0;border:0;border-radius:50%;background:rgba(0,0,0,.45);color:#fff;cursor:pointer;display:none;line-height:1;font-size:22px}
.st-promo-prev{left:10px}.st-promo-prev::before{content:"\2039"}
.st-promo-next{right:10px}.st-promo-next::before{content:"\203A"}
@media(min-width:768px){.st-promo-arrow{display:block}}
.st-promo-dots{position:absolute;left:0;right:0;bottom:10px;z-index:3;display:flex;justify-content:center;gap:8px}
.st-promo-dot{width:9px;height:9px;padding:0;border:0;border-radius:50%;cursor:pointer;background:rgba(255,255,255,.45);transition:width .25s ease}
.st-promo-dot[aria-current="true"]{background:#fff;width:22px;border-radius:999px}
@media(max-width:640px){.st-promo-slide{min-height:190px}.st-promo-body{padding:.85rem 1rem}.st-promo-title{font-size:1.15rem;margin-bottom:.3rem}.st-promo-text{font-size:.88rem;margin-bottom:.65rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.st-promo-dots{bottom:6px}}
@media(max-width:520px){.st-promo-body{max-width:100%}.st-promo-slide::after{background:linear-gradient(180deg,rgba(0,0,0,.30) 0%,rgba(0,0,0,.82) 100%)}}
@media(prefers-reduced-motion:reduce){.st-promo-track{transition:none}}
[class*="-hero-media"]:empty{display:none !important}

.is-hidden{display:none !important}
