/*
 * Editorial highlight contrast
 * Light surfaces use the restrained olive; dark surfaces use the button lime.
 */
main :is(h1, h2, h3) em {
  color: var(--accent-deep);
}

main :is(
  .blog-hero,
  .section-dark,
  .section-green,
  .atlas,
  .site-footer,
  [data-theme="dark"]
) :is(h1, h2, h3) em,
main .radar-entry-wrap :is(.hero, .radar-hero) :is(h1, h2, h3) em {
  color: var(--accent);
}

/* Text on black or dark-green surfaces must remain fully readable. */
main :is(
  .blog-hero,
  .section-dark,
  .section-green,
  .atlas,
  [data-theme="dark"]
) :is(p:not(.eyebrow), li, small, figcaption),
main .radar-entry-wrap :is(.hero, .radar-hero) :is(p:not(.eyebrow), li, small, figcaption),
.site-footer :is(p, li, small, figcaption) {
  color: var(--white) !important;
}

/* Preserve the shared page grid when an editorial list also uses .shell. */
@media (width > 960px) {
  main .shell.editorial-list {
    margin-inline: auto;
  }
}
