/* ══════════════════════════════════════════════════════
   ARTICLE PAGE  (np-art-*)
   ══════════════════════════════════════════════════════ */

/* ── Article wrapper ── */
.np-art {
    background: var(--white);
    padding-bottom: 3.5rem;
}

/* ── Header ── */
.np-art-header {
    background: var(--deep-navy);
    padding: 2.75rem 0 2.25rem;
    border-bottom: 3px solid var(--gold);
}
.np-art-header-inner {
    max-width: 760px;
    margin: 0 auto;
}
.np-art-kicker {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-inline-start: 3px solid var(--gold);
    padding-inline-start: 0.6rem;
    margin-bottom: 1rem;
    transition: opacity .15s;
}
.np-art-kicker:hover { opacity: .75; }
.np-art-title {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.028em;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 700px;
}
.np-art-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.58;
    color: rgba(255,255,255,.72);
    margin-bottom: 1.35rem;
    max-width: 640px;
}
.np-art-byline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255,255,255,.5);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 0.9rem;
}
.np-art-byline-author a {
    color: rgba(255,255,255,.82);
    font-weight: 600;
    text-decoration: none;
}
.np-art-byline-author a:hover { color: var(--gold); }
.np-art-byline-sep { opacity: .4; }
.np-art-byline-date { color: rgba(255,255,255,.5); }

/* ── Hero image ── */
.np-art-hero-img {
    background: var(--deep-navy);
    padding-bottom: 1.75rem;
}
.np-art-figure {
    max-width: 900px;
    margin: 0 auto;
}
.np-art-figure img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
    border-radius: 2px;
}
.np-art-caption {
    font-size: 0.7rem;
    color: rgba(255,255,255,.45);
    margin-top: 0.55rem;
    padding-inline-start: 0.6rem;
    border-inline-start: 2px solid rgba(255,255,255,.15);
    line-height: 1.45;
}

/* ── Body layout (main + optional sidebar) ── */
.np-art-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.75rem;
    padding-top: 2.25rem;
    align-items: start;
}
.np-art-layout--nosidebar {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}
.np-art-sidebar {
    position: sticky;
    top: 1.5rem;
}

/* ── Article body typography ── */
.np-art-body {
    font-size: 1.02rem;
    line-height: 1.78;
    color: #1a202c;
    max-width: 720px;
}
.np-art-body > * + * { margin-top: 1.25em; }
.np-art-body p { margin: 0 0 1.1em; }

.np-art-body h2 {
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--navy);
    margin: 2em 0 0.65em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid rgba(201,162,74,.3);
}
.np-art-body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin: 1.75em 0 0.5em;
}
.np-art-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.5em 0 0.4em;
}

.np-art-body strong { font-weight: 700; color: #111827; }
.np-art-body em     { font-style: italic; color: #374151; }

.np-art-body a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(7,26,45,.3);
    transition: color .15s, text-decoration-color .15s;
}
.np-art-body a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.np-art-body blockquote {
    margin: 1.75em 0;
    padding: 1rem 1.25rem;
    border-inline-start: 4px solid var(--gold);
    background: #faf9f6;
    font-size: 1.05rem;
    font-style: italic;
    color: #374151;
    line-height: 1.65;
    border-radius: 0 2px 2px 0;
}
.np-art-body blockquote cite {
    display: block;
    font-size: 0.8rem;
    font-style: normal;
    color: var(--muted);
    margin-top: 0.5em;
}

.np-art-body pre,
.np-art-body code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    background: #f3f4f6;
    border-radius: 3px;
}
.np-art-body pre {
    padding: 1rem 1.25rem;
    overflow-x: auto;
    line-height: 1.55;
}
.np-art-body code { padding: 0.1em 0.35em; }
.np-art-body pre code { background: none; padding: 0; }

.np-art-body ul,
.np-art-body ol {
    padding-inline-start: 1.5rem;
    margin: 0 0 1.1em;
}
.np-art-body li { margin-bottom: 0.3em; }

.np-art-body hr {
    border: none;
    border-top: 2px solid rgba(201,162,74,.25);
    margin: 2em 0;
}

/* Tables: responsive wrapper + clean style */
.np-art-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 1.1em;
}
.np-art-body th {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    text-align: start;
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
    letter-spacing: .04em;
}
.np-art-body td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.np-art-body tr:nth-child(even) td { background: #faf9f6; }

/* Images inside body */
.np-art-body img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    margin: 0.25em auto;
}
.np-art-body figure {
    margin: 1.5em 0;
}
.np-art-body figcaption {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.4em;
    padding-inline-start: 0.5rem;
    border-inline-start: 2px solid var(--border);
}

