/* =============================================================================
   /news hub v2 (design_handoff_news_hub_v2). Blocks:
     .nhb-hero3 — two-col hero: .nhb-hc lead rotator | .nhb-trending rail
     .nhb-msband — More Top Stories band below the hero (rotating 4-up row)
     .nhb-fs — Featured Sources band (v3)
     .nhb-filter / .nhb-card — Today's Content filter sidebar + card grid
     .nhb-comm — the Community Desk band
   Same convention as the other si-themed sheets: dark base, light spec at the
   end. (Never write the comment-closer sequence inside these comments.)
   ============================================================================= */

/* Full-bleed like /explore and /stats: neutralize the Pico container cap so
   .si-page's own 40px gutters are the only horizontal margin. */
.page-news-hub main.container { max-width: 100%; width: 100%; padding-left: 0; padding-right: 0; }
.nhb { padding-top: 6px; padding-bottom: 64px; }

.nhb-subhead.si-shead { margin-bottom: 14px; }
.nhb-link { font-size: 12.5px; font-weight: 600; color: #fff; text-decoration: none; white-space: nowrap; }
.nhb-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.nhb-empty { padding: 28px 0; font-size: 13px; color: rgba(255, 255, 255, 0.55); }

/* ---- hero: two-column — lead story | Trending (wide rail) ---- */
.nhb-hero3 {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  column-gap: 32px; align-items: stretch; margin: 28px 0 20px;
}
.nhb-railcol { display: flex; flex-direction: column; min-width: 0; }
.nhb-centercol { display: flex; flex-direction: column; min-width: 0; }

/* lead story — full-image card, /explore LATEST's .xf-card grammar (photo
   fill + bottom scrim + overlaid kicker/title/byline). No shead above it —
   the card opens the column and rotates through the day's top stories
   (dots bottom-right). */
.nhb-hc {
  position: relative; display: block; flex: 1; min-height: 420px; margin: 0;
  border-radius: 12px; overflow: hidden; background: #1e2028;
  text-decoration: none; color: inherit;
}

/* lead rotator: soft crossfade between the pool stories */
.nhb-hc .nhb-hc-img, .nhb-hc .nhb-hc-body { transition: opacity 0.25s ease; }
.nhb-hc.is-swapping .nhb-hc-img, .nhb-hc.is-swapping .nhb-hc-body { opacity: 0; }
/* rotation dots (on-image, bottom-right — white in both themes). Clickable:
   each is a button padded out to a comfortable hit target; the 6px dot is a
   ::before so the padding never widens the pip. */
.nhb-hc-dots { position: absolute; right: 10px; bottom: 10px; z-index: 3; display: flex; gap: 0; }
.nhb-hc-dot {
  appearance: none; -webkit-appearance: none; border: none; margin: 0 !important;
  padding: 4px !important; width: auto !important; background: transparent !important;
  box-shadow: none !important; line-height: 0; cursor: pointer;
}
.nhb-hc-dot::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nhb-hc-dot:hover::before { background: rgba(255, 255, 255, 0.85); transform: scale(1.15); }
.nhb-hc-dot.is-on::before { background: #fff; }
.nhb-hc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.nhb-hc-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10, 12, 15, 0.92) 0%, rgba(10, 12, 15, 0.55) 30%, rgba(10, 12, 15, 0) 62%);
}
.nhb-hc-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 10px; padding: 22px;
}
.nhb-hc-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.nhb-hc-kicker img { width: 22px; height: 22px; object-fit: contain; flex: none; }
.nhb-hc-title {
  font-size: 24px; letter-spacing: -0.35px; line-height: 1.25; font-weight: 800; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nhb-hc-byline {
  display: flex; align-items: baseline; gap: 6px; min-width: 0;
  font-size: 13px; color: rgba(255, 255, 255, 0.55);
}
.nhb-hc-byline b {
  font-weight: 700; color: rgba(255, 255, 255, 0.8);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nhb-hc-byline > span:last-child { flex: none; }
/* trending-hover preview: the sources behind the entity's summary */
.nhb-hc-sources {
  display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.66);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---- More Top Stories band (below the hero; replaced the editions band
   2026-07-18): 4-up row of .nhb-more-row story tiles; news-hub.js pages
   through the rest of the day's with-art pool with a soft crossfade ---- */
.nhb-msband {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px; margin: 0 0 44px;
}
.nhb-msband .nhb-more-row::after { display: none; }
/* sized up vs the rail rows — this band is a primary surface */
.nhb-msband .nhb-more-thumb { width: 120px; }
.nhb-msband .nhb-more-title { font-size: 15.5px; -webkit-line-clamp: 3; }
.nhb-msband .nhb-more-src { font-size: 11.5px; margin-top: 4px; }
.nhb-msband .nhb-card-team { margin-bottom: 4px; }
.nhb-msband .nhb-more-body { display: flex; flex-direction: column; align-items: flex-start; }
/* conveyor tick: every card slides one slot left (the new one enters from
   the right edge); slight stagger reads as a ripple across the row */
@keyframes nhbMsShift { from { transform: translateX(calc(100% + 24px)); } to { transform: none; } }
.nhb-msband.is-shift .nhb-more-row { animation: nhbMsShift 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.nhb-msband.is-shift .nhb-more-row:nth-child(2) { animation-delay: 0.05s; }
.nhb-msband.is-shift .nhb-more-row:nth-child(3) { animation-delay: 0.1s; }
.nhb-msband.is-shift .nhb-more-row:nth-child(4) { animation-delay: 0.15s; }

/* masthead above the hero lead card (live dot + Top Stories + updated meta).
   min-height matches the Trending shead's Teams/Players toggle so the two
   centered labels sit on the same line across the hero columns. */
.nhb-mast.si-shead { min-height: 26px; }
.nhb-mast-meta {
  flex: none; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap; color: rgba(255, 255, 255, 0.8);
}


/* trending ledger (top of the rail, above the edition card) — flexes to the
   rail's remaining height so the rail bottoms out with the left column; the
   rows share the extra air evenly (13px padding is the floor). */
.nhb-trending { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.nhb-tr-toggle { display: inline-flex; align-items: center; padding: 2px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; }
.nhb-tr-toggle button {
  margin: 0 !important; padding: 3px 11px !important; width: auto !important;
  border: none !important; border-radius: 999px !important; background: transparent !important;
  color: rgba(255, 255, 255, 0.72) !important; font-size: 10.5px !important; font-weight: 700;
  font-family: inherit; line-height: 1.3 !important; cursor: pointer; box-shadow: none !important;
}
.nhb-tr-toggle button.is-on { background: #e9edf2 !important; color: #0b0d10 !important; }
.nhb-tr-list { flex: 1; display: flex; flex-direction: column; }
.nhb-tr-row {
  position: relative;
  flex: 1; display: grid; grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px; align-items: center;
  text-decoration: none; color: inherit;
  padding: 10px 8px; margin: 4px -8px; border-radius: 8px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07));
  background-repeat: no-repeat; background-size: 0% 100%;
  transition: background-size 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.nhb-tr-row:hover, .nhb-tr-row.is-spot { background-size: 100% 100%; }
.nhb-tr-row::after {
  content: ''; position: absolute; left: 8px; right: 8px; bottom: -4px; height: 1px;
  background: rgba(255, 255, 255, 0.14); pointer-events: none;
}
.nhb-tr-row:last-child::after { display: none; }
.nhb-tr-logo { width: 42px; height: 42px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.nhb-tr-logo.is-face { border-radius: 50%; background-size: cover; background-color: rgba(255, 255, 255, 0.06); }
.nhb-tr-body {
  min-width: 0; font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.72);
}
.nhb-tr-body b { font-size: 15px; font-weight: 800; color: #fff; }
/* players view: school eyebrow above the name (crest + tracked caps) */
.nhb-tr-eyebrow {
  display: flex; align-items: center; gap: 5px; margin-bottom: 1px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.9px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); white-space: nowrap;
}
.nhb-tr-eyebrow img { width: 14px; height: 14px; flex: none; object-fit: contain; }
.nhb-tr-row:hover .nhb-tr-body b { text-decoration: underline; text-underline-offset: 2px; }

/* more stories: 2x2 under the lead; the grid flexes so rows stretch and the
   section bottom-aligns with the Trending rail */
.nhb-more-head.si-shead { margin-bottom: 6px; }
.nhb-more-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 1fr); column-gap: 36px; flex: 1; }
.nhb-more-row {
  position: relative;
  display: flex; align-items: center; gap: 12px; min-width: 0;
  padding: 10px 8px; margin: 4px -8px; border-radius: 8px;
  text-decoration: none; color: inherit;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07));
  background-repeat: no-repeat; background-size: 0% 100%;
  transition: background-size 0.45s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.nhb-more-row:hover { background-size: 100% 100%; transform: translateX(4px); }
.nhb-more-row:active { transform: translateX(2px); }
.nhb-more-row::after {
  content: ''; position: absolute; left: 8px; right: 8px; bottom: -4px; height: 1px;
  background: rgba(255, 255, 255, 0.14); pointer-events: none;
}
.nhb-more-thumb {
  flex: none; width: 76px; aspect-ratio: 16 / 10; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06); background-size: cover; background-position: center;
}
.nhb-more-body { min-width: 0; }
.nhb-more-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 13.5px; font-weight: 800; letter-spacing: -0.2px; line-height: 1.3; color: #fff;
}
.nhb-more-grid .nhb-more-row:nth-last-child(-n+2)::after { display: none; }
.nhb-more-src { display: block; margin: 3px 0 0; font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.55); }

