/* ---- ra-rnews v1 (2026-09-24) -------------------------------------------
   The newsroom rail: a slim strip above each page's closing CTA linking the
   Regulatory News beats that match the page. Injected by
   _internal/inject-rnews.py; re-run it after adopting engine output, because
   a `cp dist/*.html` drops injected layers.

   Self-contained by design. Every Academy page carries its own inline CSS and
   its own :root, so this block reads the page's tokens but names a fallback
   for each one — it must render correctly on a page whose tokens are missing
   or renamed, and it must never restyle anything outside .ra-rnews.
   Type follows the estate rule: heavy system sans, 800 / -0.03em on the
   heading, no serif anywhere.
--------------------------------------------------------------------------- */
.ra-rnews {
  padding: 60px 0;
  background: var(--bg-soft, #f7f9fc);
  border-top: 1px solid var(--border, #e2e8f0);
}
.ra-rnews__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 30px 60px;
  align-items: start;
}
.ra-rnews__eyebrow {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #ff7900);
}
.ra-rnews__title {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy, #0e2332);
}
.ra-rnews__lede {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-muted, #4a5568);
}
.ra-rnews__lede a {
  color: var(--accent, #ff7900);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.ra-rnews__lede a:hover,
.ra-rnews__lede a:focus-visible { text-decoration: underline; }

.ra-rnews__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}
.ra-rnews__link {
  display: block;
  padding: 12px 15px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ra-rnews__link:hover,
.ra-rnews__link:focus-visible {
  border-color: var(--accent, #ff7900);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 35, 50, 0.10);
}
.ra-rnews__beat {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy, #0e2332);
}
.ra-rnews__what {
  display: block;
  margin-top: 3px;
  font-size: 12.8px;
  line-height: 1.45;
  color: var(--text-muted, #4a5568);
}

@media (max-width: 1080px) {
  .ra-rnews__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .ra-rnews { padding: 44px 0; }
  .ra-rnews__inner { padding: 0 20px; }
  .ra-rnews__list { grid-template-columns: 1fr; gap: 9px; }
  .ra-rnews__title { font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
  .ra-rnews__link { transition: none; }
  .ra-rnews__link:hover, .ra-rnews__link:focus-visible { transform: none; }
}
/* ---- /ra-rnews ---- */
