/* ── Prospect Ticker ─────────────────────────────────────────────────────── */
.hp-ticker-wrap {
  background: #1e3a5f;
  border-bottom: 2px solid #2d5282;
  overflow: hidden;
  padding: 6px 0;
  white-space: nowrap;
  width: 100%;
}

.hp-ticker-inner {
  display: inline-block;
  animation: hp-ticker-scroll 120s linear infinite;
}

.hp-ticker-wrap:hover .hp-ticker-inner {
  animation-play-state: paused;
}

@keyframes hp-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hp-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 40px;
  font-size: 12px;
  font-family: system-ui, -apple-system, sans-serif;
}

.hp-tick-name {
  color: #90cdf4;
  font-weight: 700;
  text-decoration: none;
}

.hp-tick-name:hover {
  color: #bee3f8;
  text-decoration: underline;
}

.hp-tick-price {
  color: #e2e8f0;
}

.hp-tick-up   { color: #68d391; }
.hp-tick-down { color: #fc8181; }
.hp-tick-flat { color: #a0aec0; }
