/**
 * @file
 * Server-rendered privacy footer links.
 *
 * These three links (Privacy Policy, Accessibility, Do Not Sell or Share My
 * Personal Information) used to be injected by a GTM Custom HTML tag. GTM is
 * gated behind Klaro consent, so a reader who declined lost the "Do Not Sell
 * or Share" link — the very link they need to exercise the CCPA opt-out. They
 * are now rendered server-side by etype so they appear for everyone,
 * regardless of consent, JavaScript or ad blockers.
 */

.etype-privacy-links {
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid #e5e5e5;
  background: #f7f7f7;
  position: relative;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.etype-privacy-links__link {
  display: inline-block;
  padding: 6px 10px;
  color: #555;
  text-decoration: underline;
}

.etype-privacy-links__link:hover,
.etype-privacy-links__link:focus {
  color: #222;
}

.etype-privacy-links__sep {
  color: #aaa;
  margin: 0 2px;
}

/**
 * Suppress the GTM-injected copy during the transition.
 *
 * This stylesheet is attached to the server-rendered element, so it only loads
 * when that element is present. If the server-rendered links ever fail to
 * render, this rule is not loaded either and the GTM copy still shows for
 * readers who accepted — the failure mode degrades rather than going blank.
 *
 * Remove this rule once the "eType Privacy Footer Link" tag is retired from
 * the GTM container.
 */
.etype-privacy-footer {
  display: none !important;
}
