/* ═══════════════════════════════════════════════════════════════
   NavXD V4 — Entity Page Polish CSS
   Aesthetic: Intelligence Terminal × Editorial Magazine
   ═══════════════════════════════════════════════════════════════ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

.nxe {
  /* Palette — anchored on existing NavXD radar colors */
  --nxe-bg:        #0a0b15;
  --nxe-surface:   #11131e;
  --nxe-surface-2: #181a26;
  --nxe-border:    rgba(255, 255, 255, 0.08);
  --nxe-border-2:  rgba(255, 255, 255, 0.14);
  --nxe-text:      #ebe9e0;
  --nxe-text-2:    #a8aabb;
  --nxe-text-3:    #5a5d6e;
  --nxe-indigo:    #5b6cff;
  --nxe-signal:    #00e5b0;
  --nxe-amber:     #ffb547;
  --nxe-rose:      #ff6f8a;
  --nxe-grid:      rgba(91, 108, 255, 0.06);

  --nxe-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
  --nxe-sans:  "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --nxe-w:     1240px;
  --nxe-gap:   28px;

  font-family: var(--nxe-sans);
  color: var(--nxe-text);
  background: var(--nxe-bg);
  line-height: 1.65;
  font-size: 15px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Light-theme rider (when OneNav is in light mode) */
html:not(.io-black-mode) .nxe[data-entity-type] {
  --nxe-bg:        #f5f5f0;
  --nxe-surface:   #ffffff;
  --nxe-surface-2: #fafaf6;
  --nxe-border:    rgba(15, 16, 25, 0.10);
  --nxe-border-2:  rgba(15, 16, 25, 0.18);
  --nxe-text:      #14151b;
  --nxe-text-2:    #3e3f49;
  --nxe-text-3:    #8a8d9e;
  --nxe-grid:      rgba(91, 108, 255, 0.05);
}

.nxe a { color: inherit; text-decoration: none; }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.nxe__hero {
  position: relative;
  padding: 88px 24px 56px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% -50%, rgba(91,108,255,0.18), transparent 60%),
    radial-gradient(800px 400px at 90% 110%, rgba(0,229,176,0.10), transparent 60%),
    var(--nxe-bg);
  border-bottom: 1px solid var(--nxe-border);
}
.nxe__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--nxe-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--nxe-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
}
.nxe__hero-inner {
  position: relative;
  max-width: var(--nxe-w);
  margin: 0 auto;
  padding: 32px 28px 36px;
  border: 1px solid var(--nxe-border-2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%),
    var(--nxe-surface);
  border-radius: 2px;
}
html:not(.io-black-mode) .nxe__hero-inner {
  background:
    linear-gradient(180deg, rgba(15,16,25,0.02), transparent 30%),
    var(--nxe-surface);
}

/* Corner brackets */
.nxe__corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--nxe-signal);
}
.nxe__corner--tl { top: -1px; left: -1px;   border-right: 0; border-bottom: 0; }
.nxe__corner--tr { top: -1px; right: -1px;  border-left: 0;  border-bottom: 0; }
.nxe__corner--bl { bottom: -1px; left: -1px;  border-right: 0; border-top: 0; }
.nxe__corner--br { bottom: -1px; right: -1px; border-left: 0;  border-top: 0; }

/* Breadcrumb — terminal style */
.nxe__crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--nxe-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nxe-text-3);
  margin-bottom: 32px;
}
.nxe__crumb-dot {
  width: 6px; height: 6px;
  background: var(--nxe-signal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--nxe-signal);
  animation: nxe-pulse 2.2s ease-in-out infinite;
}
@keyframes nxe-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.3); }
}
.nxe__crumb a { color: var(--nxe-text-2); transition: color .15s; }
.nxe__crumb a:hover { color: var(--nxe-signal); }
.nxe__crumb-sep { color: var(--nxe-text-3); }
.nxe__crumb-current {
  color: var(--nxe-text);
  background: linear-gradient(90deg, transparent, var(--nxe-indigo) 50%, transparent);
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
}

