/* pressrelease.css — Beacon press release subpage
   Layered on top of home5.css: it relies on the same design tokens
   (--h5-*), nav, footer, buttons, eyebrow and dot-bg. Only the
   document typography lives here: a narrow centered column with a
   press hero, body copy, quiet inline quotes and a contact line.    */

/* Narrow centered reading column. Centering comes from .h5-container's
   own `margin: 0 auto`; this just tightens the max-width for the
   press hero + article (nav and footer keep the full-width container).
   35% reads well on a wide 16:9 screen, but a viewport-relative width
   collapses on small screens — so widen it at each breakpoint until it
   spans the full container (minus its gutters) on phones. */
.h5-pr-container { max-width: 35%; }
@media (max-width: 1280px) { .h5-pr-container { max-width: 48%; } }
@media (max-width: 1024px) { .h5-pr-container { max-width: 66%; } }
@media (max-width: 768px)  { .h5-pr-container { max-width: 100%; } }

/* ─────────── PRESS HERO ─────────── */
.h5-pr-hero {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.h5-pr-hero .h5-eyebrow { margin-bottom: 1.75rem; }

.h5-pr-title {
    font-family: var(--h5-font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--h5-white);
    margin: 0 0 1.5rem;
}

.h5-pr-date {
    font-family: var(--h5-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--h5-dim);
    margin: 0 0 1.5rem;
}

/* Lead matches body copy — the release is short, so no oversized intro. */
.h5-pr-lead {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--h5-mid);
    font-weight: 400;
    margin: 0;
}

/* ─────────── ARTICLE ───────────
   One title, plain subheadings, quiet inline quotes. */
.h5-pr-article {
    position: relative;
    z-index: 1;
    padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 clamp(3rem, 6vw, 5rem);
}

.h5-pr-section { margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }

.h5-pr-heading {
    font-family: var(--h5-font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--h5-white);
    margin: 0 0 1.1rem;
}

.h5-pr-article p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--h5-mid);
    margin: 0 0 1.25rem;
}
.h5-pr-article p:last-child { margin-bottom: 0; }

/* ─────────── INLINE QUOTE — quiet, document-style ─────────── */
.h5-pr-quote {
    margin: 1.5rem 0;
    padding: 0.15rem 0 0.15rem 1.25rem;
    border-left: 2px solid var(--h5-yellow);
}
.h5-pr-quote blockquote {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--h5-white);
    font-style: italic;
}
.h5-pr-quote figcaption {
    font-family: var(--h5-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--h5-dim);
}

/* ─────────── CONTACT BOILERPLATE ─────────── */
.h5-pr-contact {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: clamp(1.75rem, 3vw, 2.25rem);
    border-top: 1px solid var(--h5-border);
}
.h5-pr-contact-heading {
    font-family: var(--h5-font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--h5-yellow);
    margin: 0 0 1.1rem;
}
.h5-pr-contact-list { margin: 0; }
.h5-pr-contact-row {
    display: flex;
    gap: 1rem;
    padding: 0.4rem 0;
    align-items: baseline;
}
.h5-pr-contact-row dt {
    font-family: var(--h5-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--h5-dim);
    flex: 0 0 9rem;
}
.h5-pr-contact-row dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--h5-white);
}
.h5-pr-contact-row a {
    color: var(--h5-yellow);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,186,83,0.4);
}
.h5-pr-contact-row a:hover { color: var(--h5-orange); border-color: var(--h5-orange); }

@media (max-width: 640px) {
    .h5-pr-contact-row { flex-direction: column; gap: 0.15rem; }
    .h5-pr-contact-row dt { flex-basis: auto; }
}