/* Video embed (ContentSanitizer wraps with .np-art-video) */
.np-art-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 1.5em 0;
    border-radius: 2px;
}
.np-art-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Tags ── */
.np-art-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.np-art-tags-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-inline-end: 0.25rem;
}
.np-art-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
    background: #f3f4f6;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: background .15s, color .15s;
}
.np-art-tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ── Share row ── */
.np-art-share {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.75rem;
    padding: 1rem 1.1rem;
    background: #faf9f6;
    border: 1px solid var(--border);
    border-radius: 3px;
}
.np-art-share-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-inline-end: 0.25rem;
    flex-shrink: 0;
}
.np-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
    flex-shrink: 0;
}
.np-share-btn:hover           { background: var(--navy); color: var(--white); border-color: var(--navy); }
.np-share-btn.np-share-wa:hover  { background: #25D366; border-color: #25D366; }
.np-share-btn.np-share-li:hover  { background: #0A66C2; border-color: #0A66C2; }
.np-share-btn.np-share-x:hover   { background: #000;    border-color: #000; }
.np-share-btn.is-copied          { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Author box ── */
.np-art-author-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-inline-start: 4px solid var(--gold);
    background: #faf9f6;
    border-radius: 0 3px 3px 0;
}
.np-art-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.np-art-author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.np-art-author-info { flex: 1; min-width: 0; }
.np-art-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}
.np-art-author-name a { color: inherit; text-decoration: none; }
.np-art-author-name a:hover { color: var(--gold); }
.np-art-author-role {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.45rem;
}
.np-art-author-bio {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #374151;
    margin: 0;
}

/* ── Related articles ── */
.np-art-related {
    background: #f8f7f4;
    border-top: 2px solid rgba(201,162,74,.3);
    padding: 2.25rem 0;
    margin-top: 2rem;
}
.np-art-related-hd {
    margin-bottom: 1.35rem;
}
.np-art-related-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--deep-navy);
    border-inline-start: 4px solid var(--gold);
    padding-inline-start: 0.7rem;
}
.np-art-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.np-rel-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 7px rgba(0,0,0,.07);
    transition: transform .15s, box-shadow .2s;
}
.np-rel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,.11);
}
.np-rel-img {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.np-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.np-rel-card:hover .np-rel-img img { transform: scale(1.04); }
.np-rel-body {
    padding: 0.75rem 0.9rem 0.9rem;
}
.np-rel-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0.3rem 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.np-rel-title a { color: inherit; text-decoration: none; }
.np-rel-title a:hover { color: var(--gold); }

/* ── Article page responsive ── */
@media (max-width: 1024px) {
    .np-art-layout { grid-template-columns: 1fr; }
    .np-art-sidebar { position: static; }
    .np-art-title   { font-size: clamp(1.6rem, 3vw, 2.2rem); }
}
@media (max-width: 768px) {
    .np-art-header  { padding: 1.75rem 0 1.5rem; }
    .np-art-title   { font-size: 1.55rem; letter-spacing: -.02em; }
    .np-art-subtitle { font-size: 0.92rem; }
    .np-art-figure img { max-height: 260px; }
    .np-art-layout  { padding-top: 1.5rem; }
    .np-art-body    { font-size: 0.96rem; line-height: 1.7; }
    .np-art-body h2 { font-size: 1.15rem; }
    .np-art-body h3 { font-size: 0.98rem; }
    .np-art-related-grid { grid-template-columns: 1fr 1fr; }
    .np-art-author-box   { flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 480px) {
    .np-art-related-grid { grid-template-columns: 1fr; }
    .np-art-share { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════════════════
   PHASE 15 — ARTICLE PAGE UPGRADES
   ════════════════════════════════════════════════════════ */

/* Wider layout */
.np-art-layout {
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

/* Body fills main column when sidebar present */
.np-art-layout:not(.np-art-layout--nosidebar) .np-art-body {
    max-width: 100%;
}

/* Improved typography */
.np-art-body {
    font-size: 1.04rem;
    line-height: 1.82;
}
.np-art-body p { margin: 0 0 1.25em; }
.np-art-body h2 {
    font-size: 1.32rem;
    margin: 2.25em 0 0.6em;
    padding-bottom: 0.45em;
}
.np-art-body h3 {
    font-size: 1.1rem;
    margin: 1.85em 0 0.5em;
    padding-inline-start: 0.65rem;
    border-inline-start: 3px solid var(--gold);
}
.np-art-body blockquote {
    margin: 2em 0;
    padding: 1.25rem 1.5rem;
    border-inline-start: 5px solid var(--gold);
    background: linear-gradient(to inline-end, rgba(201,162,74,.06), transparent);
    font-size: 1.08rem;
    line-height: 1.7;
}
.np-art-body hr {
    margin: 2.5em 0;
    border-top: 1px solid var(--border);
    position: relative;
}
.np-art-body hr::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: -0.65em;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--gold);
    background: var(--white);
    padding: 0 0.5rem;
}

/* Sidebar */
.np-sidebar-ad-wrap {
    margin-bottom: 1.75rem;
}
.np-sidebar-related {
    padding-top: 1.25rem;
    border-top: 2px solid rgba(201,162,74,.25);
}
.np-sidebar-section-title {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--deep-navy);
    border-inline-start: 4px solid var(--gold);
    padding-inline-start: 0.6rem;
    margin-bottom: 1.1rem;
}
.np-sidebar-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    transition: opacity .15s;
}
.np-sidebar-item:last-child { border-bottom: none; }
.np-sidebar-item:hover { opacity: .78; }
.np-sidebar-thumb {
    flex: 0 0 70px;
    height: 52px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--border);
}
.np-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.np-sidebar-item:hover .np-sidebar-thumb img { transform: scale(1.05); }
.np-sidebar-item-body { flex: 1; min-width: 0; }
.np-sidebar-item-title {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    margin: 0 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.np-sidebar-item-date {
    font-size: 0.68rem;
    color: var(--muted);
    display: block;
}

/* Author box upgrade */
.np-art-author-box {
    margin-top: 2.5rem;
    padding: 1.5rem 1.6rem;
    border: none;
    border-top: 3px solid var(--gold);
    background: var(--deep-navy);
    border-radius: 0 0 3px 3px;
    border-inline-start: none;
}
.np-art-author-eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
    opacity: .85;
}
.np-art-author-header { margin-bottom: 0; }
.np-art-author-identity {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}
.np-art-author-box .np-art-author-avatar {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(201,162,74,.5);
}
.np-art-author-box .np-art-author-name {
    color: var(--white);
    font-size: 0.95rem;
}
.np-art-author-box .np-art-author-name a { color: var(--white); }
.np-art-author-box .np-art-author-name a:hover { color: var(--gold); }
.np-art-author-box .np-art-author-role { color: rgba(255,255,255,.5); }
.np-art-author-box .np-art-author-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* Related articles: tighter */
.np-art-related {
    margin-top: 0;
    padding: 2rem 0 2.5rem;
}
.np-art-related-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(201,162,74,.25);
}
.np-rel-card {
    transition: transform .2s, box-shadow .2s;
}
.np-rel-body {
    padding: 0.8rem 0.95rem 1rem;
}
.np-rel-title {
    font-size: 0.9rem;
    line-height: 1.32;
}