.nxe__hero-row {
  display: flex; align-items: flex-start; gap: 28px;
}
.nxe__icon {
  flex: 0 0 84px;
  width: 84px; height: 84px;
  border-radius: 18px;
  background: var(--nxe-surface-2);
  border: 1px solid var(--nxe-border-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.nxe__icon::before {
  content: '';
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent 70%, rgba(91,108,255,0.35), transparent);
  animation: nxe-spin 8s linear infinite;
  opacity: 0.5;
}
.nxe__icon img {
  position: relative;
  width: 76%; height: 76%; object-fit: contain;
  border-radius: 12px;
  background: var(--nxe-bg);
}
@keyframes nxe-spin { to { transform: rotate(360deg); } }

.nxe__hero-text { flex: 1; min-width: 0; }

.nxe__meta-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.nxe__chip {
  font-family: var(--nxe-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--nxe-border);
  color: var(--nxe-text-2);
  border-radius: 2px;
}
html:not(.io-black-mode) .nxe__chip { background: rgba(15,16,25,0.04); }
.nxe__chip--code   { color: var(--nxe-signal); border-color: rgba(0,229,176,0.35); }
.nxe__chip--type   { background: rgba(91,108,255,0.12); color: #c5cbff; border-color: rgba(91,108,255,0.35); }
.nxe__chip--tier-1 { background: rgba(255,181,71,0.10); color: var(--nxe-amber); border-color: rgba(255,181,71,0.30); }
.nxe__chip--tier-2 { background: rgba(0,229,176,0.08);  color: var(--nxe-signal); border-color: rgba(0,229,176,0.25); }
.nxe__chip--tier-3 { color: var(--nxe-text-2); }
.nxe__chip--ok     { color: var(--nxe-signal); border-color: rgba(0,229,176,0.40); }
.nxe__chip--accent { color: #c5cbff; border-color: rgba(91,108,255,0.40); }

.nxe__title {
  font-family: var(--nxe-sans);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--nxe-text);
  background: linear-gradient(180deg, var(--nxe-text), color-mix(in srgb, var(--nxe-text) 70%, var(--nxe-indigo)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nxe__tagline {
  font-size: 17px;
  line-height: 1.55;
  color: var(--nxe-text-2);
  margin: 0 0 24px;
  max-width: 720px;
}

.nxe__cta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 8px;
}
.nxe__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-family: var(--nxe-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid var(--nxe-border-2);
  background: var(--nxe-surface-2);
  color: var(--nxe-text);
  border-radius: 2px;
  transition: all .18s;
  position: relative;
  overflow: hidden;
}
.nxe__btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform .55s;
}
.nxe__btn:hover::before { transform: translateX(100%); }
.nxe__btn--primary {
  background: linear-gradient(180deg, var(--nxe-indigo), color-mix(in srgb, var(--nxe-indigo) 70%, #000));
  color: #fff;
  border-color: var(--nxe-indigo);
  box-shadow: 0 0 0 1px rgba(91,108,255,0.4), 0 8px 28px -8px rgba(91,108,255,0.6);
}
.nxe__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(91,108,255,0.6), 0 14px 36px -10px rgba(91,108,255,0.8);
}
.nxe__btn--ghost:hover {
  border-color: var(--nxe-signal);
  color: var(--nxe-signal);
}
.nxe__btn-arrow { font-family: var(--nxe-mono); font-size: 14px; }
.nxe__btn-icon  { font-size: 13px; color: var(--nxe-signal); }
.nxe__btn-meta {
  font-size: 11px;
  color: var(--nxe-text-3);
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--nxe-border);
}

/* ═══════════════════════════ STATS STRIP ═══════════════════════════ */
.nxe__strip {
  border-bottom: 1px solid var(--nxe-border);
  background: var(--nxe-surface);
}
.nxe__strip-list {
  max-width: var(--nxe-w);
  margin: 0 auto;
  padding: 0 28px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.nxe__strip-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 24px;
  flex: 1 1 auto;
  border-left: 1px solid var(--nxe-border);
  min-width: 140px;
  position: relative;
  opacity: 0;
  animation: nxe-fade-up .5s ease forwards;
  animation-delay: calc(var(--i, 0) * 60ms + 200ms);
}
.nxe__strip-item:first-child { border-left: 0; }
@keyframes nxe-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nxe__strip-k {
  font-family: var(--nxe-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--nxe-text-3);
}
.nxe__strip-v {
  font-family: var(--nxe-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--nxe-text);
  letter-spacing: -0.01em;
}

/* ═══════════════════════════ MAIN GRID ═══════════════════════════ */
.nxe__main {
  max-width: var(--nxe-w);
  margin: 0 auto;
  padding: 56px 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
}
@media (max-width: 920px) {
  .nxe__main { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px 0; }
}

/* ───── Section heading ───── */
.nxe__h {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--nxe-border);
}
.nxe__h-num {
  font-family: var(--nxe-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--nxe-signal);
  letter-spacing: 0.12em;
}
.nxe__h-text {
  font-family: var(--nxe-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--nxe-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.nxe__block { margin-bottom: 48px; }

/* ───── Prose ───── */
.nxe__prose {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--nxe-text-2);
  max-width: 70ch;
}
.nxe__prose p { margin: 0 0 1.1em; }
.nxe__prose strong { color: var(--nxe-text); font-weight: 600; }
.nxe__prose h2, .nxe__prose h3 {
  color: var(--nxe-text);
  font-weight: 700;
  margin: 1.8em 0 0.7em;
}
.nxe__prose h2 { font-size: 20px; }
.nxe__prose h3 { font-size: 17px; }
.nxe__prose a {
  color: var(--nxe-signal);
  border-bottom: 1px solid rgba(0,229,176,0.3);
}
.nxe__prose a:hover { border-bottom-color: var(--nxe-signal); }
.nxe__prose ul, .nxe__prose ol { padding-left: 1.5em; margin: 0 0 1.1em; }
.nxe__prose li { margin-bottom: 0.4em; }
.nxe__prose code {
  font-family: var(--nxe-mono);
  font-size: 0.88em;
  padding: 2px 6px;
  background: var(--nxe-surface-2);
  border: 1px solid var(--nxe-border);
  border-radius: 2px;
}

/* ───── Features / HowTo numbered lists ───── */
.nxe__feat-list, .nxe__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 1px;
  background: var(--nxe-border);
  border: 1px solid var(--nxe-border);
}
.nxe__feat, .nxe__step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--nxe-surface);
  transition: background .15s;
}
.nxe__feat:hover, .nxe__step:hover {
  background: var(--nxe-surface-2);
}
.nxe__feat-num, .nxe__step-num {
  flex: 0 0 auto;
  font-family: var(--nxe-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--nxe-signal);
  line-height: 1;
  width: 40px;
}
.nxe__feat-body h3, .nxe__step-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--nxe-text);
}
.nxe__feat-body p, .nxe__step-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--nxe-text-2);
  line-height: 1.65;
}

