/* ============================================
   SPOTLIGHT REPORTS
   Card grid (reuses .plc-card + .plc-grid from pillar-landing.css),
   single-post PDF embed, download button.
   Uses existing design tokens only:
     --gold-primary, --gold-light, --navy-deep, --navy-medium,
     --radius-sm, --transition-base
   ============================================ */

/* -----------------------------------------------
   Archive card — date line under the title.
   Stacks inside the existing .plc-card flex column.
   ----------------------------------------------- */
.plc-card .spotlight-card-date {
    font-family: 'Libre Franklin', 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: -0.125rem;
}

/* -----------------------------------------------
   Single-post layout
   ----------------------------------------------- */
.spotlight-single-body {
    max-width: 960px;
    margin: 0 auto;
}

.spotlight-single-date {
    font-family: 'Libre Franklin', 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0;
    text-align: center;
}

.spotlight-single-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.spotlight-single-description p,
.spotlight-single-description ul,
.spotlight-single-description ol {
    color: inherit;
}

.spotlight-single-description a {
    color: var(--gold-light);
}

/* -----------------------------------------------
   PDF embed
   ----------------------------------------------- */
.spotlight-pdf-embed {
    width: 100%;
    margin: 0 0 1.5rem;
    background: var(--navy-deep);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.spotlight-pdf-embed object {
    display: block;
    border: 0;
    width: 100%;
    height: 800px;
}

.spotlight-pdf-embed p {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.spotlight-pdf-embed p a {
    color: var(--gold-light);
}

/* -----------------------------------------------
   Download button
   ----------------------------------------------- */
.spotlight-pdf-actions {
    margin: 0 0 1.5rem;
}

.spotlight-download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gold-primary);
    color: var(--navy-deep);
    font-family: 'Libre Franklin', 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition-base), color var(--transition-base);
}

.spotlight-download-btn:hover,
.spotlight-download-btn:focus-visible {
    background: var(--gold-light);
    color: var(--navy-deep);
    outline: none;
}

/* -----------------------------------------------
   Back link
   ----------------------------------------------- */
.spotlight-back-link {
    margin-top: 2rem;
}

.spotlight-back-link a {
    color: var(--gold-light);
    text-decoration: none;
    font-family: 'Libre Franklin', 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.spotlight-back-link a:hover {
    color: #fff;
    text-decoration: underline;
}

/* -----------------------------------------------
   Archive pagination
   ----------------------------------------------- */
.spotlight-pagination {
    margin-top: 2rem;
    text-align: center;
}

.spotlight-pagination .page-numbers {
    display: inline-block;
    margin: 0 0.25rem;
    padding: 0.4rem 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.spotlight-pagination .page-numbers.current {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.spotlight-pagination .page-numbers:hover:not(.current) {
    background: var(--navy-medium);
    color: #fff;
}

/* -----------------------------------------------
   Empty state
   ----------------------------------------------- */
.spotlight-empty {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-style: italic;
    padding: 2rem 0;
}

/* -----------------------------------------------
   Mobile: PDF embed is flaky on mobile browsers.
   Hide the object and let the Download button handle it;
   users tap through to their native PDF viewer.
   ----------------------------------------------- */
@media (max-width: 767px) {
    .spotlight-pdf-embed {
        display: none;
    }

    .spotlight-download-btn {
        display: block;
        text-align: center;
    }
}