/* Phase 15 article responsive */
@media (max-width: 768px) {
    .np-art-layout { grid-template-columns: 1fr; }
    .np-art-sidebar { position: static; }
    .np-art-author-identity { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════════════════
   PHASE 22A — Article Polish: Progress bar, Reading time,
   Typography refinements, Sticky share, Newsletter CTA
   ════════════════════════════════════════════════════════ */

/* ── Reading progress bar ── */
#art-progress {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e8a842);
    z-index: 2000;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── Reading time badge in byline ── */
.np-art-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,.45);
}
.np-art-read-time svg { opacity: .65; }

/* ── Article header — upgraded kicker with line ── */
.np-art-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 0.85rem;
}
.np-art-kicker::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Improved article title ── */
.np-art-title {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
    color: var(--white);
}

/* ── Article header gradient ── */
.np-art-header {
    background: linear-gradient(160deg, var(--deep-navy) 60%, #0a1e3d);
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(201,162,74,.15);
}

/* ── Sticky share bar ── */
.np-art-share-sticky {
    position: sticky;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--deep-navy);
    border: 1px solid rgba(201,162,74,.3);
    border-radius: 50px;
    padding: 0.45rem 0.85rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.22);
    margin-top: 2rem;
    width: fit-content;
    z-index: 90;
}
.np-art-share-sticky .np-art-share-label {
    color: rgba(255,255,255,.5);
    font-size: 0.65rem;
}
.np-art-share-sticky .np-share-btn {
    background: transparent;
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    width: 30px;
    height: 30px;
}
.np-art-share-sticky .np-share-btn:hover {
    background: rgba(201,162,74,.2);
    color: var(--gold);
    border-color: rgba(201,162,74,.4);
}

