/* FSG Consent-Banner */
#fsg-consent{
  position:fixed; left:0; right:0; bottom:0; z-index:99999;
  background:#13201a; color:#eef2ea;
  box-shadow:0 -6px 24px rgba(0,0,0,.25);
  font-family:-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
#fsg-consent .fsg-consent-inner{
  max-width:1000px; margin:0 auto; padding:16px 18px;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
#fsg-consent .fsg-consent-text{
  margin:0; flex:1 1 320px; font-size:13.5px; line-height:1.5; color:#cdd8c8;
}
#fsg-consent .fsg-consent-text a{ color:#86bc25; text-decoration:underline; }
#fsg-consent .fsg-consent-btns{ display:flex; gap:10px; flex:0 0 auto; }
#fsg-consent .fsg-btn{
  border:0; border-radius:9px; padding:11px 18px; font-size:14px; font-weight:700;
  cursor:pointer; font-family:inherit;
}
#fsg-consent .fsg-btn-accept{ background:#86bc25; color:#13201a; }
#fsg-consent .fsg-btn-accept:hover{ background:#79ab1f; }
#fsg-consent .fsg-btn-deny{ background:transparent; color:#cdd8c8; border:1px solid #3a463d; }
#fsg-consent .fsg-btn-deny:hover{ border-color:#5a6b56; color:#fff; }
@media(max-width:560px){
  #fsg-consent .fsg-consent-inner{ padding:14px; gap:12px; }
  #fsg-consent .fsg-consent-btns{ width:100%; }
  #fsg-consent .fsg-btn{ flex:1; }
}
