/* Cookie banner. Analytics starts denied in the Consent Mode block at the top
   of every page; this is the surface that grants it. Own file rather than the
   inline <style> blocks these pages carry, because it is shared by four of
   them and duplicating it four ways is how the four drift apart. */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 300;
  max-width: 380px;
  margin-left: auto;
  padding: 20px;
  background: var(--surface, #171D2B);
  border: 1px solid var(--outline, #232936);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  font-family: var(--sans, system-ui, sans-serif);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  margin: 0 0 14px;
  color: var(--text-muted, #7D7F83);
  font-size: 14px;
  line-height: 1.55;
}
.cookie-banner a { color: var(--primary, #88D5D3); }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner-actions button {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-accept {
  border: 0;
  background: var(--primary, #88D5D3);
  color: var(--on-primary, #0B1120);
}
.cookie-decline {
  border: 1px solid var(--outline, #232936);
  background: none;
  color: var(--text, #F0ECE6);
}
/* Sits in .footer-bottom .legal, whose rule only reaches anchors, so the
   spacing and colour that rule gives its siblings are repeated here. */
.footer-bottom .legal .cookie-reopen {
  margin-left: 18px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--text-muted, #7D7F83);
  cursor: pointer;
  text-decoration: underline;
}
.footer-bottom .legal .cookie-reopen:hover { color: var(--text, #F0ECE6); }
@media (max-width: 560px) { .cookie-banner { max-width: none; } }
