.kipromo-wrap{
  margin:16px auto 22px;
  width:100%;
  max-width:680px;
}
.kipromo-label{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 8px;
  color:rgba(226,232,240,.72);
  font-size:12px;
}
.kipromo-label:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:#3b82f6;
}
.kipromo-slider{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:#020617;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}
.kipromo-track{
  position:relative;
}
.kipromo-slide{
  display:none;
  width:100%;
  text-decoration:none;
}
.kipromo-slide.is-active{
  display:block;
}
.kipromo-slide img{
  display:block;
  width:100%;
  height:auto;
  max-height:382px;
  aspect-ratio:16/9;
  object-fit:cover;
}
.kipromo-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:30px;
  height:30px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(2,6,23,.58);
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
.kipromo-nav.prev{left:8px}
.kipromo-nav.next{right:8px}
.kipromo-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:7px;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:6px;
}
.kipromo-dot{
  width:7px;
  height:7px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.44);
  cursor:pointer;
}
.kipromo-dot.is-active{
  width:18px;
  background:#3b82f6;
}
@media(max-width:760px){
  .kipromo-wrap{
    margin:14px auto 20px;
    max-width:100%;
  }
  .kipromo-slide img{
    max-height:none;
    min-height:160px;
  }
}