/* v0.10.56-test – ONE global site-header transition for the whole frontend.
   The white/transparent frozen strip belongs to the site header, never to an individual page.
   Individual PLB pages must not create their own fade or reserve layout space for it. */
:root{
  --plb-global-header-bottom:70px;
  --plb-global-header-fade-height:68px;
}
.plb-site-header-fade{
  position:fixed!important;
  top:var(--plb-global-header-bottom)!important;
  right:0!important;
  left:0!important;
  width:100vw!important;
  height:var(--plb-global-header-fade-height)!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  pointer-events:none!important;
  z-index:9980!important;
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.90) 25%,
    rgba(255,255,255,.62) 52%,
    rgba(255,255,255,.28) 76%,
    rgba(255,255,255,0) 100%
  )!important;
  -webkit-backdrop-filter:blur(5px)!important;
  backdrop-filter:blur(5px)!important;
}
@media(max-width:767px){
  :root{--plb-global-header-fade-height:62px}
}
@media(prefers-reduced-transparency:reduce){
  .plb-site-header-fade{
    -webkit-backdrop-filter:none!important;
    backdrop-filter:none!important;
  }
}
