/* =============================================
   NEIX Middle Office -- hero.css
   Hero band (cabecera oscura) usada en sub-pages de Gestion
   y en el detail dinamico de proyectos.js.
   ============================================= */

.hero-band {
  background: var(--grafito);
  padding: 30px var(--pad-x) 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-band .eyebrow {
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 10px;
}
.hero-band h1 {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--crema);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-band p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  max-width: 440px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .hero-band {
    padding: 36px var(--pad-x) 32px;
  }
}
