/* ════════════════════════════════════════════════════════════════════
   WeDJ — Marken-CD (geteilt über alle Seiten von wedj.party)
   Pink #ec4899 → Purple #a855f7 · Cyan #06b6d4
   Schrift: Bebas Neue + DM Sans (UI) · Oswald 700 (Logo-Wortmarke)
   Logo: .wedj-logo am Dateiende (Master: Logo ideen/wedj-logo-main.html).
   Wird von index.html (User-Landing), clubs/ (B2B), events/ geladen.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --np: #a855f7;   /* Purple */
  --npk: #ec4899;  /* Pink */
  --nc: #06b6d4;   /* Cyan */
  --dk: #050508;   /* Grund (sehr dunkel) */
  --cd: #0d0d12;   /* Card */
  --cb: #13131a;   /* Container */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--dk);
  font-family: 'DM Sans', system-ui, sans-serif;
  color: white;
  overflow-x: hidden;
  margin: 0;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

.grad-text {
  background: linear-gradient(135deg, var(--np), var(--npk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-cyan {
  background: linear-gradient(135deg, var(--nc), var(--np));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--np), var(--npk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g-card {
  background: var(--cd);
  border-radius: 16px;
  position: relative;
}
.g-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(168,85,247,.25), rgba(236,72,153,.15), rgba(6,182,212,.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--np), var(--npk));
  color: white;
  font-weight: 600;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-cta:hover {
  box-shadow: 0 0 30px rgba(168,85,247,.5), 0 0 60px rgba(236,72,153,.2);
  transform: translateY(-1px);
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .4s;
}
.btn-cta:hover::after { left: 100%; }

/* Sekundär-Button (Outline) */
.btn-ghost {
  font-weight: 500;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.btn-ghost:hover { color: #fff; border-color: rgba(236,72,153,.45); }

.lang-btn {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
  color: rgba(255,255,255,.35);
  background: transparent;
  border: none;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--np), var(--npk));
  color: white;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* ── Phone-Mockup (Hero) ───────────────────────────────────────────── */
.phone {
  width: 230px;
  min-height: 460px;
  border-radius: 38px;
  border: 2px solid rgba(168,85,247,.35);
  background: #08080e;
  box-shadow:
    0 0 0 1px rgba(168,85,247,.08),
    0 0 50px rgba(168,85,247,.22),
    0 0 100px rgba(236,72,153,.08),
    inset 0 0 40px rgba(0,0,0,.6);
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 22px;
  background: #08080e;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen { padding: 32px 14px 16px; }
.phone-logo-txt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--np), var(--npk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.song-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 10px;
  margin-bottom: 5px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.song-row.top-song {
  background: linear-gradient(135deg, rgba(168,85,247,.14), rgba(236,72,153,.08));
  border-color: rgba(168,85,247,.28);
  box-shadow: 0 0 18px rgba(168,85,247,.1);
}
.s-rank { font-size: 9px; color: rgba(168,85,247,.55); font-weight: 600; width: 14px; flex-shrink: 0; }
.top-song .s-rank { color: var(--np); }
.s-info { flex: 1; min-width: 0; }
.s-title { font-size: 10.5px; font-weight: 600; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-artist { font-size: 9px; color: rgba(255,255,255,.35); }
.s-votes {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--nc);
  text-shadow: 0 0 8px rgba(6,182,212,.65);
  min-width: 22px;
  text-align: center;
}
.top-song .s-votes { color: var(--npk); text-shadow: 0 0 10px rgba(236,72,153,.8); }
.s-btn {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(236,72,153,.13);
  border: 1px solid rgba(236,72,153,.28);
  color: var(--npk);
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.s-btn:hover { background: rgba(236,72,153,.25); }
.votes-left {
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(236,72,153,.07);
  border: 1px solid rgba(236,72,153,.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes eq { 0%, 100% { height: 4px; } 50% { height: var(--h, 16px); } }
.eq-bar {
  width: 3px;
  background: linear-gradient(to top, var(--np), var(--npk));
  border-radius: 2px;
  animation: eq .7s ease-in-out infinite;
}

@keyframes vpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.vpulse { animation: vpulse .25s ease; }

.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-body.open { max-height: 320px; }

.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fu.vis { opacity: 1; transform: translateY(0); }

.finput {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.finput:focus {
  outline: none;
  border-color: rgba(236,72,153,.5);
  box-shadow: 0 0 0 3px rgba(236,72,153,.1);
}
.finput option { background: #1a1a26; }
.finput::placeholder { color: rgba(255,255,255,.3); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 66px;
  line-height: 1;
  background: linear-gradient(135deg, var(--npk), var(--np));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .9;
  position: absolute;
  top: -30px;
  left: 4px;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.stat-card {
  background: rgba(236,72,153,.07);
  border: 1px solid rgba(236,72,153,.18);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dk); }
::-webkit-scrollbar-thumb { background: rgba(236,72,153,.3); border-radius: 3px; }

/* ════════════════════════════════════════════════════════════════════
   EVENTS — Karten (Listing) + Detail + Instagram-Slot + Tags
   ════════════════════════════════════════════════════════════════════ */

/* Genre-/Meta-Chips */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(236,72,153,.1);
  border: 1px solid rgba(236,72,153,.28);
  color: rgba(255,255,255,.8);
}
.tag-cyan { background: rgba(6,182,212,.1); border-color: rgba(6,182,212,.3); }
.tag-plain { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.6); }

/* Event-Karte im Listing */
.evt-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cd);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.evt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,.4);
  box-shadow: 0 14px 40px rgba(168,85,247,.18);
}
.evt-cover {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
}
.evt-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,0) 35%, rgba(5,5,8,.85) 100%);
}
.evt-cover > * { position: relative; z-index: 1; }
.evt-live {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, var(--np), var(--npk));
  padding: 3px 9px; border-radius: 999px;
}
.evt-soon {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 9px; border-radius: 999px;
}
.evt-meta { padding: 18px; }

/* Event-Detail: Hero-Cover */
.evt-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 40px 24px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.evt-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,.35) 0%, rgba(5,5,8,.6) 55%, rgba(5,5,8,.98) 100%);
}
.evt-hero > * { position: relative; z-index: 1; }

