/* ===================================================
   UNIFIED HERO — wspólny styl hero dla wszystkich stron
   Użycie: <div class="uhero" style="--uhero-img:url('/app/shared/img/hero/X.jpg')">
=================================================== */
.uhero{
  position:relative;
  min-height:200px;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(135deg,rgba(47,37,89,.55) 0%,rgba(59,47,127,.6) 50%,rgba(108,92,231,.5) 100%),var(--uhero-img,none) center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}
.uhero-in{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  padding:40px 20px 28px;
  position:relative;
  z-index:2;
}
.uhero-icon{
  width:52px;height:52px;
  border-radius:14px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(4px);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:12px;
}
.uhero-icon svg{width:26px;height:26px;}
.uhero h1{
  font-size:32px;font-weight:800;margin:0 0 8px;
  text-shadow:0 2px 16px rgba(0,0,0,.35);
  line-height:1.2;
}
.uhero p{
  font-size:14px;opacity:.85;margin:0;max-width:700px;
  text-shadow:0 1px 8px rgba(0,0,0,.25);
  line-height:1.5;
}

@media(max-width:640px){
  .uhero{min-height:160px;}
  .uhero h1{font-size:24px;}
  .uhero-in{padding:24px 16px 20px;}
}
