.lpr-master-header{
  position:relative;
  width:100%;
  background:#fff;
  overflow:hidden;
  line-height:0;
  border-bottom:1px solid #e8e8e8;
}
.lpr-master-header>img{
  display:block;
  width:100%;
  height:auto;
}
/* Die Navigation im Vorlagenbild wird abgedeckt und als echter HTML-Text neu aufgebaut. */
.lpr-header-nav{
  position:absolute;
  z-index:5;
  left:0;
  right:0;
  bottom:0;
  min-height:15%;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(28px,4.3vw,78px);
  background:#fff;
  border-top:1px solid rgba(0,0,0,.03);
  line-height:1.2;
}
.lpr-header-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:5px 2px 7px;
  color:#111;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
  font:700 clamp(12px,1.05vw,18px)/1.15 Arial,Helvetica,sans-serif;
  border-bottom:3px solid transparent;
  transition:color .18s ease,border-color .18s ease;
}
.lpr-header-nav a:hover,
.lpr-header-nav a:focus-visible,
.lpr-header-nav a.active{
  color:#e40059;
  border-bottom-color:#e40059;
}
.lpr-header-nav a:focus-visible{
  outline:2px solid #e40059;
  outline-offset:4px;
  border-radius:2px;
}
@media(max-width:700px){
  .lpr-master-header{overflow:visible}
  .lpr-master-header>img{
    /* Das Kopfbild enthält unten eine nur grafische Navigationszeile.
       Auf kleinen Displays wird dieser Bereich ausgeblendet, damit nur
       die echte, anklickbare Navigation darunter sichtbar bleibt. */
    height:42.93vw;
    object-fit:cover;
    object-position:top;
  }
  .lpr-header-nav{
    position:relative;
    min-height:0;
    padding:9px 10px 8px;
    gap:5px 14px;
    flex-wrap:wrap;
    border-top:1px solid #ddd;
  }
  .lpr-header-nav a{
    min-height:34px;
    padding:5px 2px 4px;
    font-size:12px;
    border-bottom-width:2px;
  }
}
/* Veraltete Kopfbereiche der bisherigen Unterseiten ausblenden */
body>.top-image,body>.legal-header,body>.topbar,body>.wave,body>.catalog-header,body>.site-header{display:none!important}
body>.page>.brand-header{display:none!important}

/* v3.0.3: Link-Ebene zuverlässig anklickbar */
.lpr-master-header{
  z-index:1000;
  isolation:isolate;
}
.lpr-master-header>img{
  position:relative;
  z-index:1;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}
.lpr-header-nav{
  z-index:1002;
  pointer-events:auto;
}
.lpr-header-nav a{
  position:relative;
  z-index:1003;
  pointer-events:auto;
  cursor:pointer;
  touch-action:manipulation;
}
