/**
 * Module: lpage_split_content
 * Auto-extracted from style.css
 */

/* ============================================
   SPLIT CONTENT (Full-Bleed Backgrounds)
   ============================================ */

.t1-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    isolation: isolate;
}

/* Left background extends to viewport left edge */
.t1-split::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    left: calc(-50vw + 50%);
    background: var(--left-bg, var(--pearl));
    z-index: -1;
}

/* Right background extends to viewport right edge */
.t1-split::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: calc(-50vw + 50%);
    background: var(--right-bg, var(--jade-light));
    z-index: -1;
}

.t1-split__left,
.t1-split__right {
    padding: 4rem 2rem;
}

/* Left side: padding on left aligns with other modules */
.t1-split__left {
    padding-left: max(2rem, calc(50vw - var(--max-width) / 2 + 1.5rem));
}

/* Right side: padding on right aligns with other modules */
.t1-split__right {
    padding-right: max(2rem, calc(50vw - var(--max-width) / 2 + 1.5rem));
}

.t1-split h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.t1-split h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.t1-split p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.t1-split p:last-child {
    margin-bottom: 0;
}

.t1-split ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t1-split li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.t1-split li:last-child {
    margin-bottom: 0;
}

.t1-split li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--jade);
    border-radius: 50%;
}

/* Light text variant for dark backgrounds */
.t1-split--light-text h2,
.t1-split--light-text h3 {
    color: var(--white);
}

.t1-split--light-text p,
.t1-split--light-text li {
    color: rgba(255, 255, 255, 0.9);
}

.t1-split--light-text li::before {
    background: var(--jade-bright);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .t1-split {
        grid-template-columns: 1fr;
    }
    
    /* On mobile, backgrounds still extend full width */
    .t1-split::before {
        right: 0;
        left: calc(-50vw + 50%);
        bottom: 50%;
    }
    
    .t1-split::after {
        left: 0;
        right: calc(-50vw + 50%);
        top: 50%;
    }
    
    .t1-split__left,
    .t1-split__right {
        padding: 3rem max(1.5rem, calc(50vw - var(--max-width) / 2 + 1.5rem));
    }
}

