/* Content section-divider waves — self-hosted replacement for Squarespace's
   removed `section-divider.js`. Draws a teal sine line near the bottom of a
   content section (the /minimize style). Paired with section-dividers.js.

   Everything is scoped to `.has-wave-divider`, a marker class the JS adds ONLY
   to the content sections it draws on. The footer sections are excluded in JS,
   so this never interferes with the footer-fx wave/particles. No global rules. */

.page-section.has-wave-divider { overflow: visible; }

.has-wave-divider .section-divider-svg-stroke {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.has-wave-divider .section-divider-stroke {
  stroke: hsla(var(--accent-hsl, 173.79, 60.84%, 28.04%), 1);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  fill: none;
  stroke-linecap: round;
}
