/* ============================================================
   WETTERZENTRALE · Marke (final: Konzept K5)
   Wortmarke — der Blitz ersetzt das Z, Wasserlinie darunter.
   Himmel (Blitz) + Fluss (Welle): das ganze Portal in einer Zeile.
   Gehört inhaltlich zu ci.css (Banner) + Seiten-Lockups.
   ============================================================ */

/* ---- Grundbaustein: skaliert komplett über font-size ---- */
.brand{
  display:inline-flex; flex-direction:column; gap:.26em;
  font-size:24px;                 /* Default-Größe; Banner setzt 13px, Briefkopf 32px */
  color:var(--text); text-decoration:none;
}
.brand__word{
  display:inline-flex; align-items:center;
  font:800 1em/1 var(--font-ui); letter-spacing:.05em;
}
.brand__bolt{ height:.92em; width:auto; margin:0 .04em; fill:var(--accent) }
.brand__wave{ width:100%; height:.36em; stroke:var(--accent);
  stroke-width:2.5; fill:none; stroke-linecap:round }
.brand__claim{
  font:500 .375em/1 var(--mono); letter-spacing:.2em;
  color:var(--text-dim); text-transform:uppercase;
}
.brand__author{
  font:400 .32em/1 var(--mono); letter-spacing:.22em;
  color:var(--text-mute); text-transform:uppercase;
}
/* Regeln:
   – .brand__wave entfällt unter 12px Wortgröße und bei Platzmangel (mobil).
   – .brand__author („VON HANS SCHILD“) nur auf Briefkopf, Öffentlich-Seite,
     Login und PDF-Berichten — nie in der Navigation.
   – Schutzraum: Kapitälhöhe/2 rundum. */

/* ---- Banner-Variante (ci.css) — Banner ist dunkel in beiden Themes ---- */
.ci-brand{ font-size:13px; color:#E7EDF3 }
.ci-brand .brand__bolt{ fill:#38BDF8 }
.ci-brand .brand__wave{ stroke:#38BDF8; stroke-width:2 }

/* ============================================================
   Markup (byte-identisch auf allen Seiten, wie CI-Banner):

   <a class="brand ci-brand" href="/">
     <span class="brand__word">WETTER<svg class="brand__bolt"
       viewBox="0 0 26 34" aria-hidden="true"><polygon
       points="16,1 3,19 10,19 7,33 23,13 15,13 20,1"/></svg>ENTRALE</span>
     <svg class="brand__wave" viewBox="0 0 240 10" preserveAspectRatio="none"
       aria-hidden="true"><path d="M2 6 Q12 1 22 6 T42 6 T62 6 T82 6 T102 6
       T122 6 T142 6 T162 6 T182 6 T202 6 T222 6 T238 6"/></svg>
   </a>

   Voll-Lockup (Briefkopf / Öffentlich):
   … + <span class="brand__claim">UNWETTERVORHERSAGE · SÜDOSTBAYERN – SALZBURG</span>
       <span class="brand__author">VON HANS SCHILD</span>
   ============================================================ */
