/* ==========================================================================
   PRZC Research — report-base.css
   Shared stylesheet for all individual report pages under /reports/<Cat>/.
   All rules are scoped to .report-container so they never conflict with the
   shared header, footer, breadcrumb, mobile-nav, or launch banner.
   ========================================================================== */

@page { size: A4; margin: 2cm; }

/* Skip-link (global, a11y) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    z-index: 9999;
}
.skip-link:focus { top: 0; }

/* Article container ------------------------------------------------------- */
.report-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px 64px;
    background: #fff;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    box-sizing: border-box;
}

/* Report header block (title + subtitle + byline) */
.report-container .report-header {
    position: relative;
    margin-bottom: 40px;
    border-bottom: 3px solid #000;
    padding-bottom: 20px;
}
.report-container .report-title,
.report-container h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0 0 10px 0;
    color: #000;
}
.report-container .report-subtitle {
    font-size: 17px;
    font-style: italic;
    color: #333;
    margin-bottom: 8px;
}
.report-container .company-details,
.report-container .report-meta {
    font-size: 13px;
    color: #555;
}

/* Sections + headings ----------------------------------------------------- */
.report-container .content-section { margin: 40px 0; }

.report-container h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin: 36px 0 14px 0;
    color: #000;
}
.report-container h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 28px 0 10px 0;
    color: #000;
}
.report-container h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 18px 0 8px 0;
    color: #000;
}

/* Body copy --------------------------------------------------------------- */
.report-container p {
    margin: 0 0 14px 0;
    text-align: left;
}
.report-container a { color: #000; text-decoration: underline; }
.report-container a:hover { color: #c9a84c; }

.report-container ul,
.report-container ol { margin: 12px 0 14px 28px; }
.report-container li { margin-bottom: 7px; }

.report-container blockquote {
    margin: 20px 0;
    padding: 12px 20px;
    border-left: 3px solid #000;
    background: #fafafa;
    font-style: italic;
    color: #222;
}

.report-container code {
    font-family: 'Menlo', 'Consolas', monospace;
    font-size: 0.9em;
    background: #f4f4f4;
    padding: 1px 5px;
    border-radius: 2px;
}
.report-container pre {
    background: #f4f4f4;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    overflow-x: auto;
    font-size: 13px;
    margin: 18px 0;
}
.report-container pre code { background: none; padding: 0; }

/* Tables ------------------------------------------------------------------ */
.report-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    font-size: 14px;
}
.report-container th,
.report-container td {
    border: 1px solid #ccc;
    padding: 8px 11px;
    text-align: left;
    vertical-align: top;
}
.report-container th {
    background: #000;
    color: #fff;
    font-weight: 600;
}
.report-container tr:nth-child(even) td { background: #fafafa; }

/* Figures + images -------------------------------------------------------- */
.report-container figure { margin: 22px 0; }
.report-container figcaption {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    text-align: center;
}
.report-container img,
.report-container svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Callout boxes — one unified neutral style for all variants */
.report-container .highlight-box,
.report-container .warning-box,
.report-container .key-finding,
.report-container .stat-box,
.report-container .callout,
.report-container .theme-box,
.report-container .disclosure-box {
    border: 1px solid #000;
    background: #f8f8f8;
    padding: 18px 20px;
    margin: 22px 0;
    font-size: 15px;
    color: #000;
}
.report-container .highlight-box strong,
.report-container .key-finding strong,
.report-container .callout strong { text-transform: uppercase; }

/* In-body mid-article CTA — normalised by the migrator. Mirrors the
   category-page "cat-footer-cta" card: black panel, heading + body,
   primary Commission button and outline "Try The Board" with NEW badge.
   Hover state gold (#c9a84c) to match floating banner + category pages. */
.report-container .inline-cta {
    margin: 40px 0;
    padding: 2.5rem 2rem;
    background: #000;
    color: #fff;
    text-align: center;
}
.report-container .inline-cta * { color: inherit; }
.report-container .inline-cta .inline-cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    margin: 0 0 0.75rem 0;
}
.report-container .inline-cta h2,
.report-container .inline-cta h3,
.report-container .inline-cta h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
    text-transform: none;
    letter-spacing: 0;
}
.report-container .inline-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}
.report-container .inline-cta .inline-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}
.report-container .inline-cta .btn {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.report-container .inline-cta .btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #000;
    text-decoration: none;
}
.report-container .inline-cta .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.report-container .inline-cta .btn-outline:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #000;
}
.report-container .inline-cta .new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c9a84c;
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.report-container .toc {
    border: 1px solid #e0e0e0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: #fafafa;
    font-size: 14px;
}
.report-container .toc p { font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }
.report-container .toc ol { margin-left: 0; padding-left: 1.6em; list-style: decimal; line-height: 1.9; }
.report-container .toc ul { margin-left: 0; padding-left: 1.6em; line-height: 1.9; }
.report-container .toc li { margin-bottom: 4px; padding-left: 0.25em; }
.report-container .toc li::marker { font-weight: 700; color: #000; }
.report-container .toc a { color: #000; text-decoration: none; }
.report-container .toc a:hover { text-decoration: underline; }

.report-container .report-meta .date,
.report-container > .date,
.report-container > p > .date {
    font-size: 13px;
    color: #666;
}

/* Disclaimer injected by report-disclaimer.js */
.report-container .report-disclaimer {
    border-top: 1px solid #e5e5e5;
    margin-top: 48px;
    padding-top: 20px;
    font-size: 12px;
    line-height: 1.7;
    color: #555;
}
.report-container .report-disclaimer h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #333;
}
.report-container .report-disclaimer p { margin-bottom: 0.8rem; }

.report-container .disclaimer {
    font-size: 12px;
    color: #666;
    border-top: 1px solid #e5e5e5;
    margin-top: 48px;
    padding-top: 16px;
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 640px) {
    .report-container { padding: 24px 16px 48px; font-size: 15px; }
    .report-container .report-title,
    .report-container h1 { font-size: 22px; }
    .report-container h2 { font-size: 17px; }
    .report-container h3 { font-size: 15px; }
    .report-container table { font-size: 13px; }
    .report-container th,
    .report-container td { padding: 6px 8px; }
}

/* Print ------------------------------------------------------------------- */
@media print {
    #site-header,
    #mobile-nav,
    #board-launch-banner,
    nav[aria-label="Breadcrumb"],
    #przc-commission-banner,
    .share-bar,
    footer { display: none !important; }
    .report-container { max-width: none; padding: 0; }
    a { color: #000; text-decoration: none; }
}
