/* SzabadosArt — cookie-consent banner (Barion Pixel kapuzás). Sötét walnut/ochre téma. */
#sa-consent{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:9999;
  display:flex; flex-wrap:wrap; align-items:center; gap:16px 24px;
  max-width:920px; margin:0 auto; padding:18px 22px;
  background:var(--walnut,#2b2320); color:rgba(255,255,255,.9);
  border:1px solid var(--line,rgba(255,255,255,.14)); border-radius:8px;
  box-shadow:0 12px 40px rgba(0,0,0,.38);
  font-family:inherit; font-size:14px; line-height:1.6;
}
#sa-consent .sa-consent__text{ flex:1 1 320px; min-width:240px; }
#sa-consent a{ color:var(--ochre,#d6a45a); text-decoration:underline; }
#sa-consent .sa-consent__btns{ display:flex; flex-wrap:wrap; gap:10px; flex:0 0 auto; }
.sa-consent__btn{
  cursor:pointer; border-radius:4px; padding:10px 22px;
  font:inherit; font-weight:600; line-height:1;
  border:1px solid var(--line,rgba(255,255,255,.22)); transition:opacity .2s ease;
}
.sa-consent__btn--ghost{ background:transparent; color:rgba(255,255,255,.85); }
.sa-consent__btn--accept{ background:var(--ochre,#d6a45a); color:#241c17; border-color:var(--ochre,#d6a45a); }
.sa-consent__btn:hover{ opacity:.85; }
@media (max-width:560px){
  #sa-consent{ flex-direction:column; align-items:stretch; left:10px; right:10px; bottom:10px; padding:16px 18px; }
  #sa-consent .sa-consent__btns{ justify-content:flex-end; }
}
