/* ========================================
   NEWS & INSIGHTS
======================================== */


/* ========================================
   INTRODUCTION
======================================== */

.news-introduction{

    max-width:1100px;
    margin:35px auto 45px;
    padding:0 25px;
    text-align:left;

}


.news-introduction h1{

    font-family:'Montserrat',sans-serif;
    font-size:56px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:20px;

}


.news-introduction .intro-lead{

    max-width:850px;
    margin:0;

    font-size:25px;
    font-weight:600;
    line-height:1.55;
    color:var(--green);

}



/* ========================================
   NEWS LIST
======================================== */


.news-list{

    max-width:1100px;
    margin:20px auto 0;
    padding:0 25px;

}



.news-card{

    padding:35px 0;

    border-bottom:1px solid rgba(20,40,60,0.18);

    text-align:left;

}



.news-card:first-child{

    padding-top:35px;

    border-top:1px solid rgba(20,40,60,0.18);

}



.news-card:last-child{

    border-bottom:none;
    padding-bottom:40px;

}



.news-date{

    font-size:15px;
    font-weight:600;
    color:var(--green);
    margin-bottom:12px;

}



.news-card h2{

    font-family:'Montserrat',sans-serif;
    font-size:30px;
    line-height:1.35;
    color:var(--navy);
    margin-bottom:15px;

}



.news-card p{

    max-width:850px;

    font-size:20px;
    line-height:1.75;
    color:var(--light-text);

    margin-bottom:20px;

}



.news-card a{

    color:var(--green);
    font-weight:700;
    text-decoration:none;

}



.news-card a:hover{

    text-decoration:underline;

}



.manuscript-link{

    margin-top:15px;

}



/* ========================================
   FEATURED ARTICLE
======================================== */


.featured-article{

    max-width:1100px;
    margin:0 auto 70px;
    padding:0 25px;

}



.featured-card{

    background:linear-gradient(180deg,#FFFFFF,#FBFCFB);

    border-left:6px solid var(--green);

    border-radius:24px;

    padding:50px;

    border:1px solid var(--border);

    box-shadow:0 18px 50px rgba(20,40,60,.05);

}



.article-category{

    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;

    color:var(--green);

    margin-bottom:18px;

}



.featured-card h3{

    font-family:'Montserrat',sans-serif;

    font-size:34px;

    color:var(--navy);

    margin-bottom:20px;

}



.featured-card p{

    font-size:20px;

    line-height:1.8;

    color:var(--light-text);

}



.featured-card a{

    display:inline-block;

    margin-top:30px;

    font-weight:700;

    color:var(--green);

    text-decoration:none;

}



.featured-card a:hover{

    text-decoration:underline;

}



/* ========================================
   LATEST INSIGHTS GRID
======================================== */


.latest-insights{

    max-width:1100px;

    margin:0 auto 80px;

    padding:0 25px;

}



.insights-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



.insight-card{

    background:white;

    padding:35px;

    border-radius:20px;

    border:1px solid var(--border);

    transition:.3s;

}



.insight-card:hover{

    transform:translateY(-5px);

}



.insight-card h3{

    font-family:'Montserrat',sans-serif;

    font-size:24px;

    color:var(--navy);

    margin-bottom:18px;

}



.insight-card p{

    font-size:18px;

    line-height:1.7;

    color:var(--light-text);

    margin-bottom:20px;

}



.insight-card a{

    color:var(--green);

    font-weight:700;

    text-decoration:none;

}



.insight-card a:hover{

    text-decoration:underline;

}



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


@media(max-width:900px){


    .news-introduction{

        padding:0 25px;

    }


    .news-introduction h1{

        font-size:42px;

    }


    .news-introduction .intro-lead{

        font-size:20px;

    }


    .insights-grid{

        grid-template-columns:1fr;

    }


}



@media(max-width:700px){


    .news-card h2{

        font-size:26px;

    }


    .news-card p{

        font-size:18px;

    }


}