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


/* ===============================
   MAIN CARD
=============================== */

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

    text-align:justify;

    position:relative;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    gap:20px;

    width:100%;
    height:auto;
}


/* ===============================
   TITLE
=============================== */

.leading-title{
    font-size:2.2rem;
    font-weight:800;
    line-height:1.3;
    color:#111;
    margin-bottom:10px;

    word-break:break-word;
}


/* ===============================
   IMAGE WRAPPER
=============================== */

.leading-image-wrapper{
    width:100%;
    text-align:center;
}


/* ===============================
   IMAGE
=============================== */

.leading-img{
    width:100%;
    max-width:320px;
    height:auto;

    margin:0 auto 15px auto;

    border-radius:12px;

    transition:transform .4s ease;

    display:block;

    object-fit:cover;
}


/* ===============================
   HOVER EFFECT
=============================== */

.leading-img:hover{
    transform:scale(1.03);
}


/* ===============================
   CONTENT
=============================== */

.leading-content{
    width:100%;

    font-size:1rem;
    line-height:1.8;

    color:#222;

    overflow-wrap:break-word;
    word-wrap:break-word;
}


/* ===============================
   PARAGRAPHS
=============================== */

.leading-content p{
    margin-bottom:14px;
}


/* ===============================
   TABLET
=============================== */

@media(max-width:1200px){

    .leading-card{
        padding:18px;
    }

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

}


/* ===============================
   MOBILE
=============================== */

@media(max-width:992px){

    .leading-card{
        padding:16px;
        border-radius:16px;
    }

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

    .leading-img{
        max-width:100%;
    }

    .leading-content{
        font-size:.97rem;
        line-height:1.7;
    }

}


/* ===============================
   SMALL MOBILE
=============================== */

@media(max-width:576px){

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

    .leading-title{
        font-size:1.45rem;
        line-height:1.4;
    }

    .leading-content{
        font-size:.92rem;
        line-height:1.65;
    }

    .leading-img{
        border-radius:10px;
    }

}