/* =========================================================
   SECTION DIVIDER - STELLA TV
========================================================= */

.section-divider {
  position: relative;

  width: min(1400px, 92%);
  height: 1px;

  margin: 0 auto;

  overflow: hidden;
}

/* Línea principal */

.section-divider::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.22),
      rgba(255,255,255,0.08),
      transparent
    );
}

/* Glow */

.section-divider::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 220px;
  height: 12px;

  transform: translate(-50%, -50%);

  background: rgba(255, 79, 163, 0.35);

  filter: blur(18px);

  border-radius: 999px;
}

/* Variantes */

.section-divider.orange::after {
  background: rgba(255, 155, 67, 0.35);
}

.section-divider.blue::after {
  background: rgba(60, 140, 255, 0.35);
}

.section-divider.green::after {
  background: rgba(0, 255, 170, 0.35);
}

/* Responsive */

@media (max-width: 760px) {
  .section-divider {
    width: 90%;
  }

  .section-divider::after {
    width: 120px;
  }
}