/* s130 b00 — Shared cookie banner CSS. Used by /enroll + /dsr (and any
 * future public page needing the GDPR/ePrivacy banner). Self-contained:
 * no CSS variable dependencies so it renders identically regardless of
 * which palette the host page uses. Banner only shows when localStorage
 * 'stm_cookie_choice' is unset; the inline script in each page handles
 * the show/hide + acceptance logic.
 * Colors mirror the Editorial Linen palette (s129 b11) used on /landing.
 */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  z-index: 1000;
  padding: 16px 20px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1 1 400px;
  margin: 0;
  line-height: 1.45;
  color: #fff;
}
.cookie-banner-text a { color: #d4a437; text-decoration: underline; }
.cookie-banner-text strong { color: #d4a437; font-weight: 600; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.cookie-btn-accept { background: #b8412c; color: #fff; border-color: #b8412c; }
.cookie-btn-accept:hover { background: #8e3522; }
.cookie-btn-link { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); display: inline-block; }
.cookie-btn-link:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
