/**
 * PR Desk frontend pages — v4 "Registry" (2026-08-31, 0.9.6).
 *
 * Scopes: .aiprd-pr (channel archive + newsroom shell), .aiprd-pr-microlabel,
 * .aiprd-pr-disclaimer, .aiprd-pr-identity, .aiprd-pr-deksub, .aiprd-pr-body,
 * .aiprd-release-footer, .aiprd-media-contact, .aiprd-newsroom. Nothing here
 * leaks outside them — the --aiprd-* custom properties sit on :root only so
 * the single-post blocks (which have no .aiprd-pr ancestor) can read the same
 * palette instead of repeating literal hexes.
 *
 * NEW FILENAME ON PURPOSE (was pr-pages-v3.css). Cloudflare on this site
 * ignores ?ver= for cached assets — redesigns ship under a new path.
 *
 * v4 direction (owner-approved Registry proposal, 2026-08-31 — evidence from
 * live captures of OpenAI/Anthropic/Stripe/Mistral newsrooms + the wire
 * platforms; proposal artifact linked from CLAUDE.md):
 *
 * - FUNDING IS NEWS, PR IS A RECORD. This channel reads as a light registry /
 *   index, not a magazine. The dark masthead band is DEAD (every top-tier
 *   newsroom measured is light; dark was also the #1 "looks like Funding"
 *   tell). No dark surfaces anywhere on the PR product pages.
 * - NO PHOTO HERO. Paid Featured releases get INLINE emphasis in the list
 *   (accent left bar + mono FEATURED label + larger headline — EIN marks paid
 *   placement inline; Anthropic promotes typographically). When nothing is
 *   Featured the index starts immediately. Never backfill the top with
 *   whatever happens to be newest.
 * - MONO METADATA LAYER (self-hosted JetBrains Mono 400, the family Anthropic
 *   loads on its news page): dates, company microlabels, kicker, FEATURED
 *   flag. This layer — not effects — is what carries the "AI-native" feel.
 * - THE CHANNEL SELLS QUIETLY: one small text link in the masthead, price
 *   only in the bottom teaser (the Newsworthy end of the CTA spectrum, never
 *   the EIN end).
 * - Everything v3 locked stays locked: weights 400/600 only, accent starved
 *   (CTA/hover/Featured flag), 2px radius, 120ms color hovers, serif deks as
 *   the one cross-channel rhyme, per-row dates, no chips, no day groups.
 *
 * Single-post + newsroom + print sections are carried over from v3 UNCHANGED
 * (the release page layout was explicitly approved) — only the archive
 * furniture (masthead, featured, river) is new.
 */

/* ─── Type ──────────────────────────────────────────────────── */

/* Same family Funding self-hosts, under a plugin-scoped name so the two
   stylesheets can never fight over one @font-face definition. */
@font-face {
    font-family: 'AIPRD Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-tight-400.woff2') format('woff2');
}
@font-face {
    font-family: 'AIPRD Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-tight-600.woff2') format('woff2');
}
/* v4: the metadata layer. One weight — mono emphasis comes from case,
   tracking and color, never from boldness. */
@font-face {
    font-family: 'AIPRD JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-400.woff2') format('woff2');
}

/* ─── Tokens ────────────────────────────────────────────────── */

