/* ============================================================
   CITATION NORTH — ARTICLE OVERLAY
   Loaded only on /blog/ pages. Inherits all design tokens from
   the parent site's base.css + style.css. This file adds ONLY
   the long-form reading experience.
   ============================================================ */

/* ---------- Article shell ---------- */
.cn-article-main {
  background: var(--navy);
  padding-block: clamp(2rem, 4vw, 4rem);
}

.cn-article {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ---------- Reading progress bar (top of article) ---------- */
.cn-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.cn-reading-progress span {
  display: block;
  height: 100%;
  width: var(--cn-progress, 0%);
  background: linear-gradient(90deg, var(--gold), var(--amber, #D4862A));
  transition: width 80ms linear;
  box-shadow: 0 0 14px rgba(200, 146, 42, 0.45);
}

/* ---------- Article header ---------- */
.cn-article__header {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.cn-article__header-inner {
  max-width: 760px;
  margin-inline: auto;
}

.cn-article__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.cn-article__kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 146, 42, 0.7);
}

.cn-article__title {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: clamp(2rem, 1rem + 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--cream);
  text-wrap: balance;
  margin-bottom: 1rem;
}

.cn-article__lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--text);
  margin: 1rem 0 2rem;
  max-width: 60ch;
}

/* Byline strip */
.cn-article__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.cn-article__byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cn-article__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.cn-article__byline-by {
  font-size: 0.78rem;
  color: var(--muted);
  margin-right: 0.25rem;
  font-weight: 400;
  text-transform: lowercase;
}
.cn-article__author-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
}
.cn-article__author-name a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s;
}
.cn-article__author-name a:hover { border-color: var(--gold); }
.cn-article__author-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 2px 0 0;
}

.cn-article__byline-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.cn-article__byline-meta dt {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.cn-article__byline-meta dd {
  font-size: 0.85rem;
  color: var(--cream);
  margin: 0;
}

/* Hairline rule between header and body */
.cn-article__rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin-block: clamp(2rem, 4vw, 3.5rem);
}

/* ---------- Two-column body wrap (desktop) ---------- */
.cn-article__body-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .cn-article__body-wrap {
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin-inline: auto;
  }
}

/* ---------- Sidebar ---------- */
.cn-article__sidebar {
  display: contents;
}
@media (min-width: 1024px) {
  .cn-article__sidebar {
    display: block;
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 0.5rem;
  }
  .cn-article__sidebar::-webkit-scrollbar { width: 4px; }
  .cn-article__sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
}

/* TOC */
.cn-toc {
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .cn-toc {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1rem 1.25rem;
  }
}
.cn-toc__title {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.cn-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.cn-toc__item--sub { padding-left: 1.5rem; }
.cn-toc__item a {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.4;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
  transition: color 0.18s, border-color 0.18s;
}
.cn-toc__item a:hover { color: var(--cream); border-color: rgba(200, 146, 42, 0.4); }
.cn-toc__item a.is-active {
  color: var(--gold);
  border-color: var(--gold);
}
.cn-toc__num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
  padding-top: 1px;
}
.cn-toc__item--sub .cn-toc__num { display: none; }

/* Share / cite block in sidebar */
.cn-share {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.cn-share__title {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.cn-share__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cn-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cn-share__btn:hover {
  background: rgba(200, 146, 42, 0.06);
  color: var(--cream);
  border-color: rgba(200, 146, 42, 0.4);
}
.cn-share__btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Featured image ---------- */
.cn-article__featured {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cn-article__featured-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Article content typography ---------- */
.cn-article__content-wrap {
  min-width: 0; /* prevent grid blowout */
}
.cn-article__content {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.95rem + 0.25vw, 1.115rem);
  line-height: 1.78;
  color: var(--text);
}

/* Drop cap on the very first paragraph */
.cn-article__content > p:first-of-type::first-letter {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: 4.4em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--gold);
}

.cn-article__content p {
  margin-block: 0 1.5em;
  max-width: 68ch;
}
.cn-article__content > p:last-child { margin-bottom: 0; }

.cn-article__content h2 {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin-block: 2.5em 0.75em;
  scroll-margin-top: 92px;
  text-wrap: balance;
}
.cn-article__content h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.6em;
  opacity: 0.7;
}
.cn-article__content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-block: 2em 0.6em;
  scroll-margin-top: 92px;
}
.cn-article__content h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin-block: 1.6em 0.5em;
}

.cn-article__content a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(200, 146, 42, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s, color 0.18s;
}
.cn-article__content a:hover {
  text-decoration-color: var(--gold);
  color: var(--gold);
}

.cn-article__content strong { color: var(--cream); font-weight: 600; }
.cn-article__content em { font-style: italic; }

.cn-article__content ul,
.cn-article__content ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
  max-width: 64ch;
}
.cn-article__content li { margin-bottom: 0.5em; }
.cn-article__content ul li::marker { color: var(--gold); }

.cn-article__content blockquote {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.4;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2em 0;
  max-width: 60ch;
}
.cn-article__content blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}
.cn-article__content blockquote cite::before { content: '— '; }

.cn-article__content figure {
  margin: 2em 0;
  max-width: 100%;
}
.cn-article__content figure img {
  border-radius: 3px;
  border: 1px solid var(--border);
}
.cn-article__content figcaption {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.cn-article__content code {
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 0.9em;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--cream);
}
.cn-article__content pre {
  background: rgba(0,0,0,0.32);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.5em 0;
  overflow-x: auto;
}
.cn-article__content pre code { background: transparent; border: 0; padding: 0; }

