/* Smitvi Wire — live market brief desk (unique from Academy cards / Community forum) */

.news-page {
  --nw-muted: rgba(186, 204, 228, 0.78);
  --nw-ink: #eef4ff;
  --nw-accent: #00fca1;
  --nw-cyan: #7ad7ff;
  --nw-amber: #ffbf5e;
  --nw-break: #ff7a7a;
  --nw-line: rgba(122, 215, 255, 0.16);
  --nw-panel: rgba(8, 14, 28, 0.88);
  --nw-panel-2: rgba(12, 20, 38, 0.94);
  --nw-glow: rgba(0, 252, 161, 0.12);
  --nw-display: 'Space Grotesk', 'Hanken Grotesk', sans-serif;
  --nw-body: 'IBM Plex Sans', 'Hanken Grotesk', sans-serif;
  font-family: var(--nw-body);
}

.news-main {
  position: relative;
  z-index: 1;
  padding: 1.15rem 0 4rem;
}

.news-shell {
  max-width: 1120px;
}

.news-shell--article {
  max-width: 760px;
}

.news-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  color: var(--nw-muted);
}

.news-crumbs a {
  color: var(--nw-cyan);
  text-decoration: none;
}

/* —— Wire masthead —— */
.wire-mast {
  position: relative;
  overflow: hidden;
  margin: 0 0 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--nw-line);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(255, 191, 94, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 80% at 0% 100%, rgba(0, 252, 161, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(16, 28, 52, 0.98), rgba(6, 12, 24, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.wire-mast::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(122, 215, 255, 0.02) 3px,
      rgba(122, 215, 255, 0.02) 4px
    );
  pointer-events: none;
  opacity: 0.7;
}

.wire-mast__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 1rem 1.5rem;
  align-items: center;
}

.wire-mast__copy {
  min-width: 0;
}

.wire-mast__visual {
  display: flex;
  justify-content: flex-end;
}

.wire-mast__visual .hub-infographic {
  width: min(100%, 280px);
  height: auto;
}

@media (max-width: 760px) {
  .wire-mast__layout {
    grid-template-columns: 1fr;
  }

  .wire-mast__visual {
    justify-content: flex-start;
  }

  .wire-mast__visual .hub-infographic {
    width: min(100%, 240px);
  }
}

.wire-mast__top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.85rem;
}

.wire-mast__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wire-mast__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 252, 161, 0.35);
  background: rgba(0, 252, 161, 0.08);
  color: var(--nw-accent);
  font-family: var(--nw-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.wire-mast__brand strong {
  display: block;
  font-family: var(--nw-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nw-ink);
  line-height: 1.05;
}

.wire-mast__brand span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--nw-muted);
}

.wire-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 122, 0.35);
  background: rgba(255, 80, 80, 0.1);
  color: #ffc4c4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wire-live__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--nw-break);
  box-shadow: 0 0 0 0 rgba(255, 122, 122, 0.55);
  animation: wire-pulse 1.6s ease-out infinite;
}

@keyframes wire-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 122, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 122, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 122, 0); }
}

.wire-mast__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--nw-muted);
}

.wire-mast__meta a {
  color: var(--nw-accent);
  font-weight: 650;
  text-decoration: none;
}

.wire-mast__meta a:hover {
  text-decoration: underline;
}

.wire-mast__clock {
  font-variant-numeric: tabular-nums;
  color: var(--nw-cyan);
  font-weight: 600;
}

.wire-mast h1 {
  position: relative;
  margin: 0 0 0.55rem;
  max-width: 18ch;
  font-family: var(--nw-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--nw-ink);
}

.wire-mast__lead {
  position: relative;
  margin: 0;
  max-width: 38rem;
  color: var(--nw-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* —— Breaking ticker —— */
.wire-ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(255, 122, 122, 0.28);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(28, 12, 16, 0.85);
}

.wire-ticker__label {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 90, 90, 0.28), rgba(180, 40, 40, 0.2));
  color: #ffd0d0;
  font-family: var(--nw-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wire-ticker__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wire-ticker__move {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.55rem 1rem;
  animation: wire-scroll 32s linear infinite;
}

.wire-ticker:hover .wire-ticker__move {
  animation-play-state: paused;
}

@keyframes wire-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wire-ticker a {
  color: #f2e8e8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 550;
  white-space: nowrap;
}

.wire-ticker a:hover {
  color: var(--nw-amber);
}

.wire-ticker a::before {
  content: '◆';
  margin-right: 0.55rem;
  color: var(--nw-break);
  font-size: 0.55rem;
  vertical-align: middle;
}

/* —— Desk tabs / categories —— */
.wire-desks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.35rem;
}

