/* ── Announcement article layout ──────────────────────────────────────────
   Shared by every page under /news/announcements/. This was copy-pasted into
   each article's own <style> block, which meant the next announcement would
   have copied it a third time and the three would have drifted apart one edit
   at a time — the same way the footer did. One owner, linked after site.css so
   the cascade order is unchanged; anything genuinely per-article still lives in
   that article's inline <style>, which comes after this file.
   ------------------------------------------------------------------------ */

.article-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-weight: 700;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--c-section);
    margin: 0 0 22px;
  }
.article-eyebrow .sep { color: var(--text-mute); font-weight: 500; }
.article-title {
    font-family: var(--font-sans); font-weight: 800;
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: -0.04em; line-height: 1.04;
    color: var(--text); margin: 0 0 24px;
  }
.article-meta {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    align-items: center;
    font-family: var(--font-mono); font-weight: 500;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-mute);
    margin: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-soft);
  }
.article-meta .dot { color: var(--text-mute); }
.article-meta time { color: var(--text-dim); }
.article-body p {
    font-size: clamp(17px, 1.85vw, 19px); line-height: 1.7;
    color: var(--text); letter-spacing: -0.008em;
    margin: 0 0 24px;
    font-weight: 400;
  }
.article-body a {
    color: var(--text); text-decoration: none;
    border-bottom: 1px solid var(--line-soft);
    transition: border-color 160ms ease;
  }
.article-body a:hover { border-bottom-color: var(--text); }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body em { font-style: italic; color: var(--text); }
.article-body h2 {
    font-family: var(--font-sans); font-weight: 700;
    font-size: clamp(24px, 2.8vw, 32px);
    letter-spacing: -0.03em; line-height: 1.15;
    color: var(--text);
    margin: 64px 0 28px;
    padding-top: 36px;
    border-top: 1px solid var(--line-soft);
  }
.article-notes {
    margin-bottom: 40px;
    font-family: var(--font-sans);
  }
.article-notes .notes-label {
    display: inline-block;
    font-family: var(--font-mono); font-weight: 700;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 14px;
  }
.article-notes p {
    font-size: 15px; line-height: 1.6;
    color: var(--text-dim); letter-spacing: -0.005em;
    margin: 0 0 8px;
  }
.article-notes a {
    color: var(--text); text-decoration: none;
    border-bottom: 1px solid var(--line-soft);
    transition: border-color 160ms ease;
  }
.article-notes a:hover { border-bottom-color: var(--text); }
.article-share {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 40px;
  }
.share-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500;
    font-size: 13px; letter-spacing: -0.005em;
    color: var(--text-dim);
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease;
  }
.share-link:hover { border-color: var(--c-cat); color: var(--text); }
.share-link svg { width: 12px; height: 12px; }
.article-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
  }
.article-nav a {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px 20px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    text-decoration: none; color: inherit;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  }
.article-nav a:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-1px);
  }
.article-nav .nav-label {
    font-family: var(--font-mono); font-weight: 600;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-mute);
  }
.article-nav .nav-title {
    font-family: var(--font-sans); font-weight: 600;
    font-size: 15px; letter-spacing: -0.012em;
    color: var(--text);
  }
.article-nav .right { text-align: right; }
