.cw-marquee {
  background: var(--icrt-ink, #14161a);
  color: #fff;
  font-size: .8rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cw-marquee__viewport { overflow: hidden; }

.cw-marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: cw-marquee-scroll var(--cw-marquee-duration, 48s) linear infinite;
}

/* Two copies of the sequence sit side by side, so resetting at -50% lands the
   second copy exactly where the first began — no visible jump, no gap. */
@keyframes cw-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cw-marquee__copy { display: inline-flex; align-items: center; }

/* Let a reader stop the thing to actually read it. */
.cw-marquee:hover .cw-marquee__track,
.cw-marquee:focus-within .cw-marquee__track { animation-play-state: paused; }

/* Motion is decorative here; without it the headlines simply sit still. */
@media (prefers-reduced-motion: reduce) {
  .cw-marquee__track { animation: none; }
  .cw-marquee__viewport { overflow-x: auto; }
}

.cw-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 0;
  margin-right: 2.5rem;
  color: #fff;
  text-decoration: none;
}

.cw-marquee__item:hover .cw-marquee__text { text-decoration: underline; }

.cw-marquee__item + .cw-marquee__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--icrt-accent, #1160d4);
  margin-right: 2.5rem;
}

/* Whose headline it is, when it is a partner's: quiet, sentence case, no chip. */
/* Whose headline this is. The same shape as the editorial badge below so it
   reads as a label and not as the first words of the title, but neutral —
   a translucent chip on the ink, sentence case — so the two never compete. */
.cw-marquee__source {
  flex: 0 0 auto;
  padding: .12rem .45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.7;
}

/* The chip. Optional on purpose: a ticker where every item shouts says
   nothing. */
.cw-marquee__badge {
  flex: 0 0 auto;
  padding: .12rem .45rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--icrt-accent, #1160d4) 0%, #3f8ae8 100%);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.7;
}

.cw-poll {
  border: 1px solid var(--icrt-line, #e3e5ea);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  max-width: 34rem;
}
.cw-poll__title { margin: 0 0 .75rem; font-size: 1.05rem; }
.cw-poll__ballot { display: flex; flex-direction: column; gap: .4rem; }
.cw-poll__option {
  text-align: left;
  padding: .5rem .7rem;
  border: 1px solid var(--icrt-line, #e3e5ea);
  border-radius: 3px;
  background: var(--icrt-paper, #fff);
  color: var(--icrt-ink, #14161a);
  cursor: pointer;
}
.cw-poll__option.is-chosen {
  border-color: var(--icrt-accent, #1160d4);
  box-shadow: inset 0 0 0 1px var(--icrt-accent, #1160d4);
}
.cw-poll__submit {
  margin-top: .6rem;
  padding: .5rem 1rem;
  border: 0;
  border-radius: 3px;
  background: var(--icrt-accent, #1160d4);
  color: #fff;
  cursor: pointer;
}
.cw-poll__submit[disabled] { opacity: .5; cursor: default; }

.cw-poll__results { list-style: none; margin: 0; padding: 0; display: none; }
.cw-poll__result {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: .6rem;
  align-items: center;
  padding: .3rem 0;
  font-size: .85rem;
}
.cw-poll__bar { background: #f0f1f4; height: 8px; border-radius: 4px; overflow: hidden; }
.cw-poll__bar > span { display: block; height: 100%; background: var(--icrt-accent, #1160d4); }
.cw-poll__total { font-size: .75rem; color: var(--icrt-muted); margin: .5rem 0 0; display: none; }

.cw-poll[data-state="voted"] .cw-poll__ballot { display: none; }
.cw-poll[data-state="voted"] .cw-poll__results,
.cw-poll[data-state="voted"] .cw-poll__total { display: block; }