/* ───── Pros & Cons ───── */
.nxe__pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) { .nxe__pc { grid-template-columns: 1fr; } }
.nxe__pc-col {
  padding: 22px 24px;
  border: 1px solid var(--nxe-border);
  background: var(--nxe-surface);
}
.nxe__pc-col--pros { border-left: 3px solid var(--nxe-signal); }
.nxe__pc-col--cons { border-left: 3px solid var(--nxe-rose); }
.nxe__pc-title {
  font-family: var(--nxe-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 14px;
}
.nxe__pc-col--pros .nxe__pc-title { color: var(--nxe-signal); }
.nxe__pc-col--cons .nxe__pc-title { color: var(--nxe-rose); }
.nxe__pc-col ul { list-style: none; padding: 0; margin: 0; }
.nxe__pc-col li {
  padding: 8px 0 8px 18px;
  position: relative;
  font-size: 14.5px;
  color: var(--nxe-text-2);
  border-bottom: 1px dashed var(--nxe-border);
}
.nxe__pc-col li:last-child { border-bottom: 0; }
.nxe__pc-col li::before {
  content: '›';
  position: absolute; left: 0;
  font-family: var(--nxe-mono);
  color: var(--nxe-text-3);
}

/* ───── FAQ ───── */
.nxe__faq-item {
  border: 1px solid var(--nxe-border);
  background: var(--nxe-surface);
  margin-bottom: 8px;
  transition: border-color .15s;
}
.nxe__faq-item[open] { border-color: var(--nxe-border-2); }
.nxe__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--nxe-text);
}
.nxe__faq-item summary::-webkit-details-marker { display: none; }
.nxe__faq-q {
  font-family: var(--nxe-mono);
  color: var(--nxe-signal);
  font-size: 13px;
}
.nxe__faq-a {
  padding: 0 22px 18px 50px;
  font-size: 14.5px;
  color: var(--nxe-text-2);
  line-height: 1.7;
}

/* ═══════════════════════════ SIDEBAR ═══════════════════════════ */
.nxe__side {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky;
  top: 90px;
  align-self: start;
}
@media (max-width: 920px) {
  .nxe__side { position: static; }
}
.nxe__panel {
  border: 1px solid var(--nxe-border-2);
  background: var(--nxe-surface);
  position: relative;
}
.nxe__panel-h {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  font-family: var(--nxe-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--nxe-surface-2);
  border-bottom: 1px solid var(--nxe-border);
}
.nxe__panel-tag { color: var(--nxe-signal); }
.nxe__panel-id  { color: var(--nxe-text-3); font-weight: 500; }

