/* Masthead rule — 44x3 gradient divider under the H1 (design sample line 81).
   The wrapper spans the shared article column (15-article.css centers every
   entry-content child with margin auto — a bare 44px div would center with it),
   and the dash itself is painted left-aligned inside via ::before. */
.hc-masthead-rule {
  height: 3px;
  margin-top: 22px;
  margin-bottom: 12px;
}
.hc-masthead-rule::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff4d67, #fd788c);
}