:root {
    --aiprd-paper: #fdfdfe;
    --aiprd-ink: #0e0e12;
    --aiprd-body: #212127;
    --aiprd-mute: #62626e;
    --aiprd-faint: #9a9aa6;
    --aiprd-line: #e7e7ee;
    --aiprd-line-soft: #efeff4;
    --aiprd-line-strong: #d9d9e3;
    --aiprd-img-bg: #f2f2f5;

    --aiprd-accent: #6c5ce7;
    --aiprd-accent-hover: #5a4bd4;
    --aiprd-accent-tint: #efedfc;

    --aiprd-sans: 'AIPRD Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --aiprd-serif: ui-serif, 'New York', Georgia, 'Times New Roman', serif;
    --aiprd-mono: 'AIPRD JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

/* ─── Shared shell ──────────────────────────────────────────── */

.aiprd-pr {
    font-family: var(--aiprd-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px 72px;
    box-sizing: border-box;
    color: var(--aiprd-ink);
    background: var(--aiprd-paper);
}

.aiprd-pr *,
.aiprd-pr *::before,
.aiprd-pr *::after {
    box-sizing: border-box;
}

/* Defensive resets against theme content styles. :where() keeps specificity
   at (0,1,0) so later single-class component rules win by source order. */
.aiprd-pr :where(h1, h2, h3, p, ol, ul) {
    margin: 0;
    padding: 0;
}
.aiprd-pr a {
    text-decoration: none;
    border: none;
    box-shadow: none;
}
.aiprd-pr img {
    margin: 0;
    max-width: 100%;
    display: block;
}

/* One focus treatment for the whole plugin surface. */
.aiprd-pr a:focus-visible,
.aiprd-pr-identity a:focus-visible,
.aiprd-release-footer a:focus-visible,
.aiprd-newsroom a:focus-visible {
    outline: 2px solid var(--aiprd-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Shared mono microlabel treatment (kicker, company, dates, flags). */
.aiprd-pr-kicker,
.aiprd-pr-rowco,
.aiprd-pr-rowdate,
.aiprd-pr-meta-flag {
    font-family: var(--aiprd-mono);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── Preview notice ────────────────────────────────────────── */

.aiprd-pr-preview-note {
    background: var(--aiprd-accent-tint);
    color: var(--aiprd-accent-hover);
    border: 1px solid var(--aiprd-accent);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    margin: 16px 0 24px;
}

/* ─── Masthead (light — the dark band is dead, do not resurrect) ── */

.aiprd-pr-masthead {
    padding: 56px 0 36px;
    border-bottom: 1px solid var(--aiprd-line-strong);
}
.aiprd-pr-masthead-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}
.aiprd-pr-masthead-text {
    min-width: 0;
}
.aiprd-pr-kicker {
    font-size: 11px;
    color: var(--aiprd-faint);
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}
.aiprd-pr-masthead-h1 {
    font-size: clamp(34px, 4.4vw, 50px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--aiprd-ink);
}
/* Serif dek — the cross-channel rhyme with Funding's masthead dek. */
.aiprd-pr-masthead-dek {
    font-family: var(--aiprd-serif);
    font-size: 17px;
    line-height: 1.6;
    color: var(--aiprd-mute);
    max-width: 560px;
    margin-top: 16px;
}

/* Right column: the channel's only above-the-fold sales moment is ONE quiet
   text link (no price — that lives in the bottom teaser), plus the RSS
   utility. Small, right-aligned, hairline-separated. */
.aiprd-pr-masthead-cta {
    text-align: right;
    flex: 0 0 auto;
}
.aiprd-pr-masthead-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--aiprd-ink);
    transition: color 120ms ease;
}
.aiprd-pr-masthead-link:hover,
.aiprd-pr-masthead-link:focus {
    color: var(--aiprd-accent);
}
.aiprd-pr-util {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}
.aiprd-pr-util li {
    border-top: 1px solid var(--aiprd-line);
    margin: 0;
    padding: 0;
}
.aiprd-pr-util a {
    display: block;
    padding: 10px 0 0;
    font-size: 13px;
    color: var(--aiprd-faint);
    transition: color 120ms ease;
}
.aiprd-pr-util a:hover,
.aiprd-pr-util a:focus {
    color: var(--aiprd-accent);
}

/* ─── Index rows (river + featured share one anatomy) ───────── */

/* "All Releases" header: label, hairline. */
.aiprd-pr-riverhead {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 8px;
}
.aiprd-pr-riverhead-t {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aiprd-faint);
}
.aiprd-pr-riverhead-rule {
    flex: 1;
    height: 1px;
    background: var(--aiprd-line);
}

/* Section header for the newsroom pages. */
.aiprd-pr-day {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aiprd-faint);
    margin: 32px 0 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--aiprd-line);
}
.aiprd-pr-empty {
    font-size: 15px;
    color: var(--aiprd-mute);
    padding: 24px 0;
}

/* Row anatomy: [ mono date column | main ]. No thumbnails since v4 —
   client-supplied art is uneven, and the registry reads by text. The date
   column gives every row the same left reading edge; the date is stacked
   (MMM D / YYYY) so the column stays narrow. */
