/*
 * Continuation cards sit below the hero and use a denser five-column grid.
 * Give their venue links the same visual weight as the primary cards without
 * changing the hero or the window-page card treatment.
 */
.continuation-stream .card-top {
  grid-template-columns: minmax(0, 1fr) 37px;
  column-gap: 12px;
}

.continuation-stream .poly-btn {
  width: 37px;
  height: 37px;
  border-radius: 10px;
}

.continuation-stream .poly-btn img {
  width: 25px;
  height: 25px;
}

.continuation-stream .poly-btn.source-kalshi img {
  width: 29px;
  height: 29px;
}

@media (max-width: 760px) {
  .continuation-stream .card-top {
    grid-template-columns: minmax(0, 1fr) 35px;
    column-gap: 10px;
  }

  .continuation-stream .poly-btn {
    width: 35px;
    height: 35px;
  }

  .continuation-stream .poly-btn img {
    width: 24px;
    height: 24px;
  }

  .continuation-stream .poly-btn.source-kalshi img {
    width: 27px;
    height: 27px;
  }
}
