.consent-banner{
  position:fixed;
  z-index:1000;
  right:20px;
  bottom:20px;
  left:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  width:min(1120px,calc(100% - 40px));
  margin:auto;
  padding:20px 22px;
  color:#fff;
  background:#11142b;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  box-shadow:0 24px 70px rgba(17,20,43,.32);
  font-family:"DM Sans",sans-serif;
}
.consent-banner p{
  max-width:760px;
  margin:0;
  color:#e2e4ef;
  font-size:14px;
  line-height:1.55;
}
.consent-actions{display:flex;flex:0 0 auto;gap:10px}
.consent-button{
  min-width:110px;
  padding:11px 17px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  color:#fff;
  background:transparent;
  cursor:pointer;
  font:700 14px/1.2 "DM Sans",sans-serif;
}
.consent-button:hover,.consent-button:focus-visible{border-color:#fff;outline:2px solid transparent}
.consent-button--accept{border-color:#d9ff43;color:#11142b;background:#d9ff43}
.consent-button--accept:hover,.consent-button--accept:focus-visible{border-color:#efffae;background:#efffae}
@media(max-width:720px){
  .consent-banner{right:14px;bottom:14px;left:14px;display:block;width:auto;padding:18px;border-radius:17px}
  .consent-actions{margin-top:15px}
  .consent-button{flex:1;min-width:0}
}
