/* NOWNA WatchTV — NOW SOURCE PERSONALIZATION (Author direction 2026-09-25, Phase 1).
 * The rectangular "Choose your news sources" panel inside NOW. It names no source: its chips are rendered from the
 * governed selectable-source set. Breakpoint: WatchTV's own max-width 576px.
 *   <= 576px  compact panel, one horizontally scrollable row of chips
 *   >  576px  wider panel, chips wrap                                                                               */
#now .now-pick {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #2d3342;
  border-radius: 10px;
  background: #13151c;
  max-width: 100%;
  box-sizing: border-box;
}
#now .now-pick-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 10px;
}
#now .now-pick-title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#now .now-pick-status { color: #9ea6b8; font-size: 12px; }
#now .now-pick-list { display: flex; flex-wrap: wrap; gap: 8px; }
#now .now-pick-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px 0 10px;
  border: 1px solid #2d3342;
  border-radius: 22px;
  background: transparent;
  color: #d8dbe2;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}
#now .now-pick-chip:hover { border-color: #98d8d0; }
#now .now-pick-chip.is-on { border-color: #00a693; background: rgba(0, 166, 147, 0.16); color: #fff; }
#now .now-pick-chip.is-locked { cursor: default; }
#now .now-pick-chip.is-unavailable { opacity: 0.6; }
#now .now-pick-chip:focus-visible { outline: 2px solid #98d8d0; outline-offset: 2px; }
#now .now-pick-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2d3342;
  color: #d8dbe2;
  font-size: 13px;
  font-weight: 700;
}
#now .now-pick-chip.is-on .now-pick-mark { background: #00a693; color: #fff; }
#now .now-pick-note { margin: 10px 0 0; color: #9ea6b8; font-size: 12px; line-height: 1.4; }

@media (max-width: 576px) {
  #now .now-pick { padding: 10px 12px; }
  #now .now-pick-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  #now .now-pick-list::-webkit-scrollbar { display: none; }
  #now .now-pick-chip { flex: 0 0 auto; scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  #now .now-pick-chip { transition: none; }
}
