.top-header-banner-container {

    width: 100%;

    height: 32px;

    background: #000;

    overflow: hidden;

    position: relative;

  }



  .marquee {

    display: flex;

    align-items: center;

    height: 100%;

    white-space: nowrap;

    overflow: hidden;

  }



  .marquee-track {

    display: flex;

    align-items: center;

    animation: scroll 30s linear infinite;

    width: max-content;

  }



  .marquee-content {

    display: flex;

    align-items: center;

    /* Remove gap — we'll handle spacing via separators */

    font-size: 11px;

    font-weight: 400;

    color: #ffffff;

    font-family: system-ui, -apple-system, sans-serif;

    line-height: 1;

  }



  .marquee-content a {

    color: #ffffff;

    text-decoration: none;

    transition: color 0.2s ease;

  }



  .marquee-content a:hover {

    color: #ccc;

  }



  /* Make every piece of text a proper flex item */

  .marquee-content > span,

  .marquee-content > a {

    display: inline-block;

    /* Ensures consistent baseline alignment */

  }



  /* Dot separator with even spacing */

  .marquee-separator {

    width: 4px;

    height: 4px;

    background: #ffffff;

    border-radius: 50%;

    flex-shrink: 0;

    margin: 0 1rem; /* 1rem on left AND right → even spacing */

  }



  @keyframes scroll {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

  }



  .top-header-banner-container:hover .marquee-track {

    animation-play-state: paused;

  }



  div[data-row="top"] div.ct-container {

    width: 100% !important;

    max-width: 100% !important;

  }