/* Centered section title with top line */
.section-title-centered{
  text-align:center;
  position:relative;
  padding-top:24px;
  margin-top:0;
}
.section-title-centered::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(124,243,255,0.6), transparent);
}
.section-title-centered::after{
  margin-left:auto;
  margin-right:auto;
}
