/* A soft gold divider marks every section transition. */
main > section:not(.hero),
body > footer {
  position: relative;
}

body > footer {
  border-top: 0;
}

main > section:not(.hero)::before,
body > footer::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 2%;
  right: 2%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(217, 182, 109, .17) 10%,
    rgba(217, 182, 109, .68) 28%,
    rgba(240, 217, 157, .82) 50%,
    rgba(217, 182, 109, .68) 72%,
    rgba(217, 182, 109, .17) 90%,
    transparent 100%);
}
