/* casestudies2-approach.css - FIXED VERSION */

.csb-approach {
    background-color: #070707;
}

/* --- IMAGE SPLIT LAYOUT --- */
.res-img-split {
    display: flex; /* Forces images to sit side-by-side */
    gap: 32px;
    margin-bottom: 80px;
}

.res-img-half {
    flex: 1;
    aspect-ratio: 585 / 450;
    border-radius: 60px;
    overflow: hidden;
    background-color: #1A1A1A; /* Grey placeholder color */
    display: block;
    min-height: 300px; /* Ensures boxes have a visible shape */
}

.res-img-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csb-text-content{
    margin-bottom: 80px ;
}

.csb-text-content p strong {
    font-weight: 800;
    color: #FFFFFF;
}


/* --- STEN APP LISTING IN HERO.CSS --- */

.approach-list {
    list-style: none; /* Removes default browser bullets */
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Balanced vertical spacing */
}

.approach-list li {
    font-family: 'Albert Sans', sans-serif; /* Your Master's degree font [cite: 37] */
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    position: relative;
    padding-left: 24px; /* Space for the custom bullet */
}

/* The Exact WWL "High-Precision" Bullet */
.approach-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px; /* Aligns bullet with the first line of text */
    width: 8px;
    height: 8px;
    background-color: #00FF88; /* The WWL Brand Green */
    border-radius: 2px; /* The specific WWL square-radius */
}

.approach-list strong {
    font-weight: 600;
    color: #FFFFFF;
}

/* --- Text Animation Essentials --- */
.line-mask {
    overflow: hidden;
    display: block;
}