/* Cookie consent banner — item (c) phase 1. Analytics-only, strict Consent Mode v2.
   Tokens come from base.css :root; fallbacks keep it safe if loaded standalone. */

.bp-consent{
  position:fixed;left:0;right:0;bottom:0;z-index:9999;
  background:var(--navy,#001C2C);color:var(--white,#fff);
  box-shadow:0 -2px 20px rgba(0,28,44,.28);
  padding:18px 20px;
  display:flex;flex-wrap:wrap;align-items:center;gap:14px 24px;
  font-family:var(--body,'Source Sans 3','Source Sans Pro',Arial,sans-serif);
  font-size:15px;line-height:1.5;
}
.bp-consent[hidden]{display:none}

.bp-consent__text{flex:1 1 460px;min-width:260px;color:rgba(255,255,255,.88)}
.bp-consent__text strong{display:block;color:#fff;font-weight:700;margin-bottom:4px;font-size:15.5px}
.bp-consent__text a{color:var(--cyan,#64DFFF);text-decoration:underline}

.bp-consent__actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center}

.bp-consent__btn{
  font-family:inherit;font-weight:700;font-size:15px;
  border-radius:999px;padding:11px 26px;cursor:pointer;
  border:2px solid transparent;transition:background .15s ease,color .15s ease;
}
.bp-consent__btn--accept{background:var(--cyan,#64DFFF);color:var(--navy,#001C2C)}
.bp-consent__btn--accept:hover{background:#8be9ff}
.bp-consent__btn--decline{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.bp-consent__btn--decline:hover{background:rgba(255,255,255,.12)}
.bp-consent__btn:focus-visible{outline:3px solid var(--cyan,#64DFFF);outline-offset:2px}

@media(max-width:640px){
  .bp-consent{padding:16px}
  .bp-consent__actions{width:100%}
  .bp-consent__btn{flex:1 1 auto;text-align:center}
}
