/* Match the editorial labels and page wordmark to the header blue. */
html body .newsroom-home .section-label,
html body .article-header .page-brand-label {
  color: var(--masthead, #2475e8);
}

/* Stay in the loop: blue button with white text in light mode. */
html[data-theme="light"] body .spotlight-column .subscribe-panel a {
  background: var(--masthead, #2475e8);
  border-color: var(--masthead, #2475e8);
  color: #fff;
}

html[data-theme="light"] body .spotlight-column .subscribe-panel a:hover {
  background: var(--masthead, #2475e8);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(36, 117, 232, .2);
}
/* Footer headings match the header in both themes. */
html[data-theme] body .site-footer .footer-label {
  color: var(--masthead, #2475e8);
}

/* A short accent beneath each heading, rather than a full-width rule. */
html[data-theme] body .site-footer .footer-label::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
  background: currentColor;
}
