/* Cookie consent banner + small helpers */
.cc-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:120;
  padding:1rem;
  background:rgba(255,255,255,.98);
  border-top:1px solid rgba(15,23,42,.12);
  box-shadow:0 -10px 30px rgba(15,23,42,.12);
}
.cc-banner .cc-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:1rem;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cc-banner .cc-text{flex:1; min-width:260px;}
.cc-banner .cc-actions{display:flex; gap:.6rem; flex-wrap:wrap; align-items:center;}
.cc-banner .cc-actions .btn{white-space:nowrap;}
.cc-banner .cc-links{display:flex; gap:.8rem; flex-wrap:wrap; margin-top:.35rem;}
.cc-banner .cc-links a{font-size:.9rem;}
