.heading {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: none;
  background-origin: padding-box;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  box-sizing: border-box;

  color: rgb(255, 255, 255);
  display: inline-block;
  font-size: 20px; /* increased from 16px */
  font-weight: 500;
  height: 48px; /* increased from 36.5938px */
  letter-spacing: -0.2px;
  line-height: 28px; /* adjusted for readability */

  padding-block-end: 6px;
  padding-block-start: 6px;
  padding-left: 10px;
  padding-right: 36px;
  text-size-adjust: 100%;
  unicode-bidi: isolate;
  width: auto; /* better responsive behavior */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.liner {
  position: relative;
  flex: 1; /* makes the line fill remaining space */
  height: 4px;
  margin-left: 15px;
}

.liner::before,
.liner::after {
  position: absolute;
  content: "";
  width: 100%;
  border-top: 4px solid #0055a9;
  display: inline-block;
  vertical-align: bottom;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.liner::after {
  top: 16px;
}