.aiprd-pr-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--aiprd-line-soft);
}
.aiprd-pr-rowdate {
    font-size: 11px;
    line-height: 1.6;
    color: var(--aiprd-faint);
    padding-top: 3px;
}
.aiprd-pr-rowdate .aiprd-pr-rowdate-y {
    display: block;
    color: var(--aiprd-faint);
    opacity: 0.75;
}
.aiprd-pr-rowmain {
    min-width: 0;
}
.aiprd-pr-rowmeta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 14px;
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.4;
}
.aiprd-pr-rowco {
    color: var(--aiprd-mute);
}
/* The one meta element that keeps the accent: it marks a paid placement. */
.aiprd-pr-meta-flag {
    font-size: 11px;
    color: var(--aiprd-accent);
}
.aiprd-pr-headline {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.aiprd-pr-headline a {
    color: var(--aiprd-ink);
    transition: color 120ms ease;
}
.aiprd-pr-rowx {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: var(--aiprd-mute);
    margin-top: 8px;
}

/* Paid Featured emphasis: accent left bar + mono flag + a step up in size.
   Inline in the index (the EIN pattern) — never a separate photo-hero zone,
   and NEVER backfilled with non-paying releases. */
.aiprd-pr-row--featured {
    border-left: 2px solid var(--aiprd-accent);
    padding-left: 20px;
    margin-left: -22px;
}
.aiprd-pr-row--featured .aiprd-pr-headline {
    font-size: 24px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}
.aiprd-pr-row--featured .aiprd-pr-rowx {
    font-size: 15px;
}

/* ─── Hover: one language, 120ms color to accent (matches Funding) ── */

.aiprd-pr-headline a:hover,
.aiprd-pr-headline a:focus-visible {
    color: var(--aiprd-accent);
}

/* ─── Newsroom leftovers used by AIPRD_Newsroom ─────────────── */

.aiprd-pr-bar {
    width: 32px;
    height: 2px;
    background: var(--aiprd-accent);
    margin-bottom: 16px;
}
.aiprd-pr-h1 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--aiprd-ink);
}
.aiprd-pr-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aiprd-accent);
    background: var(--aiprd-accent-tint);
    padding: 3px 8px;
    border-radius: 2px;
    line-height: 1.4;
}

/* ─── Teaser (bottom CTA — the only place a price appears) ──── */

.aiprd-pr-teaser {
    margin-top: 72px;
    border-top: 1px solid var(--aiprd-line);
    padding-top: 24px;
}
.aiprd-pr-teaser-copy {
    font-size: 15px;
    line-height: 1.6;
    color: var(--aiprd-mute);
    margin-bottom: 16px;
    max-width: 560px;
}
.aiprd-pr-cta {
    display: inline-block;
    background: var(--aiprd-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.005em;
    padding: 14px 22px;
    border-radius: 2px;
    white-space: nowrap;
    transition: background-color 120ms ease;
}
.aiprd-pr-cta:hover,
.aiprd-pr-cta:focus {
    background: var(--aiprd-accent-hover);
    color: #fff;
}

/* ─── Pagination ────────────────────────────────────────────── */

/* paginate_links(type=list) emits <ul class="page-numbers"> — the container
   carries the same class as the items; scoping to `li >` keeps the pill
   styling off the list itself. */
.aiprd-pr-pagination {
    margin-top: 40px;
}
.aiprd-pr-pagination ul.page-numbers,
.aiprd-pr-pagination ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}
.aiprd-pr-pagination li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aiprd-pr-pagination li > .page-numbers {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--aiprd-ink);
    border: 1px solid var(--aiprd-line);
    border-radius: 2px;
    padding: 9px 13px;
    line-height: 1;
    background: var(--aiprd-paper);
    transition: color 120ms ease, border-color 120ms ease;
}
.aiprd-pr-pagination li > a.page-numbers:hover,
.aiprd-pr-pagination li > a.page-numbers:focus-visible {
    border-color: var(--aiprd-accent);
    color: var(--aiprd-accent);
}
.aiprd-pr-pagination li > .page-numbers.current {
    background: var(--aiprd-ink);
    border-color: var(--aiprd-ink);
    color: var(--aiprd-paper);
}
.aiprd-pr-pagination li > .page-numbers.dots {
    border-color: transparent;
    background: none;
    color: var(--aiprd-faint);
}

/* ─── Single-post microlabel (top) + disclaimer (bottom) ────── */

/* Deliberately quiet: no background, no border — quieter than the post's
   own meta line. The responsibility copy lives in the bottom disclaimer.
   The v2 decision stands: never resurrect the top disclosure box. */
.aiprd-pr-microlabel {
    font-family: var(--aiprd-sans);
    font-size: 12px;
    line-height: 1.5;
    color: var(--aiprd-faint);
    margin: 0 0 20px;
}
.aiprd-pr-microlabel-tag {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.aiprd-pr-disclaimer {
    font-family: var(--aiprd-sans);
    font-size: 12px;
    line-height: 1.6;
    color: var(--aiprd-faint);
    border-top: 1px solid var(--aiprd-line);
    padding-top: 14px;
    margin: 32px 0 0;
    max-width: 680px;
}

/* ─── Single-post publisher identity block ─────────────────── */

.aiprd-pr-identity {
    font-family: var(--aiprd-sans);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 680px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--aiprd-line);
    margin: 0 0 24px;
}
.aiprd-pr-identity-logo {
    flex: 0 0 48px;
    display: block;
}
.aiprd-pr-identity-logo img,
img.aiprd-pr-identity-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border: 1px solid var(--aiprd-line);
    border-radius: 2px;
    background: #fff;
    display: block;
    margin: 0;
}
.aiprd-pr-identity-text {
    min-width: 0;
}
.aiprd-pr-identity-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--aiprd-ink);
    text-decoration: none;
    transition: color 120ms ease;
}
a.aiprd-pr-identity-name:hover,
a.aiprd-pr-identity-name:focus-visible {
    color: var(--aiprd-accent);
}
.aiprd-pr-identity-line {
    font-size: 13px;
    color: var(--aiprd-faint);
    margin: 3px 0 0;
}