/* Detail-Fakten-Zeile */
.fact {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fact:last-child { border-bottom: none; }
.fact-ico { font-size: 20px; line-height: 1.3; flex-shrink: 0; width: 26px; text-align: center; }
.fact-k { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); }
.fact-v { font-size: 15px; color: rgba(255,255,255,.85); margin-top: 2px; }
.fact-v a { color: var(--npk); text-decoration: none; }
.fact-v a:hover { text-decoration: underline; }

/* Instagram-Slot */
.ig-slot {
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.ig-slot-inner {
  border-radius: 17px;
  background: var(--cd);
  padding: 28px 24px;
  text-align: center;
}
.ig-handle {
  font-weight: 700; font-size: 18px; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.ig-handle:hover { color: var(--npk); }
.ig-embed-ph {
  margin-top: 18px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
  min-height: 220px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.6; padding: 24px;
}

/* ════════════════════════════════════════════════════════════════════
   WeDJ-LOGO / Wortmarke (offizielle CD seit 2026-06-15)
   Lockup: "WeDJ" (Oswald 700, weisser Fill + pinker Neon-Rand) über dem
   leuchtenden "PARTY"-Pink-Balken. Master: Logo ideen/wedj-logo-main.html.
   Statische, wiederverwendbare Komponente (der animierte Scroll-Masthead
   ist ein index.html-Spezialfall). Größe via --wl-size. Setzt Oswald 700 voraus.
     <span class="wedj-logo" style="--wl-size:80px">
       <span class="wl-mark">WeDJ</span><span class="wl-party">Party</span></span>
   ════════════════════════════════════════════════════════════════════ */
.wedj-logo {
  display: inline-block; text-align: center; line-height: 1;
  font-family: "Oswald", system-ui, sans-serif;
  filter: drop-shadow(0 4px 9px rgba(0,0,0,.5));
}
.wedj-logo .wl-mark {
  display: block; font-weight: 700; font-size: var(--wl-size, 72px);
  line-height: .82; letter-spacing: 0; color: #fff;
  -webkit-text-stroke: .055em var(--npk); paint-order: stroke fill;
  text-shadow: 0 0 .04em var(--npk), 0 0 .12em var(--npk), 0 0 .26em #ff5fb0, 0 0 .46em var(--np);
}
.wedj-logo .wl-party {
  display: block; width: 100%; margin-top: .12em;
  background: var(--npk); color: #fff;
  font-family: "DM Sans", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3em;
  font-size: calc(var(--wl-size, 72px) * .36); line-height: 1;
  padding: .32em 0 .32em .3em; border-radius: .12em;
  box-shadow: 0 0 .18em var(--npk), 0 0 .42em rgba(236,72,153,.8), 0 0 .8em var(--np), 0 .05em .12em rgba(0,0,0,.4);
  text-shadow: 0 0 .12em rgba(255,255,255,.5);
}

/* ════════════════════════════════════════════════════════════════════
   WeDJ-MASTHEAD — animiertes Logo-Lockup (geteilt über ALLE Seiten)
   Start = breit (WeDJ riesig + "Party" daneben); beim Runterscrollen schrumpft
   es continuous (eine per site.js dt-geglättete Variable --p 0..1 interpoliert
   ALLE Werte) und parkt kompakt in der Nav-Ecke oben-links. sticky => Folge-
   Inhalt rutscht im Fluss nach (keine Überlagerung).
   • Kunden-Seiten (Landing/Clubs/Events): Neon-Rand FLACKERT (.nrim-Animation).
   • Footer + Rechts-Seiten: <div id="masthead" class="mh-static"> => kein Flackern.
   feste px-Maxima (KEIN min()/clamp() in der Interpolations-calc -> sonst
   Browser-Quirk, der bei p=1 auf 0 kollabiert); Responsiveness via Media-Queries.
   ════════════════════════════════════════════════════════════════════ */
#masthead {
  /* FIXED-Overlay (NICHT sticky): die Höhe (--mh-h) animiert beim Scrollen — läge
     der Masthead im Dokumentfluss, würde diese Höhenänderung die ganze Seite
     reflowen ("Wackeln", v. a. bei kurzen Seiten/ganz oben, da Scroll-Clamp →
     scrollY → --p → Höhe rückkoppelt). Als fixed ist er aus dem Fluss; die
     konstante .mh-spacer-Höhe darunter reserviert den Platz stabil. */
  position: fixed; top: 0; left: 0; right: 0; z-index: 101; height: var(--mh-h);
  pointer-events: none; font-family: "Oswald", system-ui, sans-serif;
  --p: 0;
  --mh-max: 150px; --mh-min: 60px;
  --w-max: 112px; --w-min: 30px;
  --mh-h: calc(var(--mh-max) - (var(--mh-max) - var(--mh-min)) * var(--p));
  --w-fs: calc(var(--w-max) - (var(--w-max) - var(--w-min)) * var(--p));
  --w-sw: calc(6px - 4px * var(--p));
  --lk-top: calc(50% * (1 - var(--p)) + 9px * var(--p));
  --lk-ty: calc(-50% * (1 - var(--p)));
  /* Party-Pfad: erst RUNTER (tp über p 0→0.5), dann nach LINKS unter WeDJ
     (lp über p 0.5→1) -> kreuzt nie über die Wortmarke */
  --tp: clamp(0, calc(var(--p) * 2), 1);
  --lp: clamp(0, calc((var(--p) - .5) * 2), 1);
  --pp-l: calc((100% + .16em) * (1 - var(--lp)));
  --pp-t: calc(50% + 50% * var(--tp) + .06em * var(--tp));
  --pp-ty: calc(-50% * (1 - var(--tp)));
}
#masthead .mh-inner { position: relative; max-width: 1100px; height: 100%; margin: 0 auto; }

/* Positionsanker = WeDJ; Party wird absolut daran ausgerichtet */
#masthead .mh-lock {
  position: absolute; left: 24px; top: var(--lk-top); transform: translateY(var(--lk-ty));
  font-size: var(--w-fs); line-height: .82;
}

