/* ==========================================================
   ULSE GREY SPLIT
   - Graphite cards with neon underline sweep
   - Matches the full Grey style per paragraph
========================================================== */

@keyframes ulseGreySplitNeon {
  0%   { transform: translateX(-80%); opacity: 0.15; }
  50%  { transform: translateX(80%); opacity: 0.75; }
  100% { transform: translateX(-80%); opacity: 0.15; }
}

.ulse-grey-split {
  font-family: "Noto Sans", Arial, sans-serif;
  width: 100%;
  margin: 0 auto 32px;
  color: #e6e6e6;
}

.ulse-grey-split article {
  display: grid;
  gap: 18px;
  width: 100%;
}

.ulse-grey-split .ulse-para {
  position: relative;
  padding: 18px 20px 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, #3a3a3a, #2c2c2c),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      rgba(0,0,0,0.18) 1px,
      rgba(0,0,0,0.18) 2px
    );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.4),
    inset 0 0 22px rgba(255,255,255,0.02),
    inset 0 0 35px rgba(0,0,0,0.35);
  overflow: hidden;
}

.ulse-grey-split .ulse-para p {
  margin: 0;
  line-height: 1.85;
  color: #f0f0f0;
  padding: 12px 0 10px;
  position: relative;
}

.ulse-grey-split .ulse-para p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(130,185,255,0.9),
    transparent
  );
  animation: ulseGreySplitNeon 4s infinite linear;
}

.ulse-grey-split .ulse-para:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.45),
    inset 0 0 24px rgba(255,255,255,0.03),
    inset 0 0 38px rgba(0,0,0,0.4);
}

.ulse-grey-split a {
  color: #dbe9ff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted rgba(219,233,255,0.45);
}

.ulse-grey-split a:hover {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .ulse-grey-split .ulse-para {
    padding: 16px 16px 18px;
  }
}
