/* MAIN WRAPPER */
.cnt-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  
  
}

/* LEFT BADGE */
.cnt-header-badge {
   position: relative;
  background: linear-gradient(90deg, #2d5be3, #1e40af);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 25px 10px 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}
.cnt-header-badge::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 20px solid #1e40af;
  z-index: 999;
}

/* DARK EDGE (like your image) */
.cnt-header-badge::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 0;
  width: 4px;
  height: 100%;
  
}


/* ICON */
.cnt-badge-icon {
  margin-right: 8px;
  font-size: 12px;
}

/* SCROLL AREA */
.cnt-scroll {
  overflow: hidden;
   position: relative;
  flex: 1;
}

/* TRACK */
/*.cnt-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  width: max-content;
  animation: cnt-scroll linear infinite;
  padding-left: 20px;
}*/
.cnt-track {
   display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  padding-left: 100%;
  animation: cnt-scroll 20s linear infinite;
  will-change: transform;
}

/* ITEM */
.cnt-item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.cnt-item a {
  text-decoration: none !important;
  color: inherit;
}

/* HOVER PAUSE */
.cnt-ticker:hover .cnt-track {
  animation-play-state: paused;
}

/* ANIMATION */
/*@keyframes cnt-scroll {
  /*0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}*/

@keyframes cnt-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}