/* =========================================================
   WHITE SPLIT STYLE
   - Clean white container
   - Alternating paragraph backgrounds
   - First paragraph slightly stronger
========================================================= */

.ulse-white-split {
    font-family: "Noto Sans", Arial, sans-serif;
    line-height: 1.85;
    color: #222;
    background: #ffffff;
    padding: 32px 30px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 0 24px rgba(0,0,0,0.08);
    border: 1px solid #e7e7e7;
}

.ulse-white-split article {
    margin: 0;
}

.ulse-white-split h1,
.ulse-white-split h2,
.ulse-white-split h3 {
    color: #1a1a1a;
    margin-top: 24px;
}

.ulse-white-split .ulse-para {
    padding: 16px 18px;
    margin: 0 0 14px 0;
    border-radius: 12px;
    border: 1px solid #e9eef4;
    background: #f9fbfd;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ulse-white-split .ulse-para:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* First paragraph emphasis */
.ulse-white-split .ulse-para.para-first {
    font-size: 1.05em;
    font-weight: 700;
    color: #111;
    background: linear-gradient(135deg, #fff, #f4f8ff);
    border-color: #d6e4ff;
    box-shadow: 0 10px 28px rgba(0,64,160,0.06);
}

/* Alternating accents (adjust palette in CSS if you want single color) */
.ulse-white-split .ulse-para.para-odd:not(.para-first) {
    background: #f5f8fc;
    border-color: #e4ebf5;
}

.ulse-white-split .ulse-para.para-even {
    background: #fdfdfd;
    border-color: #ececec;
}

.ulse-white-split .ulse-para p {
    margin: 0;
}

.ulse-white-split a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.ulse-white-split a:hover {
    text-decoration: underline;
}

/* Shine effect for strong / links (borrowed from text style) */
.ulse-white-split strong,
.ulse-white-split b,
.ulse-white-split a {
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #d0d0d0 20%,
        #b5b5b5 40%,
        #4e4d4d 65%,
        #d5d5d5 75%,
        #ffffff 100%
    );
    background-size: 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #111;
    animation: neutralSilver 6s linear infinite;
}

.ulse-white-split a {
    text-decoration: none;
}

.ulse-white-split a:hover {
    text-decoration: underline;
}

@keyframes neutralSilver {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}