.wire-desk-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.72rem 0.38rem 0.42rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--nw-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.wire-desk-tab .wire-thumb {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
}

.wire-desk-tab .wire-thumb__glyph {
  font-size: 0.68rem;
}

.wire-desk-tab:hover,
.wire-desk-tab.is-active {
  color: var(--nw-ink);
  border-color: var(--nw-line);
  background: rgba(122, 215, 255, 0.08);
}

/* —— Lead + stack —— */
.wire-front {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

@media (max-width: 820px) {
  .wire-front {
    grid-template-columns: 1fr;
  }
}

.wire-lead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
  min-height: 280px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 252, 161, 0.22);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background:
    linear-gradient(145deg, #152038, #0a1224);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wire-lead:hover {
  border-color: rgba(0, 252, 161, 0.5);
  transform: translateY(-2px);
}

.wire-lead__visual {
  display: block;
  min-height: 100%;
  position: relative;
}

.wire-lead__visual .wire-thumb {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 0;
}

.wire-lead__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem 1.35rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(4, 10, 22, 0.55) 35%, rgba(4, 10, 22, 0.92) 100%);
}

.wire-lead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--nw-muted);
}

.wire-lead__cat {
  color: var(--nw-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wire-lead__title {
  margin: 0 0 0.55rem;
  font-family: var(--nw-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--nw-ink);
}

.wire-lead__summary {
  margin: 0;
  max-width: 36rem;
  color: var(--nw-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .wire-lead {
    grid-template-columns: 1fr;
  }

  .wire-lead__visual .wire-thumb {
    min-height: 160px;
  }
}

.wire-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wire-stack-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  flex: 1;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--nw-line);
  background: var(--nw-panel);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.wire-stack-item:hover {
  border-color: rgba(0, 252, 161, 0.35);
  background: rgba(0, 252, 161, 0.05);
}

.wire-stack-item__text {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.wire-stack-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--nw-muted);
}

.wire-stack-item strong {
  font-family: var(--nw-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--nw-ink);
}

/* —— Category / cover thumbs —— */
.wire-thumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(145deg, #1c2a44, #0d1528);
  color: var(--nw-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wire-thumb__glyph {
  font-family: var(--nw-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.wire-thumb--xs {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 7px;
}

.wire-thumb--xs .wire-thumb__glyph {
  font-size: 0.78rem;
}

.wire-thumb--sm {
  width: 3.1rem;
  height: 3.1rem;
}

.wire-thumb--sm .wire-thumb__glyph {
  font-size: 1.15rem;
}

.wire-thumb--md {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 11px;
}

.wire-thumb--md .wire-thumb__glyph {
  font-size: 1.35rem;
}

.wire-thumb--lg {
  width: 100%;
  min-height: 280px;
  border-radius: 0;
}

.wire-thumb--lg .wire-thumb__glyph {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  opacity: 0.92;
}

.wire-thumb--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wire-thumb--photo .wire-thumb__glyph {
  position: absolute;
  right: 0.35rem;
  bottom: 0.3rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 6px;
  font-size: 0.7rem;
  background: rgba(4, 10, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.wire-thumb--lg.wire-thumb--photo .wire-thumb__glyph {
  right: 0.7rem;
  bottom: 0.7rem;
  min-width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

.wire-thumb--bitcoin {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 191, 94, 0.45), transparent 52%),
    linear-gradient(145deg, #3a2a12, #1a1208);
  color: #ffbf5e;
}

.wire-thumb--ethereum {
  background:
    radial-gradient(circle at 28% 22%, rgba(148, 163, 255, 0.4), transparent 52%),
    linear-gradient(145deg, #1e2448, #0c1024);
  color: #a8b4ff;
}

.wire-thumb--altcoins {
  background:
    radial-gradient(circle at 28% 22%, rgba(0, 252, 161, 0.35), transparent 52%),
    linear-gradient(145deg, #123028, #0a1814);
  color: #00fca1;
}

.wire-thumb--regulation {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 122, 122, 0.35), transparent 52%),
    linear-gradient(145deg, #3a1a22, #180c12);
  color: #ff9a9a;
}

.wire-thumb--ai-crypto {
  background:
    radial-gradient(circle at 28% 22%, rgba(122, 215, 255, 0.4), transparent 52%),
    linear-gradient(145deg, #123040, #0a1824);
  color: #7ad7ff;
}

.wire-thumb--blockchain {
  background:
    radial-gradient(circle at 28% 22%, rgba(186, 204, 228, 0.28), transparent 52%),
    linear-gradient(145deg, #1a2438, #0c121e);
  color: #c5d4ea;
}

.wire-thumb--nfts {
  background:
    radial-gradient(circle at 28% 22%, rgba(224, 140, 255, 0.38), transparent 52%),
    linear-gradient(145deg, #2a1840, #120a1e);
  color: #e08cff;
}

.wire-thumb--defi {
  background:
    radial-gradient(circle at 28% 22%, rgba(94, 255, 210, 0.35), transparent 52%),
    linear-gradient(145deg, #0f2e28, #081816);
  color: #5effd2;
}

.wire-thumb--stablecoins {
  background:
    radial-gradient(circle at 28% 22%, rgba(120, 220, 160, 0.35), transparent 52%),
    linear-gradient(145deg, #14301f, #0a1810);
  color: #8fecc0;
}

/* —— Wire rows (latest / desks) —— */
.wire-section {
  margin: 1.75rem 0;
}

.wire-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--nw-line);
}

.wire-section__head h2,
.wire-board h2,
.news-related h2,
.news-comments h2 {
  margin: 0;
  font-family: var(--nw-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nw-ink);
}

.wire-section__head a {
  color: var(--nw-cyan);
  font-size: 0.82rem;
  text-decoration: none;
}

.wire-feed {
  display: flex;
  flex-direction: column;
}

.wire-row {
  display: grid;
  grid-template-columns: auto 4.75rem minmax(0, 1fr) auto;
  gap: 0.75rem 0.95rem;
  align-items: center;
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid rgba(122, 215, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.wire-row:hover {
  background: linear-gradient(90deg, rgba(0, 252, 161, 0.05), transparent 70%);
}

.wire-row:hover .wire-row__title {
  color: var(--nw-accent);
}

.wire-row:hover .wire-thumb:not(.wire-thumb--photo) {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.wire-row .wire-thumb {
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.wire-row__time {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  color: var(--nw-cyan);
  font-weight: 600;
}

.wire-row__body {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.wire-row__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nw-amber);
}

.wire-row__title {
  font-family: var(--nw-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--nw-ink);
  transition: color 0.15s ease;
}

.wire-row__summary {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--nw-muted);
}

.wire-row__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .wire-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem 0.75rem;
  }

  .wire-row__time {
    grid-column: 2;
    padding: 0;
  }

  .wire-row__body {
    grid-column: 2;
  }

  .wire-row__flags {
    grid-column: 2;
    justify-content: flex-start;
  }
}

/* —— Badges —— */
.news-badge {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(122, 215, 255, 0.22);
  background: rgba(122, 215, 255, 0.08);
  color: var(--nw-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-badge--breaking {
  border-color: rgba(255, 122, 122, 0.45);
  background: rgba(255, 80, 80, 0.12);
  color: #ffb4b4;
}

.news-badge--pick {
  border-color: rgba(0, 252, 161, 0.35);
  background: rgba(0, 252, 161, 0.1);
  color: var(--nw-accent);
}

/* —— Boards (trending / most read / picks) —— */
.wire-boards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0;
}

@media (max-width: 860px) {
  .wire-boards {
    grid-template-columns: 1fr;
  }
}

.wire-board {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--nw-line);
  background:
    linear-gradient(180deg, rgba(20, 32, 56, 0.9), var(--nw-panel));
}

.wire-board h2 {
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(122, 215, 255, 0.16);
  font-size: 0.95rem;
}

.wire-rank {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wire-rank;
}

.wire-rank li {
  counter-increment: wire-rank;
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.55rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(122, 215, 255, 0.07);
  font-size: 0.88rem;
}

.wire-rank li:last-child {
  border-bottom: 0;
}

.wire-rank li::before {
  content: counter(wire-rank, decimal-leading-zero);
  font-family: var(--nw-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--nw-accent);
  letter-spacing: -0.02em;
}

.wire-rank a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  color: #e4eefc;
  text-decoration: none;
  line-height: 1.35;
}

.wire-rank a:hover {
  color: var(--nw-accent);
}

.wire-rank a span {
  min-width: 0;
}

/* —— Category desks —— */
.wire-desk {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(122, 215, 255, 0.1);
  background: rgba(8, 14, 26, 0.55);
}

.wire-desk__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.wire-desk__head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--nw-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nw-ink);
}

.wire-desk__icon {
  flex-shrink: 0;
}

.wire-desk__head > span {
  font-size: 0.75rem;
  color: var(--nw-muted);
}

.wire-desk .wire-row {
  padding-left: 0;
  padding-right: 0;
}

/* —— Article helpers —— */
.wire-article-visual {
  margin: 0 0 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--nw-line);
}

.wire-thumb--article {
  width: 100%;
  min-height: 180px;
  border-radius: 0;
  border: 0;
}

.wire-thumb--article .wire-thumb__glyph {
  font-size: clamp(3rem, 9vw, 4.5rem);
}

.wire-thumb--article.wire-thumb--photo .wire-thumb__glyph {
  right: 0.75rem;
  bottom: 0.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  font-size: 0.9rem;
}

.news-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.75rem;
  color: var(--nw-muted);
  font-size: 0.88rem;
}

.news-kicker a {
  color: var(--nw-cyan);
  text-decoration: none;
  font-weight: 650;
}

.news-article h1 {
  margin: 0 0 0.75rem;
  font-family: var(--nw-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--nw-ink);
}

.news-deck {
  margin: 0 0 1rem;
  max-width: 44rem;
  color: var(--nw-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.news-byline {
  margin: 0 0 1rem;
  color: var(--nw-muted);
  font-size: 0.9rem;
}

.news-byline span {
  color: var(--nw-ink);
  font-weight: 650;
}

.news-cover {
  position: relative;
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--nw-line);
}

.news-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 12, 24, 0.45));
  pointer-events: none;
}

.news-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1.25rem;
}

.news-share__label {
  font-size: 0.8rem;
  color: var(--nw-muted);
  margin-right: 0.25rem;
}

.news-share__btn {
  appearance: none;
  border: 1px solid var(--nw-line);
  background: var(--nw-panel);
  color: #dce8f8;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.news-share__btn:hover {
  border-color: rgba(0, 252, 161, 0.4);
  color: var(--nw-accent);
}

.news-body {
  margin: 1rem 0 2rem;
}

.news-body h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--nw-display);
  color: var(--nw-ink);
  letter-spacing: -0.02em;
}

.news-body p,
.news-body li {
  color: var(--nw-muted);
  line-height: 1.7;
}

.news-note {
  opacity: 0.9;
  font-size: 0.92rem;
}

.news-related {
  margin: 2.5rem 0 1.5rem;
}

.news-related .wire-feed {
  border-top: 1px solid var(--nw-line);
}

.news-comments {
  margin: 2rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 1px dashed rgba(122, 215, 255, 0.22);
  background: rgba(8, 14, 26, 0.55);
}

.news-comments__note {
  margin: 0.65rem 0 0;
  color: var(--nw-muted);
}

.news-comments__note a {
  color: var(--nw-accent);
}

/* Revenue / engagement blocks on wire articles */
.wire-monetize {
  margin: 2rem 0;
  padding: 1.2rem 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid var(--nw-line);
  background:
    radial-gradient(ellipse at top right, rgba(0, 252, 161, 0.08), transparent 55%),
    rgba(8, 14, 26, 0.75);
}

.wire-monetize h2 {
  margin: 0 0 0.4rem;
  font-family: var(--nw-display);
  font-size: 1.15rem;
  color: var(--nw-ink);
}

.wire-monetize__lead {
  margin: 0 0 1rem;
  color: var(--nw-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wire-monetize__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.wire-monetize__card {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--nw-line);
  background: rgba(12, 20, 38, 0.9);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

.wire-monetize__card:hover {
  border-color: rgba(0, 252, 161, 0.4);
}

.wire-monetize__card strong {
  font-size: 0.88rem;
  color: var(--nw-ink);
}

.wire-monetize__card span {
  font-size: 0.75rem;
  color: var(--nw-muted);
}

.wire-monetize__form {
  display: grid;
  gap: 0.45rem;
}

.wire-monetize__form input {
  max-width: 22rem;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wire-live__dot,
  .wire-ticker__move,
  .wire-lead,
  .wire-row {
    animation: none !important;
    transition: none !important;
  }

  .wire-ticker__move {
    transform: none;
    flex-wrap: wrap;
    width: auto;
    gap: 1rem;
  }

  .wire-ticker__track {
    mask-image: none;
    overflow: visible;
  }
}
