/* ── Newspaper / Canvas Viewer ── */
.np-viewer-shell {
    background: #f0ebe3;
    min-height: 100vh;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.np-viewer-page { background: #fff; color: #1a1a1a; box-shadow: 0 2px 24px rgba(0,0,0,.12); }
.np-viewer-page.width-normal { max-width: 900px; width: 100%; }
.np-viewer-page.width-wide   { max-width: 1200px; width: 100%; }
.np-viewer-page.width-full   { max-width: 100%; width: 100%; }
.np-viewer-meta {
    background: #111; color: #fff; padding: .5rem 1.5rem; font-size: .78rem;
    letter-spacing: .08em; text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: center;
}
.np-viewer-brand { display: inline-flex; align-items: center; gap: .35rem; }
.np-viewer-brand-icon { width: 1rem; height: 1rem; }
.np-viewer-brand em { font-style: italic; font-family: Georgia, 'Times New Roman', serif; color: #CECBF6; }
.np-block-headline    { font-family: 'Georgia', serif; font-size: 2.6rem; font-weight: 700; line-height: 1.15; padding: 1rem 1.5rem .5rem; }
.np-block-subheadline { font-family: 'Georgia', serif; font-size: 1.6rem; font-weight: 600; line-height: 1.25; padding: .6rem 1.5rem .4rem; }
.np-block-byline      { font-size: .88rem; letter-spacing: .04em; color: #555; padding: .3rem 1.5rem; font-style: italic; }
.np-block-paragraph   { font-size: 1rem; line-height: 1.75; padding: .5rem 1.5rem; white-space: pre-wrap; }
.np-block-quote       { font-family: 'Georgia', serif; font-size: 1.35rem; font-style: italic; border-left: 4px solid #333; margin: .75rem 1.5rem; padding: .75rem 1.25rem; color: #333; background: #f9f7f4; }
.np-block-label       { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 3px; background: #111; color: #fff; }
.np-block-image       { padding: .5rem 1.5rem; text-align: center; }
.np-block-image img   { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.np-block-caption     { font-size: .82rem; color: #666; margin-top: .3rem; font-style: italic; text-align: center; }
.np-block-video       { padding: .5rem 1.5rem; }
.np-block-video video { max-width: 100%; border-radius: 4px; }
.np-block-divider     { padding: .5rem 1.5rem; }
.np-block-columns     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: .5rem 1.5rem; }
.np-block-columns.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.np-block-col         { font-size: 1rem; line-height: 1.7; white-space: pre-wrap; }
.np-access-wall       { text-align: center; padding: 4rem 2rem; color: #555; }
.np-access-wall h2    { font-family: 'Georgia', serif; margin-bottom: 1rem; }

/* Canvas Viewer */
.cv-viewport { background: #2a2a2a; min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding: 2rem 1rem; }
.cv-topbar   { width: 100%; max-width: 960px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; color: #aaa; font-size: .82rem; }
.cv-canvas   { position: relative; background: #fff; box-shadow: 0 4px 32px rgba(0,0,0,.5); flex-shrink: 0; }
.cv-element  { position: absolute; box-sizing: border-box; overflow: hidden; }