/* ─── Single-post dek + body measure ───────────────────────── */

/* Serif dek: same rhyme as the masthead dek and Funding's. The body below
   deliberately keeps the theme's own font — a press release should read
   like every other article on the site. */
.aiprd-pr-deksub {
    font-family: var(--aiprd-serif);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--aiprd-mute);
    max-width: 680px;
    margin: 0 0 28px;
}
.aiprd-pr-body {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.7;
}
.aiprd-pr-body p,
.aiprd-pr-body li {
    font-size: 17px;
    line-height: 1.7;
}

/* Wire dateline, opening the body: "SAN FRANCISCO, August 28, 2026
   /AIPressRoom/ --". AIPRD_Publisher writes it into post_content as a bare
   <strong> at publish time, so it is targeted structurally rather than by
   class — that way every ALREADY-published release picks the styling up
   too (their post_content is frozen and carries no class to hook).

   It stays in the body's own face: this is the one element every newswire
   keeps verbatim through every redesign (Business Wire carried its 40-year-
   old form untouched through a ground-up 2025 rebuild), so it reads as part
   of the release, never as plugin chrome. */
.aiprd-pr-body > p:first-child > strong:first-child {
    color: var(--aiprd-ink);
    letter-spacing: 0.005em;
}

/* ─── Single-post structured footer ────────────────────────── */

