/* ===== Newspaper article (black-on-white, serif) ===== */
  .np-gutter {
    padding: clamp(1rem, 4vw, 3rem) 1rem;
  }
  .newspaper {
    --np-ink: #111111;
    --np-muted: #44423d;
    --np-line: #11111133;
    --np-link: #0b3d91;
    max-width: 56rem;
    margin: 0 auto;
    background: #ffffff;
    color: var(--np-ink);
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border: 1px solid #d8d2c4;
    box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.45);
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  /* Masthead */
  .np-masthead { text-align: center; margin-bottom: 1.25rem; }
  .np-masthead-title {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    color: var(--np-ink);
    font-size: clamp(1.7rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 0.15em 0;
  }
  .np-masthead-rule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px double var(--np-ink);
    border-bottom: 1px solid var(--np-ink);
    padding: 0.3rem 0.1rem;
    font-family: Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--np-muted);
  }
  .np-masthead-rule--btm { border-top: 1px solid var(--np-ink); border-bottom: 3px double var(--np-ink); }

  /* Breadcrumb */
  .np-breadcrumb { font-size: 0.78rem; color: var(--np-muted); margin: 1rem 0 1.5rem; text-align: center; }
  .np-breadcrumb a { color: var(--np-muted); text-decoration: none; }
  .np-breadcrumb a:hover { text-decoration: underline; }
  .np-breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

  /* Headline block */
  .np-head { text-align: center; border-bottom: 1px solid var(--np-line); padding-bottom: 1.25rem; }
  .np-kicker {
    display: inline-block;
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a6d1f;
    text-decoration: none;
    margin-bottom: 0.6rem;
  }
  .np-kicker:hover { text-decoration: underline; }
  .np-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: var(--np-ink);
    font-size: clamp(1.9rem, 5.2vw, 3.25rem);
    line-height: 1.08;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
  }
  .np-standfirst {
    font-style: italic;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.5;
    color: #2a2a2a;
    max-width: 44rem;
    margin: 0.5rem auto 0.9rem;
  }
  .np-byline {
    font-size: 0.82rem;
    color: var(--np-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
  }
  .np-byline strong { color: var(--np-ink); }

  /* Hero figure */
  .np-figure { margin: 1.5rem 0; }
  .np-figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--np-ink);
  }
  .np-figure figcaption {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--np-muted);
    text-align: center;
    padding-top: 0.4rem;
    border-bottom: 1px solid var(--np-line);
    padding-bottom: 0.6rem;
  }

  /* Body typography (markdown content) */
  .np-body { color: #1a1a1a; font-size: 1.075rem; line-height: 1.75; }
  .np-body p { margin: 0 0 1.05em; text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
  .np-body > p:first-of-type::first-letter {
    float: left;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 3.4em;
    line-height: 0.72;
    padding: 0.05em 0.09em 0 0;
    color: var(--np-ink);
  }
  .np-body h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: var(--np-ink);
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 1.9rem 0 0.7rem;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid var(--np-ink);
  }
  .np-body h3 {
    font-family: Georgia, serif;
    font-weight: 700;
    color: var(--np-ink);
    font-size: 1.22rem;
    margin: 1.5rem 0 0.5rem;
  }
  .np-body a { color: var(--np-link); text-decoration: underline; text-underline-offset: 2px; }
  .np-body a:hover { color: #062a6b; }
  .np-body ul, .np-body ol { margin: 0 0 1.1em 1.4em; }
  .np-body li { margin: 0.3em 0; }
  .np-body strong { color: var(--np-ink); }
  .np-body blockquote {
    margin: 1.3em 0;
    padding: 0.2em 0 0.2em 1.1em;
    border-left: 4px solid var(--np-ink);
    font-style: italic;
    color: #333;
  }
  .np-body img { max-width: 100%; height: auto; border: 1px solid var(--np-ink); margin: 1.2em 0; }
  .np-body code {
    font-family: 'Courier New', monospace;
    background: #f0ece1;
    color: #5a3b00;
    padding: 0.05em 0.35em;
    border-radius: 2px;
    font-size: 0.92em;
  }
  .np-body hr { border: none; border-top: 1px solid var(--np-line); margin: 2em 0; }

  /* Footer / colophon */
  .np-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 3px double var(--np-ink);
    font-size: 0.85rem;
  }
  .np-back { color: var(--np-ink); text-decoration: none; font-weight: 700; }
  .np-back:hover { text-decoration: underline; }
  .np-share { color: var(--np-muted); }
  .np-share span { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-right: 0.5rem; }
  .np-share a { color: var(--np-ink); text-decoration: none; margin: 0 0.4rem; font-weight: 700; }
  .np-share a:hover { text-decoration: underline; }
  .np-colophon {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--np-muted);
    text-align: center;
  }
  .np-colophon a { color: var(--np-link); }
  .np-foot-by { color: var(--np-muted); font-size: 0.85rem; font-style: italic; }

  /* Tables (markdown) — newspaper grid */
  .np-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: 0.95rem;
    border: 2px solid #141414;
  }
  .np-body thead th {
    background: #141414;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
  }
  .np-body th, .np-body td {
    border: 1px solid #999;
    padding: 0.55rem 0.7rem;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
  }
  .np-body tbody tr:nth-child(even) { background: #f5f0e6; }
  .np-body td p { margin: 0; text-align: left; }
  .np-body td a, .np-body th a { color: var(--np-link); }

  /* Prominent share section */
  .np-sharebox {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 3px double #141414;
    text-align: center;
  }
  .np-share-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #141414;
    margin: 0 0 0.9rem;
  }
  .np-share-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
  .np-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 2px solid #141414;
    background: #ffffff;
    color: #141414;
    padding: 0.5rem 0.95rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
  }
  .np-btn:hover { background: #141414; color: #ffffff; }
  .np-btn svg { width: 18px; height: 18px; fill: currentColor; }

  /* FAQ accordion */
  .np-faq { margin-top: 2.25rem; }
  .np-faq-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: #111111;
    font-size: 1.55rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid #111111;
  }
  .np-faq-item { border-bottom: 1px solid #11111133; }
  .np-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.85rem 2rem 0.85rem 0;
    position: relative;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: #141210;
  }
  .np-faq-item summary::-webkit-details-marker { display: none; }
  .np-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 700;
    color: #8a6d1f;
    line-height: 1;
  }
  .np-faq-item[open] summary::after { content: '\2212'; }
  .np-faq-item summary:hover { color: #0b3d91; }
  .np-faq-answer { padding: 0 0 1rem; }
  .np-faq-answer p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: left;
  }