/* WeDJ-Wortmarke: weisser Fill (statisch) + pinker Neon-Rand */
#masthead .mh-wedj {
  display: inline-block; pointer-events: auto; font-weight: 700; line-height: .82; font-size: 1em;
  color: #fff; letter-spacing: 0; text-decoration: none; white-space: nowrap;
  -webkit-text-stroke: var(--w-sw) var(--npk); paint-order: stroke fill;
  text-shadow: 0 0 4px var(--npk), 0 0 12px var(--npk), 0 0 26px #ff5fb0, 0 0 46px var(--np);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,.55));
}
#masthead .mh-wedj .nrim { animation: mhFlicker 4.2s infinite steps(1, end); }

/* "Party": solider Pink-Balken, leuchtend (Neon-Glow, em-relativ -> skaliert mit) */
#masthead .mh-party {
  position: absolute; left: var(--pp-l); top: var(--pp-t); transform: translateY(var(--pp-ty));
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--npk); color: #fff; font-family: "DM Sans", sans-serif; font-weight: 700;
  text-transform: uppercase; white-space: nowrap; font-size: .46em; letter-spacing: .06em;
  padding: .34em .72em; border-radius: .2em;
  box-shadow: 0 0 .22em var(--npk), 0 0 .5em rgba(236,72,153,.8), 0 0 .95em var(--np), 0 .12em .2em rgba(0,0,0,.45);
  text-shadow: 0 0 .14em rgba(255,255,255,.5);
}