/* Key Facts panel */
.nxe__facts { margin: 0; padding: 6px 0; }
.nxe__fact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px dashed var(--nxe-border);
}
.nxe__fact:last-child { border-bottom: 0; }
.nxe__fact dt {
  font-family: var(--nxe-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nxe-text-3);
}
.nxe__fact dd {
  margin: 0;
  font-family: var(--nxe-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--nxe-text);
  text-align: right;
  word-break: break-all;
}
.nxe__fact dd a { color: var(--nxe-signal); }
.nxe__fact dd a:hover { text-decoration: underline; }

/* Sources panel */
.nxe__src-list { list-style: none; padding: 0; margin: 0; }
.nxe__src-list li { border-bottom: 1px dashed var(--nxe-border); }
.nxe__src-list li:last-child { border-bottom: 0; }
.nxe__src-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-size: 13px;
  transition: background .15s;
}
.nxe__src-list a:hover {
  background: var(--nxe-surface-2);
  color: var(--nxe-signal);
}
.nxe__src-k {
  font-family: var(--nxe-mono);
  font-size: 10px;
  color: var(--nxe-signal);
  font-weight: 700;
}
.nxe__src-label { flex: 1; color: var(--nxe-text); }
.nxe__src-arrow { color: var(--nxe-text-3); font-size: 13px; }

/* Hub panel */
.nxe__hub-link {
  display: block; padding: 16px 18px;
  transition: background .15s;
}
.nxe__hub-link:hover { background: var(--nxe-surface-2); }
.nxe__hub-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--nxe-text);
  margin-bottom: 4px;
}
.nxe__hub-arrow {
  font-family: var(--nxe-mono);
  font-size: 11px;
  color: var(--nxe-signal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════ RELATED ENTITIES ═══════════════════════════ */
.nxe__related {
  max-width: var(--nxe-w);
  margin: 0 auto;
  padding: 24px 28px 56px;
}
.nxe__rel-h {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--nxe-border);
  flex-wrap: wrap;
}
.nxe__rel-num {
  font-family: var(--nxe-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--nxe-signal);
  letter-spacing: 0.12em;
}
.nxe__rel-text {
  font-family: var(--nxe-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--nxe-text);
  margin: 0;
  letter-spacing: -0.01em;
}
.nxe__rel-sub {
  font-family: var(--nxe-mono);
  font-size: 11px;
  color: var(--nxe-text-3);
  letter-spacing: 0.08em;
  margin-left: auto;
}

.nxe__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--nxe-border);
  border: 1px solid var(--nxe-border);
}
.nxe__card {
  display: flex; flex-direction: column;
  padding: 18px 20px;
  background: var(--nxe-surface);
  transition: all .18s;
  position: relative;
  min-height: 160px;
}
.nxe__card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: transparent;
  transition: background .18s;
}
.nxe__card[data-tier="1"]::before { background: var(--nxe-amber); }
.nxe__card[data-tier="2"]::before { background: var(--nxe-signal); }
.nxe__card:hover {
  background: var(--nxe-surface-2);
  transform: translateY(-1px);
}
.nxe__card:hover::before {
  background: var(--nxe-indigo);
}
.nxe__card-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.nxe__card-type {
  font-family: var(--nxe-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--nxe-text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nxe__card-tier {
  font-family: var(--nxe-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(0,229,176,0.10);
  color: var(--nxe-signal);
  border-radius: 2px;
}
.nxe__card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--nxe-text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.nxe__card-desc {
  font-size: 13px;
  color: var(--nxe-text-2);
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
}
.nxe__card-f {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--nxe-border);
  margin-top: auto;
}
.nxe__card-stars {
  font-family: var(--nxe-mono);
  font-size: 12px;
  color: var(--nxe-text-2);
  font-weight: 600;
}
.nxe__card-go {
  font-family: var(--nxe-mono);
  font-size: 14px;
  color: var(--nxe-text-3);
  transition: transform .18s, color .18s;
}
.nxe__card:hover .nxe__card-go {
  color: var(--nxe-signal);
  transform: translateX(4px);
}

/* ═══════════════════════════ Responsive tighten ═══════════════════════════ */
@media (max-width: 640px) {
  .nxe__hero { padding: 56px 14px 36px; }
  .nxe__hero-inner { padding: 24px 18px 26px; }
  .nxe__hero-row { flex-direction: column; gap: 18px; }
  .nxe__icon { width: 64px; height: 64px; flex-basis: 64px; }
  .nxe__title { font-size: 32px; }
  .nxe__strip-list { padding: 0 14px; }
  .nxe__strip-item { padding: 14px 16px; min-width: 110px; }
  .nxe__strip-v { font-size: 15px; }
  .nxe__main { padding: 32px 14px 0; }
  .nxe__cards { grid-template-columns: 1fr; }
  .nxe__related { padding: 16px 14px 36px; }
}
