@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 500;
  src: url('/fonts/DM_Sans/static/DMSans-Medium.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal; font-weight: 500;
  src: url('/fonts/DM_Mono/DM_Mono-Medium.woff2') format('woff2');
  font-display: swap;
}

/* Mobilizons eigene Navbar ausblenden */
#navbar { display: none !important; }

/* Unser eigener, identischer Header */
.pvu-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px clamp(20px,5vw,56px);
  max-width:1180px;
  margin:0 auto;
  font-family:'DM Sans', sans-serif;
  background:#F3EEE2;
}
.pvu-header .logo{
  font-family:'DM Mono', monospace;
  font-weight:500;
  font-size:16px;
  letter-spacing:-0.01em;
  color:#0D1420;
}
.pvu-header .logo b{ color:#FF1854; }
.pvu-header .nav-links{ display:flex; gap:26px; font-size:15px; font-weight:500; }
.pvu-header .nav-links a{
  text-decoration:none;
  color:#0D1420;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
  transition:border-color .15s;
}
.pvu-header .nav-links a:hover{ border-color:#FF1854; }