/* Nav-Wortmarke ausblenden — der Masthead stellt das Logo */
.nav-brand-text { opacity: 0; }

/* Flicker: NUR der Neon-Rand (Stroke-Farbe + Glow). Fill bleibt weiss. */
@keyframes mhFlicker {
  0%, 17%, 19%, 49%, 51%, 77%, 100% {
    -webkit-text-stroke-color: var(--npk);
    text-shadow: 0 0 4px var(--npk), 0 0 12px var(--npk), 0 0 26px #ff5fb0, 0 0 46px var(--np);
  }
  18% { -webkit-text-stroke-color: #7a2350; text-shadow: none; }
  50% { -webkit-text-stroke-color: #b03a72; text-shadow: 0 0 4px var(--npk); }
  78%, 79% { -webkit-text-stroke-color: #7a2350; text-shadow: none; }
}

/* Statische Variante (Footer-Logo-Stil): KEIN Flackern — für Rechts-Seiten. */
#masthead.mh-static .mh-wedj .nrim { animation: none; }

/* In-Flow-Platzhalter: reserviert KONSTANT die (maximale) Masthead-Höhe, damit der
   fixe Masthead den Folge-Inhalt nicht überdeckt. Höhe ändert sich NICHT beim
   Scrollen -> kein Reflow/Wackeln. Werte spiegeln --mh-max der Breakpoints. */
.mh-spacer { height: 150px; }

@media (max-width: 1024px) { #masthead { --mh-max: 130px; --w-max: 94px; } .mh-spacer { height: 130px; } }
@media (max-width: 560px)  { #masthead { --mh-max: 108px; --mh-min: 54px; --w-max: 74px; --w-min: 26px; } .mh-spacer { height: 108px; } }
@media (prefers-reduced-motion: reduce) { #masthead .mh-wedj .nrim { animation: none; } }

/* ── Footer-Logo: kompaktes Lockup NEBENEINANDER (WeDJ + Party-Balken daneben),
      statisch / KEIN Flackern (wie der Top-Zustand des Masthead). ───────────── */
.foot-logo {
  display: inline-flex; align-items: center; gap: .38em;
  font-family: "Oswald", system-ui, sans-serif; line-height: 1; text-decoration: none;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.5));
}
.foot-logo .fl-mark {
  font-weight: 700; font-size: var(--fl-size, 30px); line-height: .82; letter-spacing: 0; color: #fff;
  -webkit-text-stroke: .05em var(--npk); paint-order: stroke fill;
  text-shadow: 0 0 .04em var(--npk), 0 0 .12em var(--npk), 0 0 .26em #ff5fb0, 0 0 .46em var(--np);
}
.foot-logo .fl-party {
  background: var(--npk); color: #fff; font-family: "DM Sans", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; font-size: calc(var(--fl-size, 30px) * .42);
  padding: .34em .6em; border-radius: .2em;
  box-shadow: 0 0 .18em var(--npk), 0 0 .42em rgba(236,72,153,.8), 0 0 .8em var(--np), 0 .05em .12em rgba(0,0,0,.4);
  text-shadow: 0 0 .12em rgba(255,255,255,.5);
}

/* ── Rechts-Seiten (Impressum/Datenschutz) — lesbarer Fließtext-Block ──────── */
.legal-prose { color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
.legal-prose h2 {
  font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: 1px;
  text-transform: uppercase; color: #fff; margin: 32px 0 8px;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose strong { color: rgba(255,255,255,.92); font-weight: 600; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose li { margin-bottom: 6px; }
.legal-prose a { color: var(--npk); text-decoration: none; }
.legal-prose a:hover { text-decoration: underline; }
.legal-ph {
  background: rgba(245,158,11,.15); color: #f59e0b; font-weight: 600;
  border-radius: 4px; padding: 0 5px;
}
