/* module:header - hero title, subtitle, tag chips (Night Shift).
   Every selector starts with .m-header. */

.m-header{margin-bottom:36px;}

.m-header h1{
  font-family:var(--font-display);
  font-size:clamp(2.7rem,9vw,4rem);
  font-weight:700;
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:0.015em;
  margin:0 0 10px;
}

.m-header h1::after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  border-radius:2px;
  background:var(--accent);
  box-shadow:0 0 16px var(--accent-glow);
  margin-top:16px;
}

.m-header p{
  font-weight:400;
  font-size:1.05rem;
  line-height:1.5;
  color:var(--sub);
  max-width:54ch;
  margin:0;
}

.m-header .tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.m-header .tag{
  font-family:var(--font-data);
  font-weight:600;
  font-size:0.7rem;
  line-height:1.4;
  text-transform:uppercase;
  letter-spacing:0.07em;
  background:var(--accent-tint);
  color:var(--accent);
  border:1px solid var(--accent-edge);
  border-radius:var(--radius-tag);
  padding:6px 10px;
}
