/* IB Dudek – globale Seitennavigation */
.ibd-home-button{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:0 16px;
  background:#26303e;
  color:#f7f5f1;
  border:1px solid rgba(185,170,145,.55);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  font-family:"Arial Narrow","Roboto Condensed",Arial,sans-serif;
  font-size:14px;
  font-weight:400;
  letter-spacing:.2px;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.ibd-home-button::before{
  content:"↑";
  color:#c9b99e;
  font-size:18px;
  line-height:1;
}
.ibd-home-button:hover{
  transform:translateY(-2px);
  background:#202936;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
}
.ibd-home-button:focus-visible{
  outline:2px solid #c9b99e;
  outline-offset:3px;
}
@media(max-width:640px){
  .ibd-home-button{
    right:14px;
    bottom:14px;
    min-height:42px;
    padding:0 13px;
    font-size:13px;
  }
}