.cn-article__content hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 3em 0;
}

.cn-article__content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.cn-article__content th,
.cn-article__content td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.cn-article__content th {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- TL;DR callout (cn_tldr shortcode) ---------- */
.cn-tldr {
  background: rgba(200, 146, 42, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin: 2em 0;
  position: relative;
}
.cn-tldr__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.cn-tldr__label span {
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-left: 4px;
  text-transform: none;
}
.cn-tldr__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cn-tldr__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  font-size: 0.96rem;
  color: var(--cream);
  line-height: 1.55;
}
.cn-tldr__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.cn-tldr__list li:last-child { margin-bottom: 0; }

/* ---------- Factbox (cn_factbox shortcode) ---------- */
.cn-factbox {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 2em 0;
}
.cn-factbox__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cn-factbox__body p {
  margin: 0 0 0.85em;
  color: var(--text);
  font-size: 0.96rem;
}
.cn-factbox__body p:last-child { margin-bottom: 0; }
/* Tier-coloured variants */
.cn-factbox--list { border-color: var(--tier-list, #B090E8); }
.cn-factbox--list .cn-factbox__title { color: var(--tier-list, #B090E8); }
.cn-factbox--sit  { border-color: var(--tier-sit,  #8099E0); }
.cn-factbox--sit  .cn-factbox__title { color: var(--tier-sit,  #8099E0); }
.cn-factbox--comp { border-color: var(--tier-comp, #60A8A8); }
.cn-factbox--comp .cn-factbox__title { color: var(--tier-comp, #60A8A8); }
.cn-factbox--auth { border-color: var(--tier-auth, #D4B060); }
.cn-factbox--auth .cn-factbox__title { color: var(--tier-auth, #D4B060); }

/* ---------- Inline footnotes ---------- */
.cn-fn {
  font-size: 0.78em;
  vertical-align: super;
  line-height: 0;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 0;
  padding: 0 1px;
}
.cn-fn:hover { color: var(--amber, #D4862A); }

/* ---------- FAQ block (cn_faq shortcode) ---------- */
.cn-faq {
  margin: 3em 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.cn-faq__heading {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.4vw, 1.95rem);
  letter-spacing: -0.012em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cn-faq__item {
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.18s;
}
.cn-faq__item[open] { border-color: rgba(200, 146, 42, 0.4); }
.cn-faq__q {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cn-faq__q::-webkit-details-marker { display: none; }
.cn-faq__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.cn-faq__item[open] .cn-faq__q::after { transform: rotate(45deg); }
.cn-faq__a {
  padding: 0 1.25rem 1rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
}
.cn-faq__a p:last-child { margin-bottom: 0; }

/* ---------- Citation block (article foot) ---------- */
.cn-cite-block {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: 2rem;
  border-top: 2px solid var(--gold);
}
.cn-cite-block__inner {
  background: rgba(200, 146, 42, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.22);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  position: relative;
}
.cn-cite-block__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.cn-cite-block__formatted {
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cream);
  margin: 0 0 1rem;
  word-break: break-word;
  max-width: none;
}
.cn-cite-block__formatted em { color: var(--cream); font-style: italic; font-family: var(--font-display, 'DM Serif Display', serif); font-size: 1.05em; }
.cn-cite-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.cn-cite-block__btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}
.cn-cite-block__btn svg { width: 14px; height: 14px; }
.cn-cite-block__btn.is-copied {
  background: var(--green, #4CAF80);
  border-color: var(--green, #4CAF80);
  color: var(--navy);
}
.cn-cite-block__btn.is-copied::before {
  content: '✓ Copied — ';
}

/* ---------- Author card ---------- */
.cn-author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 2.5rem 0 1.5rem;
}
.cn-author-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cn-author-card__kicker {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.cn-author-card__name {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 4px;
}
.cn-author-card__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.cn-author-card__name a:hover { border-color: var(--gold); }
.cn-author-card__role {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.cn-author-card__bio {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Methodology footer ---------- */
.cn-methodology {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--border);
  border-radius: 3px;
  font-size: 0.92rem;
}
.cn-methodology__lead {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.cn-methodology p:not(.cn-methodology__lead) {
  color: var(--text);
  margin: 0;
}

/* ---------- Tag list ---------- */
.cn-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.cn-tag-list__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.5rem;
}
.cn-tag-list__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.cn-tag-list__tag:hover {
  color: var(--gold);
  border-color: rgba(200, 146, 42, 0.4);
  background: rgba(200, 146, 42, 0.06);
}

/* ---------- Related insights ---------- */
.cn-related {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.cn-related__heading {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  letter-spacing: -0.012em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cn-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.cn-related__card {
  display: flex;
  flex-direction: column;
}
.cn-related__media {
  display: block;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 3px;
}
.cn-related__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cn-related__media:hover img { transform: scale(1.03); }
.cn-related__title-link { text-decoration: none; }
.cn-related__title {
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}
.cn-related__title-link:hover .cn-related__title { color: var(--gold); }
.cn-related__excerpt {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cn-article__sidebar, .cn-share, .cn-reading-progress, .cn-related { display: none; }
  .cn-article { padding: 0; }
}