/* ---- Featured Sources band ---- */
.nhb-fs { margin: 0 0 40px; }
.nhb-fs-toggle {
  display: inline-flex; align-items: center; padding: 2px; margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px;
}
.nhb-fs-toggle button {
  margin: 0 !important; padding: 5px 15px !important; width: auto !important;
  border: none !important; border-radius: 999px !important; background: transparent !important;
  color: rgba(255, 255, 255, 0.72) !important; font-size: 12px !important; font-weight: 700;
  font-family: inherit; line-height: 1.3 !important; white-space: nowrap;
  cursor: pointer; box-shadow: none !important;
}
.nhb-fs-toggle button.is-on { background: #e9edf2 !important; color: #0b0d10 !important; }
.nhb-fs-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.nhb-fs-row[hidden] { display: none; }
.nhb-fs-card.is-hidden { display: none; }
.nhb-fs-card {
  display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 14px;
  text-decoration: none; color: inherit;
}
.nhb-fs-img {
  display: block; aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06); background-size: cover; background-position: center;
}
.nhb-fs-body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 13px 15px 15px; }
.nhb-fs-title {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14px; font-weight: 800; letter-spacing: -0.1px; line-height: 1.35; color: #fff;
}
.nhb-fs-foot { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 2px; min-width: 0; }
.nhb-fs-av {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); background-size: contain;
  background-repeat: no-repeat; background-position: center;
  font-size: 8px; font-weight: 800; color: rgba(255, 255, 255, 0.78);
}
.nhb-fs-src { min-width: 0; font-size: 11.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nhb-fs-time { flex: none; margin-left: auto; font-size: 10.5px; color: rgba(255, 255, 255, 0.55); white-space: nowrap; }

/* ---- Today's Content ---- */
.nhb-today { margin: 0 0 40px; }
.nhb-today-grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 32px; align-items: start; margin-top: 20px; }

