/* =====================================================
   LEADING NEWS SECTION
   ===================================================== */

/* Main Card */
.leading-card{
    padding: 30px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    column-count: 2;
    column-gap: 40px;
    text-align: justify;

    position: relative;
    overflow: hidden;
}

/* Headline must stay full width */
.leading-title{
    column-span: all;   /* IMPORTANT */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Image Wrapper */
.leading-image-wrapper{
    break-inside: avoid;
}

/* Image */
.leading-img{
    float: left;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 20px 20px 0;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.leading-img:hover{
    transform: scale(1.05);
}

/* Content Styling */
.leading-content{
    font-size: 1rem;
    line-height: 1.8;
}

/* Prevent awkward column breaks */
.leading-content p{
    break-inside: avoid;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1200px){
    .leading-card{
        column-count: 1;
    }
}

@media (max-width: 992px){
    .leading-card{
        column-count: 1;
        padding: 20px;
    }

    .leading-img{
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .leading-title{
        font-size: 1.8rem;
    }
}

@media (max-width: 576px){
    .leading-title{
        font-size: 1.5rem;
    }

    .leading-card{
        border-radius: 12px;
    }
}