/* ═══════════════════════════════════════════════════════════════
   Cub hello strip (v2) — signed-in Cubs only, above the today strip.

   Same dark family and gold as the today strip beneath it, so the two
   read as one band: a gold kicker and the Cub's name in Playfair on
   the left, their picks, a "Pick now" nudge and their last winner as
   pills on the right. Every pill is one element, whether it is a link
   or not, so the nudge no longer draws a pill inside a pill.
═══════════════════════════════════════════════════════════════ */

.cub-hello {
  background: linear-gradient(180deg, #08101c 0%, #0a121e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(245, 242, 234, 0.86);
  font-size: 13px;
  line-height: 1.3;
}

.cub-hello__inner {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.cub-hello__greeting {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  margin: 0;
}
.cub-hello__kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--c-gold);
  white-space: nowrap;
}
.cub-hello__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cub-hello__tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.cub-hello__tile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.cub-hello__icon {
  flex-shrink: 0;
  color: rgba(245, 242, 234, 0.62);
}
.cub-hello__num {
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cub-hello__of {
  font-weight: 600;
  color: rgba(245, 242, 234, 0.55);
}
.cub-hello__label {
  font-size: 12px;
  color: rgba(245, 242, 234, 0.66);
}

.cub-hello__tile--winner {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.10);
}
.cub-hello__tile--winner .cub-hello__icon { color: var(--c-gold); }

.cub-hello__tile--nudge {
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.14);
  transition: background 0.14s, border-color 0.14s;
}
.cub-hello__tile--nudge .cub-hello__icon,
.cub-hello__tile--nudge .cub-hello__num,
.cub-hello__arrow { color: var(--c-gold); }
.cub-hello__tile--nudge:hover {
  border-color: var(--c-gold);
  background: rgba(212, 175, 55, 0.22);
}
.cub-hello__tile--nudge:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .cub-hello__inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
  }
  .cub-hello__tiles {
    flex-wrap: nowrap;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .cub-hello__tiles::-webkit-scrollbar { display: none; }
  .cub-hello__tiles > li { flex-shrink: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cub-hello__tile--nudge { transition: none; }
}