/* ── Article newsletter CTA ── */
.np-art-newsletter {
    margin: 2.5rem 0 0;
    padding: 1.75rem 2rem;
    background: var(--deep-navy);
    border-radius: 4px;
    border: 1px solid rgba(201,162,74,.2);
    border-top: 3px solid var(--gold);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.np-art-newsletter-text {}
.np-art-newsletter-eyebrow {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.np-art-newsletter-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.3rem;
    line-height: 1.3;
}
.np-art-newsletter-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}
.np-art-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.np-art-newsletter-input {
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.07);
    color: var(--white);
    font-size: 0.82rem;
    border-radius: 3px;
    outline: none;
    width: 220px;
    transition: border-color .18s;
}
.np-art-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.np-art-newsletter-input:focus { border-color: rgba(201,162,74,.5); }
.np-art-newsletter-btn {
    padding: 0.55rem 1.25rem;
    background: var(--gold);
    color: var(--deep-navy);
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .18s;
}
.np-art-newsletter-btn:hover { opacity: .88; }

/* ── Drop-cap first paragraph ── */
.np-art-body > p:first-child::first-letter {
    font-size: 3.4em;
    font-weight: 800;
    line-height: .85;
    float: inline-start;
    margin-inline-end: .1em;
    margin-top: .05em;
    color: var(--gold);
    font-family: Georgia, serif;
}

/* ── Improved figure handling ── */
.np-art-figure {
    position: relative;
    margin: 0;
}
.np-art-figure img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* ── Better blockquote ── */
.np-art-body blockquote {
    position: relative;
    overflow: hidden;
}
.np-art-body blockquote::before {
    content: '\201C';
    position: absolute;
    top: -.2em;
    inset-inline-start: .5rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201,162,74,.15);
    font-family: Georgia, serif;
    pointer-events: none;
}

/* ── Article mobile ── */
@media (max-width: 768px) {
    .np-art-newsletter { flex-direction: column; gap: 1rem; }
    .np-art-newsletter-input { width: 100%; }
    .np-art-newsletter-form { width: 100%; }
    .np-art-newsletter-btn { width: 100%; text-align: center; }
    .np-art-share-sticky { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   PHASE 23 — ARTICLE TYPOGRAPHY POLISH + STICKY SIDEBAR
   ════════════════════════════════════════════════════════════════ */

/* ── Sticky sidebar ── */
.np-art-sidebar {
    position: sticky !important;
    top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h) + 1rem) !important;
    align-self: start !important;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,162,74,.2) transparent;
}
@media (max-width: 1024px) {
    .np-art-sidebar { position: static !important; max-height: none; }
}

/* ── Article body typography: tighter line-height ── */
.np-art-body {
    font-size: 1.06rem !important;
    line-height: 1.78 !important;
}
.np-art-body p { margin: 0 0 1.1em !important; }

/* ── Article header: tighter ── */
.np-art-title {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem) !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
    line-height: 1.13 !important;
}
.np-art-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,.72) !important;
    font-weight: 400 !important;
}
.np-art-header { padding: 2.25rem 0 1.75rem !important; }

/* ── Kicker separator ── */
.np-art-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem !important;
    font-weight: 800 !important;
    letter-spacing: .2em !important;
    color: var(--gold) !important;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

/* ── Related articles: tighter ── */
.np-art-related-grid {
    gap: 1rem !important;
}
.np-rel-title { font-size: 0.88rem !important; line-height: 1.28 !important; }
.np-rel-body  { padding: 0.65rem 0.8rem 0.8rem !important; }

/* ── Ad slots in article: after 2nd paragraph ── */
.ad-wrap--article-top {
    margin: 0 0 1.5rem !important;
}
.ad-wrap--inline {
    margin: 1.5rem 0 !important;
    padding: 0.5rem 0 !important;
}
