/* Faint horizontal gradient rule placed at the top of a tinted section.
   components/section-divider.html */
.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(14, 159, 224, 0) 0%,
    rgba(14, 159, 224, 0.18) 50%,
    rgba(14, 159, 224, 0) 100%
  );
}
