.bigtv-csr{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    max-width:1200px;
    margin:40px auto;
}

/* LEFT BIG CARD */

.bigtv-csr-main{
    width:32%;
    padding-right:40px;
    border-right:1px solid #e5e5e5;
}

.bigtv-csr-main .bigtv-csr-count{
    font-size:64px;
    font-weight:700;
    color:#d31f26;
    line-height:1;
}

.bigtv-csr-main .bigtv-csr-title{
    font-size:22px;
    font-weight:700;
    margin:20px 0 15px;
}

.bigtv-csr-main .bigtv-csr-description{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.csr-button{
    display:inline-block;
    background:#d31f26;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:8px;
}

/* RIGHT ITEMS */

.bigtv-csr-side{
    width:68%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.bigtv-csr-item{
    flex:1;
    text-align:center;
    padding:0 20px;
}

.bigtv-csr-item + .bigtv-csr-item{
    border-left:1px solid #eee;
}

.bigtv-csr-icon img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin-bottom:15px;
    margin-left: 64px;
}

.bigtv-csr-item .bigtv-csr-count{
    font-size:40px;
    color:#d31f26;
    font-weight:700;
}

.bigtv-csr-item .bigtv-csr-title{
    font-size:15px;
    margin-top:5px;
    font-weight:400;
}

.bigtv-csr-item .bigtv-csr-description{
    display:none;
}

/* Hidden on desktop */
.csr-mobile-featured{
    display:none;
}

@media (max-width:768px){

    .bigtv-csr{
        display:block;
    }

    .bigtv-csr-main{
        display:none;   /* Hide large left block */
    }

    .bigtv-csr-side{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .csr-mobile-featured{
        display:block;
    }

    .bigtv-csr-item{
        border-left:0 !important;
        padding:22px 15px;
        background:#fff;
        border-radius:16px;
        box-shadow:0 4px 18px rgba(0,0,0,.08);
    }
}

/* ===========================
   MOBILE (<=768px)
=========================== */
@media (max-width:768px){

    .bigtv-csr{
        display:block;
        padding:20px;
        border-radius:20px;
        margin:20px 15px;
    }

    /* Featured section */

    .bigtv-csr-main{
        width:100%;
        border-right:none;
        border-bottom:1px solid #eee;
        padding:0 0 25px;
        margin-bottom:25px;
        text-align:left;
    }

    .bigtv-csr-main .bigtv-csr-count{
        font-size:20px;
    }

    .bigtv-csr-main .bigtv-csr-title{
        font-size:10px;
        margin:10px 0;
    }

    .bigtv-csr-main .bigtv-csr-description{
        display:none;
    }

    /* Right section becomes 2x2 grid */

    .bigtv-csr-side{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .bigtv-csr-item{
        border:none !important;
        padding:20px 15px;
        background:#fff;
        border-radius:16px;
        box-shadow:0 4px 15px rgba(0,0,0,.08);
    }

    .bigtv-csr-item+.bigtv-csr-item{
        border:none;
    }

    .bigtv-csr-icon img{
        width:48px;
        height:48px;
        margin:0 auto 12px;
    }

    .bigtv-csr-item .bigtv-csr-count{
        font-size:20px;
    }

    .bigtv-csr-item .bigtv-csr-title{
        font-size:13px;
        font-weight:400;
        line-height:1.3;
    }

}