.nhb-filter { min-width: 0; position: sticky; top: 24px; }
.nhb-filter-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 2px solid #e9edf2; padding: 0 0 7px;
}
.nhb-filter-head span { font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #fff; }
.nhb-filter-head button {
  margin: 0 !important; padding: 0 !important; width: auto !important; border: none !important;
  background: transparent !important; box-shadow: none !important; font-family: inherit;
  font-size: 11px !important; font-weight: 700; color: rgba(255, 255, 255, 0.55) !important; cursor: pointer;
}
.nhb-filter-head button:hover { color: #fff !important; text-decoration: underline; }
.nhb-fkicker { padding: 14px 0 4px; font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.nhb-frule { height: 1px; background: rgba(255, 255, 255, 0.16); margin: 14px 0 0; }
.nhb-frow {
  display: flex !important; align-items: center; gap: 8px; width: calc(100% + 16px) !important;
  padding: 7px 8px !important; margin: 0 -8px !important;
  border: none !important; border-radius: 8px !important; background: transparent !important;
  box-shadow: none !important; font-family: inherit; text-align: left; cursor: pointer;
}
.nhb-frow:hover { background: rgba(255, 255, 255, 0.05) !important; }
.nhb-frow.is-on { background: rgba(255, 255, 255, 0.08) !important; }
.nhb-flogo { width: 18px; height: 18px; flex: none; background-size: contain; background-repeat: no-repeat; background-position: center; }
.nhb-flabel { font-size: 12.5px !important; font-weight: 600; color: #fff !important; line-height: 1.3 !important; }
.nhb-frow.is-on .nhb-flabel { font-weight: 800; }
.nhb-fcount { margin-left: auto; font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.45); }
.nhb-frow.is-on .nhb-fcount { color: #fff; }

.nhb-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.nhb-card {
  display: flex; flex-direction: column; min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
}
.nhb-card-img {
  position: relative; display: flex; aspect-ratio: 16 / 9; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06); background-size: cover; background-position: center;
}
.nhb-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; background: rgba(16, 20, 24, 0.85);
}
.nhb-dur {
  position: absolute; right: 8px; bottom: 8px; padding: 2px 6px; border-radius: 5px;
  background: rgba(16, 20, 24, 0.85); color: #fff; font-size: 9.5px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nhb-card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 13px 15px 15px; }
.nhb-card-top { display: flex; align-items: center; gap: 8px; }
/* primary-team eyebrow (replaced the type pill; the type facet still filters) */
.nhb-card-team {
  display: inline-flex; align-items: center; gap: 6px; min-width: 0;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.9px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nhb-card-time { margin-left: auto; font-size: 10.5px; color: rgba(255, 255, 255, 0.55); white-space: nowrap; }
.nhb-card-title { font-size: 14px; font-weight: 800; letter-spacing: -0.1px; line-height: 1.35; color: #fff; }
.nhb-card-title.is-social { font-size: 15px; font-weight: 600; }
.nhb-card-src {
  display: flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 2px;
  font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nhb-card-crest { width: 14px; height: 14px; flex: none; background-size: contain; background-repeat: no-repeat; background-position: center; }

/* pseudo-X-embed cards (social items): the site's card outline with X-post
   anatomy inside — avatar · name · @handle · X glyph, post text, team+time
   footer. No fake engagement chrome; the whole card links to the post. */
.nhb-xcard .nhb-card-body { gap: 10px; }
.nhb-x-head { display: flex; align-items: center; gap: 9px; min-width: 0; }
.nhb-x-av {
  width: 34px; height: 34px; flex: none; border-radius: 50%; object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}
.nhb-x-av.is-mono {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: rgba(255, 255, 255, 0.75);
}
.nhb-x-id { display: flex; flex-direction: column; gap: 0; min-width: 0; flex: 1; }
.nhb-x-id b {
  font-size: 13.5px; font-weight: 800; color: #fff; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nhb-x-id span {
  font-size: 11.5px; font-weight: 600; color: rgba(255, 255, 255, 0.5); line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nhb-x-glyph { flex: none; color: rgba(255, 255, 255, 0.85); align-self: flex-start; margin-top: 2px; }
.nhb-x-text {
  font-size: 14px; font-weight: 500; line-height: 1.5; color: rgba(255, 255, 255, 0.92);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
  white-space: pre-line;
}
.nhb-x-text.is-media { color: rgba(255, 255, 255, 0.55); font-weight: 600; }
.nhb-x-foot { margin-top: auto; padding-top: 2px; }
html.si-light body.si-themed .nhb-x-av { background: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-x-av.is-mono { color: rgba(16, 20, 24, 0.6); }
html.si-light body.si-themed .nhb-x-id b { color: #101418; }
html.si-light body.si-themed .nhb-x-id span { color: rgba(16, 20, 24, 0.5); }
html.si-light body.si-themed .nhb-x-glyph { color: #101418; }
html.si-light body.si-themed .nhb-x-text { color: rgba(16, 20, 24, 0.88); }
html.si-light body.si-themed .nhb-x-text.is-media { color: rgba(16, 20, 24, 0.55); }

.nhb-loadmore { display: flex; justify-content: center; margin-top: 20px; }
.nhb-loadmore button {
  display: inline-flex; align-items: center; height: 36px; margin: 0 !important;
  padding: 0 20px !important; width: auto !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important; border-radius: 999px !important;
  background: transparent !important; color: #fff !important;
  font-size: 12.5px !important; font-weight: 700; font-family: inherit; cursor: pointer; box-shadow: none !important;
}
.nhb-loadmore button:hover { border-color: rgba(255, 255, 255, 0.6) !important; }

/* ---- Community Desk ---- */
.nhb-comm-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.nhb-comm-card {
  display: flex; flex-direction: column; min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
}
.nhb-comm-card.is-hidden { display: none; }
.nhb-comm-img { display: block; aspect-ratio: 16 / 8; background: rgba(255, 255, 255, 0.06); background-size: cover; background-position: center; }
.nhb-comm-body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 14px 16px 16px; }
.nhb-comm-top { display: flex; align-items: center; gap: 7px; }
.nhb-orig {
  display: inline-block; padding: 2px 7px; border-radius: 999px; background: #e9edf2;
  color: #0b0d10; font-size: 8px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
}
.nhb-comm-date { font-size: 10.5px; color: rgba(255, 255, 255, 0.6); }
.nhb-comm-title { font-size: 15px; font-weight: 800; line-height: 1.3; color: #fff; }
.nhb-comm-foot { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 4px; }
.nhb-comm-av {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); font-size: 9px; font-weight: 800; color: rgba(255, 255, 255, 0.78);
}
.nhb-comm-foot b { font-size: 12.5px; font-weight: 700; color: #fff; }
/* take cards: text-led (no cover), quote clamped, score beside the byline */
.nhb-comm-card.is-take .nhb-comm-title {
  font-weight: 600; font-size: 14px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.nhb-comm-room {
  font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nhb-comm-score {
  margin-left: auto; font-size: 11px; font-weight: 700;
  font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.55);
}
.nhb-comm-empty {
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); padding: 40px; text-align: center;
}
.nhb-comm-empty p { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }
.nhb-cta {
  display: inline-flex; align-items: center; height: 34px; padding: 0 18px;
  border-radius: 999px; background: #e9edf2; color: #0b0d10;
  font-size: 12.5px; font-weight: 700; text-decoration: none;
}
.nhb-cta:hover { background: #fff; }

@media (max-width: 1180px) {
  .nhb-hero3 { grid-template-columns: 1fr; row-gap: 28px; }
  .nhb-today-grid { grid-template-columns: 1fr; }
  .nhb-filter { position: static; }
  .nhb-cards, .nhb-comm-grid, .nhb-fs-row { grid-template-columns: 1fr 1fr; }
  .nhb-msband { grid-template-columns: 1fr 1fr; row-gap: 4px; }
}
@media (max-width: 720px) {
  .nhb-cards, .nhb-comm-grid, .nhb-more-grid, .nhb-fs-row { grid-template-columns: 1fr; }
  .nhb-fs-toggle { flex-wrap: wrap; border-radius: 16px; }
  .nhb-msband { grid-template-columns: 1fr; }
}

/* =============================================================================
   LIGHT MODE — the spec values (mock ink #101418 alphas).
   ============================================================================= */
html.si-light body.si-themed .nhb-link { color: #101418; }
html.si-light body.si-themed .nhb-empty { color: rgba(16, 20, 24, 0.55); }
/* .nhb-hc lead card is photo-anchored — no light overrides needed */
html.si-light body.si-themed .nhb-fs-toggle { border-color: rgba(16, 20, 24, 0.3); }
html.si-light body.si-themed .nhb-fs-toggle button { color: rgba(16, 20, 24, 0.72) !important; }
html.si-light body.si-themed .nhb-fs-toggle button.is-on { background: #101418 !important; color: #fff !important; }
html.si-light body.si-themed .nhb-fs-card { border-color: rgba(16, 20, 24, 0.38); }
html.si-light body.si-themed .nhb-fs-img { background-color: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-fs-title { color: #101418; }
html.si-light body.si-themed .nhb-fs-av { background-color: rgba(16, 20, 24, 0.08); color: rgba(16, 20, 24, 0.78); }
html.si-light body.si-themed .nhb-fs-src { color: #101418; }
html.si-light body.si-themed .nhb-fs-time { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-tr-toggle { border-color: rgba(16, 20, 24, 0.3); }
html.si-light body.si-themed .nhb-tr-toggle button { color: rgba(16, 20, 24, 0.72) !important; }
html.si-light body.si-themed .nhb-tr-toggle button.is-on { background: #101418 !important; color: #fff !important; }
html.si-light body.si-themed .nhb-tr-row::after { background: rgba(16, 20, 24, 0.14); }
html.si-light body.si-themed .nhb-tr-row { background-image: linear-gradient(rgba(16, 20, 24, 0.05), rgba(16, 20, 24, 0.05)); }
html.si-light body.si-themed .nhb-tr-logo.is-face { background-color: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-tr-body { color: rgba(16, 20, 24, 0.72); }
html.si-light body.si-themed .nhb-tr-body b { color: #101418; }
html.si-light body.si-themed .nhb-tr-eyebrow { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-mast-meta { color: rgba(16, 20, 24, 0.8); }
html.si-light body.si-themed .nhb-more-row::after { background: rgba(16, 20, 24, 0.14); }
html.si-light body.si-themed .nhb-more-row { background-image: linear-gradient(rgba(16, 20, 24, 0.05), rgba(16, 20, 24, 0.05)); }
html.si-light body.si-themed .nhb-more-thumb { background-color: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-more-title { color: #101418; }
html.si-light body.si-themed .nhb-more-src { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-filter-head { border-bottom-color: #101418; }
html.si-light body.si-themed .nhb-filter-head span { color: #101418; }
html.si-light body.si-themed .nhb-filter-head button { color: rgba(16, 20, 24, 0.55) !important; }
html.si-light body.si-themed .nhb-filter-head button:hover { color: #101418 !important; }
html.si-light body.si-themed .nhb-fkicker { color: rgba(16, 20, 24, 0.5); }
html.si-light body.si-themed .nhb-frule { background: rgba(16, 20, 24, 0.2); }
html.si-light body.si-themed .nhb-frow:hover { background: rgba(16, 20, 24, 0.05) !important; }
html.si-light body.si-themed .nhb-frow.is-on { background: rgba(16, 20, 24, 0.07) !important; }
html.si-light body.si-themed .nhb-flabel { color: #101418 !important; }
html.si-light body.si-themed .nhb-fcount { color: rgba(16, 20, 24, 0.45); }
html.si-light body.si-themed .nhb-frow.is-on .nhb-fcount { color: #101418; }
html.si-light body.si-themed .nhb-card { border-color: rgba(16, 20, 24, 0.38); }
html.si-light body.si-themed .nhb-card-img { background-color: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-card-team { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-card-time { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-card-title { color: #101418; }
html.si-light body.si-themed .nhb-card-src { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-loadmore button { border-color: rgba(16, 20, 24, 0.3) !important; color: #101418 !important; }
html.si-light body.si-themed .nhb-loadmore button:hover { border-color: rgba(16, 20, 24, 0.6) !important; }
html.si-light body.si-themed .nhb-comm-card { border-color: rgba(16, 20, 24, 0.38); }
html.si-light body.si-themed .nhb-comm-img { background-color: rgba(16, 20, 24, 0.06); }
html.si-light body.si-themed .nhb-orig { background: #101418; color: #fff; }
html.si-light body.si-themed .nhb-comm-date { color: rgba(16, 20, 24, 0.6); }
html.si-light body.si-themed .nhb-comm-title { color: #101418; }
html.si-light body.si-themed .nhb-comm-av { background: rgba(16, 20, 24, 0.08); color: rgba(16, 20, 24, 0.78); }
html.si-light body.si-themed .nhb-comm-foot b { color: #101418; }
html.si-light body.si-themed .nhb-comm-room { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-comm-score { color: rgba(16, 20, 24, 0.55); }
html.si-light body.si-themed .nhb-comm-empty { border-color: rgba(16, 20, 24, 0.25); background: rgba(16, 20, 24, 0.025); }
html.si-light body.si-themed .nhb-comm-empty p { color: rgba(16, 20, 24, 0.72); }
html.si-light body.si-themed .nhb-cta { background: #101418; color: #fff; }
html.si-light body.si-themed .nhb-cta:hover { background: #000; }

/* Tactile story-card treatment (matches /explore's LATEST grid). */
.nhb-card { transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.25s cubic-bezier(0.2, 0.7, 0.3, 1); }
.nhb-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(16, 20, 24, 0.14); border-color: rgba(16, 20, 24, 0.6); }
.nhb-card:active { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(16, 20, 24, 0.1); }
@media (prefers-reduced-motion: reduce) {
  .nhb-card { transition: none; }
  .nhb-card:hover { transform: none; }
}

/* =============================================================================
   AMBIENT MOTION LAYER (design_handoff_news_ambient) — live shead dot,
   arrivals, tactile hover kit, entrances. All animation reduced-motion safe.
   ============================================================================= */

/* live pulse dot in the page shead (The Wire's grammar) */
.nhb-live-dot { position: relative; width: 6px; height: 6px; flex: none; }
.nhb-live-dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #fff; }
.nhb-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid #fff; animation: nhbRing 2.4s ease-out infinite;
}
@keyframes nhbRing { 0% { transform: scale(0.6); opacity: 0.8; } 70%, 100% { transform: scale(2); opacity: 0; } }
html.si-light body.si-themed .nhb-live-dot::before { background: #101418; }
html.si-light body.si-themed .nhb-live-dot::after { border-color: #101418; }

/* the week counter ticks green when new items land */
.nhb-weekcount span { transition: color 0.5s; font-variant-numeric: tabular-nums; }
.nhb-weekcount span.is-tick { color: #16a34a; }

/* JUST IN arrivals: card fades up in; tag rides the image */
@keyframes nhbCardIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.nhb-card.is-arrived { animation: nhbCardIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.nhb-justin {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px;
  border-radius: 5px; background: #101418; color: #fff;
  font-size: 8.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.nhb-justin::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #16a34a; }
.nhb-card-time.is-now { color: #16a34a; }
.nhb-card-img { position: relative; }

/* tactile hover kit (site standard): lifts + presses.
   fill-mode BACKWARDS on entrances so retained keyframes never kill lifts. */
.nhb-hc { transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.25s cubic-bezier(0.2, 0.7, 0.3, 1); }
.nhb-hc:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 20, 24, 0.16); }
.nhb-hc:active { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16, 20, 24, 0.12); }
.nhb-card, .nhb-fs-card, .nhb-comm-card {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
              border-color 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.nhb-card:hover, .nhb-fs-card:hover, .nhb-comm-card:hover {
  transform: translateY(-3px); box-shadow: 0 12px 26px rgba(16, 20, 24, 0.14);
}
.nhb-card:active, .nhb-fs-card:active, .nhb-comm-card:active {
  transform: translateY(-1px); box-shadow: 0 5px 14px rgba(16, 20, 24, 0.1);
}
html.si-light body.si-themed .nhb-card:hover,
html.si-light body.si-themed .nhb-fs-card:hover,
html.si-light body.si-themed .nhb-comm-card:hover { border-color: rgba(16, 20, 24, 0.6); }

/* entrances: hero columns once per load; FS cards restagger per group switch */
@keyframes nhbFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.nhb-in { animation: nhbFadeUp 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.nhb-fs-card.is-in { animation: nhbFadeUp 0.4s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }

@media (prefers-reduced-motion: reduce) {
  .nhb-live-dot::after { animation: none; }
  .nhb-card.is-arrived, .nhb-in, .nhb-fs-card.is-in { animation: none; }
  .nhb-msband.is-shift .nhb-more-row { animation: none; }
  .nhb-hc, .nhb-card, .nhb-fs-card, .nhb-comm-card,
  .nhb-more-row, .nhb-tr-row { transition: none; }
  .nhb-hc:hover, .nhb-card:hover, .nhb-fs-card:hover,
  .nhb-comm-card:hover { transform: none; }
  .nhb-more-row:hover { transform: none; background-size: 100% 100%; }
  .nhb-tr-row:hover, .nhb-tr-row.is-spot { background-size: 100% 100%; }
}

/* ===== Conference daily brief teaser (conf-scoped hub flagship) ===== */
.nhb-confbrief { display: block; text-decoration: none; color: inherit;
  margin: 0 0 22px; }
.nhb-confbrief-body { border: 1px solid var(--si-hairline, #e5e2da);
  border-left: 3px solid var(--si-ink, #1a1a1a); padding: 14px 18px;
  background: var(--si-paper-2, #faf9f6); }
.nhb-confbrief-title { font-size: 20px; line-height: 1.25; margin: 0 0 6px; }
.nhb-confbrief-dek { font-size: 14.5px; line-height: 1.45; margin: 0 0 8px;
  color: var(--si-muted, #555); }
.nhb-confbrief-cta { font-size: 13px; font-weight: 600; }
.nhb-confbrief:hover .nhb-confbrief-title { text-decoration: underline; }