.aiprd-release-footer {
    font-family: var(--aiprd-sans);
    max-width: 680px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--aiprd-line);
}
.aiprd-release-footer-heading {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--aiprd-ink);
    margin: 0 0 8px;
}
.aiprd-release-boilerplate {
    font-size: 15px;
    line-height: 1.65;
    color: var(--aiprd-body);
    margin: 0 0 16px;
}
.aiprd-media-contact {
    border: 1px solid var(--aiprd-line);
    border-radius: 2px;
    overflow: hidden;
    margin: 24px 0 0;
}
.aiprd-media-contact-head {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafafb;
    border-bottom: 1px solid var(--aiprd-line);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aiprd-faint);
}
.aiprd-media-contact-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    margin: 0;
    flex: 0 0 20px;
}
.aiprd-media-contact-row {
    display: flex;
    gap: 16px;
    padding: 11px 16px;
}
.aiprd-media-contact-row + .aiprd-media-contact-row {
    border-top: 1px solid var(--aiprd-line-soft);
}
.aiprd-media-contact-lab {
    flex: 0 0 88px;
    font-size: 13px;
    color: var(--aiprd-faint);
}
.aiprd-media-contact-val {
    font-size: 14px;
    color: var(--aiprd-ink);
    overflow-wrap: anywhere;
}
.aiprd-media-contact-val a {
    color: var(--aiprd-accent);
    text-decoration: none;
    transition: color 120ms ease;
}
.aiprd-media-contact-val a:hover,
.aiprd-media-contact-val a:focus-visible {
    color: var(--aiprd-accent-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.aiprd-newsroom-link {
    margin: 20px 0 0;
}
.aiprd-newsroom-link a {
    font-size: 14px;
    font-weight: 600;
    color: var(--aiprd-accent);
    text-decoration: none;
    transition: color 120ms ease;
}
.aiprd-newsroom-link a:hover,
.aiprd-newsroom-link a:focus-visible {
    color: var(--aiprd-accent-hover);
}

/* ─── Newsroom pages ────────────────────────────────────────── */

.aiprd-newsroom .aiprd-newsroom-head {
    margin: 32px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--aiprd-line);
}
.aiprd-newsroom-head-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.aiprd-newsroom-logo {
    flex: 0 0 88px;
    border: 1px solid var(--aiprd-line);
    border-radius: 2px;
    padding: 8px;
    background: #fff;
}
.aiprd-newsroom-logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}
.aiprd-newsroom-head-text {
    flex: 1 1 auto;
    min-width: 0;
}
.aiprd-newsroom-head-text .aiprd-pr-h1 {
    margin-top: 8px;
}
.aiprd-newsroom-url {
    margin-top: 8px;
    font-size: 14px;
}
.aiprd-newsroom-url a {
    color: var(--aiprd-mute);
    text-decoration: underline;
    text-decoration-color: var(--aiprd-line);
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    transition: color 120ms ease;
}
.aiprd-newsroom-url a:hover,
.aiprd-newsroom-url a:focus-visible {
    color: var(--aiprd-accent);
}
.aiprd-newsroom-boilerplate {
    font-family: var(--aiprd-serif);
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--aiprd-mute);
    max-width: 680px;
}

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 900px) {
    .aiprd-pr-masthead {
        padding: 44px 0 32px;
    }
    .aiprd-pr-masthead-inner {
        gap: 32px;
    }
    .aiprd-pr-riverhead {
        margin-top: 40px;
    }
    .aiprd-pr-row {
        gap: 20px;
    }
    .aiprd-pr-row--featured .aiprd-pr-headline {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .aiprd-pr {
        padding: 0 16px 56px;
    }
    .aiprd-pr-masthead {
        padding: 32px 0 24px;
    }
    .aiprd-pr-masthead-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .aiprd-pr-masthead-dek {
        font-size: 16px;
    }
    .aiprd-pr-masthead-cta {
        text-align: left;
    }
    .aiprd-pr-riverhead {
        margin: 32px 0 4px;
    }
    /* Date joins the meta row on one line — a 76px column is too dear on a
       small screen. */
    .aiprd-pr-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: 18px 0;
    }
    .aiprd-pr-rowdate {
        padding-top: 0;
        order: -1;
        margin-bottom: 4px;
    }
    .aiprd-pr-rowdate .aiprd-pr-rowdate-y {
        display: inline;
        opacity: 1;
    }
    .aiprd-pr-rowdate .aiprd-pr-rowdate-y::before {
        content: "\00a0";
    }
    .aiprd-pr-row--featured {
        padding-left: 14px;
        margin-left: -16px;
    }
    .aiprd-pr-row--featured .aiprd-pr-headline {
        font-size: 20px;
    }
    .aiprd-pr-headline {
        font-size: 17px;
    }
    .aiprd-pr-rowx {
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    .aiprd-pr-teaser {
        margin-top: 48px;
    }
    .aiprd-pr-deksub {
        font-size: 18px;
    }
    .aiprd-media-contact-row {
        flex-direction: column;
        gap: 2px;
    }
    .aiprd-media-contact-lab {
        flex-basis: auto;
    }
}

@media (max-width: 720px) {
    .aiprd-newsroom-head-row {
        flex-direction: column;
    }
    .aiprd-newsroom-logo {
        flex-basis: auto;
        width: 88px;
    }
}

/* ─── Print ─────────────────────────────────────────────────── */

/* A release that prints cleanly is a cheap, real "of record" signal — the
   legacy wires all surface Print/PDF actions for exactly this reason. Only
   the plugin's own blocks are addressed; the theme owns the rest of the page. */
@media print {
    .aiprd-pr-identity,
    .aiprd-pr-deksub,
    .aiprd-pr-body,
    .aiprd-release-footer,
    .aiprd-pr-disclaimer,
    .aiprd-pr-microlabel {
        max-width: none;
        color: #000;
    }
    .aiprd-pr-identity {
        border-bottom: 1px solid #999;
        break-after: avoid;
    }
    .aiprd-pr-body p,
    .aiprd-pr-body li {
        font-size: 11pt;
        line-height: 1.5;
        orphans: 3;
        widows: 3;
    }
    /* Expose destinations that a printed page would otherwise swallow. */
    .aiprd-pr-body a::after,
    .aiprd-media-contact-val a::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        word-break: break-all;
    }
    .aiprd-media-contact,
    .aiprd-release-footer {
        break-inside: avoid;
        border-color: #999;
    }
    .aiprd-media-contact-head {
        background: none;
        border-bottom: 1px solid #999;
    }
    .aiprd-media-contact-val a,
    .aiprd-newsroom-link a {
        color: #000;
    }
    /* Channel furniture never belongs on paper. */
    .aiprd-pr-masthead,
    .aiprd-pr-teaser,
    .aiprd-pr-pagination,
    .aiprd-pr-preview-note,
    .aiprd-pr-util,
    .aiprd-newsroom-link {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aiprd-pr *,
    .aiprd-pr-identity *,
    .aiprd-release-footer *,
    .aiprd-newsroom * {
        transition: none !important;
        animation: none !important;
    }
}
