/* === FEATURED BOOKMAKERS TICKER === */
  .bk-ticker{
    border-block: 1px solid #232636;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  }
  .bk-ticker-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem 1rem;
    align-items: center;
  }
  .bk-ticker-label{
    font-size: .85rem;
    color: var(--muted, #9aa3b2);
    white-space: nowrap;
  }
  .ticker-viewport{
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient( to right, rgba(0,0,0,0), #000 8%, #000 92%, rgba(0,0,0,0) );
  }
  .ticker-track{
    display: inline-flex;
    gap: .85rem;
    align-items: stretch;
    will-change: transform;
    transform: translateX(0);
    animation: ticker var(--scroll-duration, 40s) linear infinite;
    visibility: hidden;
  }
  .ticker-track.is-ready{ visibility: visible; }
  .ticker-item{
    display: inline-flex;
    align-items: stretch;
    height: 44px;
    gap: .65rem;
    padding: 0 .75rem 0 0;
    border: 1px solid #232636;
    border-radius: 999px;
    background: rgba(255,255,255,.02);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
  }
  .ticker-item:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.04);
    border-color: #2d3144;
  }

  /* --- full-bleed logo filling the pill's left cap --- */
  .ti-logo{ display:flex; align-self:stretch; }
  .ti-logo .logo-box{
    display:block;
    width:64px;
    min-width:64px;
    height:100%;
    line-height:0;
  }
  /* img / picture / svg */
  .ti-logo img,
  .ti-logo picture > img,
  .ti-logo svg{
    width:100% !important;
    height:100% !important;
    max-height:none !important;
    object-fit:cover;
    object-position:center;
    display:block;
  }
  /* if helper returns bg-image logo spans */
  .ti-logo .logo,
  .ti-logo .bk-logo,
  .ti-logo [class*="logo"]{
    display:block;
    width:100%;
    height:100% !important;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    background-position:center !important;
  }

  .ti-meta{
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .45rem 0;
  }
  .ti-name{ font-weight: 600; }
  .ti-rating{ opacity: .9; display: inline-flex; align-items: center; }
  .ti-bonus{
    font-weight: 600;
    padding: .15rem .45rem;
    border-radius: 999px;
    background: rgba(72,187,120,.15);
    border: 1px solid rgba(72,187,120,.35);
    font-size: .82rem;
  }
  .ti-terms{ font-size: .78rem; opacity: .8; text-decoration: underline; }

  @keyframes ticker{
    to{ transform: translateX(calc(-1 * var(--scroll-distance, 100%))); }
  }

  .ticker-viewport:hover .ticker-track,
  .ticker-viewport:focus-within .ticker-track{
    animation-play-state: paused;
  }

  @media (prefers-reduced-motion: reduce){
    .ticker-track{ animation: none !important; }
  }

  @media (max-width: 640px){
    .bk-ticker-inner{ grid-template-columns: 1fr; gap: .5rem; }
    .bk-ticker-label{ display: none; }
    .ticker-item{ height:38px; padding: 0 .6rem 0 0; }
    .ti-logo .logo-box{ width:48px; min-width:48px; }
    .ti-meta{ padding: .4rem 0; }
  }