/* ============================================================
   Cookie banner — 152-FZ notice
   Non-blocking bottom bar, dismiss writes a 1-year cookie.
   See the inline script next to #cookie-banner in
   v2/layout/base.html for the show/dismiss logic.
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--navy-deep);
  border-top: 1px solid var(--ink);
  box-shadow: 0 -8px 28px rgba(10,31,68,0.18);
}
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(234,240,251,0.85);
}
.cookie-banner-link {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: #fff; }

.cookie-banner-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 2px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}
.cookie-banner-close:hover { background: var(--blue-bright); }

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner-close { align-self: flex-end; }
}
