/* ===================================
   NEWS & INSIGHTS HERO
=================================== */

.news-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8fafc);

    padding:140px 0;
}

/* FLOATING WORDS */

.floating-text{

    position:absolute;

    font-weight:900;

    color:
    rgba(20,83,45,.05);

    pointer-events:none;

    user-select:none;

    animation:
    floatWords 10s ease-in-out infinite;
}

.text-1{

    top:15%;
    left:10%;

    font-size:90px;
}

.text-2{

    top:25%;
    right:10%;

    font-size:70px;

    animation-delay:1s;
}

.text-3{

    bottom:15%;
    left:12%;

    font-size:80px;

    animation-delay:2s;
}

.text-4{

    bottom:20%;
    right:8%;

    font-size:65px;

    animation-delay:3s;
}

@keyframes floatWords{

    0%,100%{

        transform:
        translateY(0);
    }

    50%{

        transform:
        translateY(-20px);
    }
}

/* CONTENT */

.news-hero-content{

    position:relative;

    z-index:5;

    max-width:1000px;

    margin:auto;

    text-align:center;
}

.news-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#eef7f0;

    color:#0B7A3E;

    font-weight:700;

    margin-bottom:25px;
}

.news-hero-content h1{

    font-size:
    clamp(4rem,10vw,9rem);

    line-height:.9;

    color:#14532D;

    font-weight:900;

    margin-bottom:35px;
}

/* DIVIDER */

.hero-divider{

    width:140px;

    height:4px;

    background:
    linear-gradient(
    90deg,
    #0B7A3E,
    #22c55e);

    margin:auto;

    border-radius:50px;

    margin-bottom:35px;
}

.news-hero-content p{

    max-width:750px;

    margin:auto;

    color:#64748b;

    line-height:2;

    font-size:18px;
}

/* META */

.hero-meta{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;
}

.hero-meta span{

    padding:12px 20px;

    border-radius:50px;

    background:#fff;

    color:#14532D;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

/* MOBILE */

@media(max-width:768px){

    .floating-text{

        display:none;
    }

    .news-hero{

        min-height:auto;

        padding:120px 0;
    }

    .news-hero-content h1{

        font-size:60px;
    }
}
/* ===================================
   BLOG COLLECTION
=================================== */

.blog-collection{

    padding:30px 0;

    background:#f8fafc;
}

.section-heading{

    text-align:center;

    margin-bottom:80px;
}

.section-heading h2{

    font-size:
    clamp(2.5rem,4vw,4.5rem);

    color:#14532D;

    margin-top:25px;
}

/* GRID */

.blog-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}

/* CARD */

.blog-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

    border-radius:30px;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.4);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.blog-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(11,122,62,.15);
}

/* IMAGE */

.blog-image{

    overflow:hidden;
}

.blog-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;
}

.blog-card:hover img{

    transform:scale(1.08);
}

/* CONTENT */

.blog-content{

    padding:30px;
}

.blog-category{

    color:#0B7A3E;

    font-weight:700;

    font-size:13px;

    letter-spacing:1px;
}

.blog-content h3{

    color:#14532D;

    font-size:26px;

    line-height:1.3;

    margin:15px 0;
}

.blog-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;
}

/* META */

.blog-meta{

    display:flex;

    justify-content:space-between;

    color:#94a3b8;

    font-size:14px;
}

/* MOBILE */

@media(max-width:991px){

    .blog-grid{

        grid-template-columns:1fr;
    }
}
/* ===================================
   BLOG MODAL
=================================== */

.blog-modal{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.75);

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99999;
}

.blog-modal.active{

    opacity:1;

    visibility:visible;
}

.blog-modal-content{

    max-width:900px;

    width:100%;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    max-height:90vh;

    overflow-y:auto;
}

.blog-modal-content img{

    width:100%;

    height:350px;

    object-fit:cover;
}

.blog-modal-content h2{

    padding:30px 30px 10px;

    color:#14532D;
}

.modal-meta{

    padding:0 30px;

    color:#64748b;

    margin-bottom:20px;
}

.blog-modal-content p{

    padding:0 30px 30px;

    line-height:2;

    color:#475569;
}

.close-modal{

    position:absolute;

    top:20px;
    right:20px;

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:26px;

    font-weight:700;
}
/* ===================================
   NEWS BULLETIN
=================================== */

.news-bulletin{

    padding:30px 0;

    background:#ffffff;
}

.bulletin-header{

    text-align:center;

    margin-bottom:80px;
}

.bulletin-header h2{

    font-size:
    clamp(2.5rem,4vw,4.5rem);

    color:#14532D;

    margin-top:25px;
}

/* LIST */

.bulletin-list{

    max-width:1100px;

    margin:auto;
}

.bulletin-item{

    padding:35px 0;

    border-bottom:
    1px solid #e2e8f0;

    cursor:pointer;

    transition:.4s;
}

.bulletin-item:hover{

    padding-left:25px;
}

.bulletin-top{

    display:grid;

    grid-template-columns:
    80px 1fr 140px;

    align-items:center;

    gap:20px;
}

.bulletin-number{

    font-size:42px;

    font-weight:800;

    color:#0B7A3E;
}

.bulletin-top h3{

    color:#14532D;

    font-size:30px;

    margin:0;
}

.bulletin-date{

    color:#64748b;

    text-align:right;
}

/* DESCRIPTION */

.bulletin-item p{

    max-height:0;

    overflow:hidden;

    color:#64748b;

    line-height:1.9;

    transition:.4s;

    margin-left:100px;
}

.bulletin-item:hover p{

    max-height:200px;

    margin-top:15px;
}

/* MOBILE */

@media(max-width:768px){

    .bulletin-top{

        grid-template-columns:1fr;
    }

    .bulletin-date{

        text-align:left;
    }

    .bulletin-item p{

        margin-left:0;
    }

    .bulletin-top h3{

        font-size:24px;
    }
}
/* ===================================
   KNOWLEDGE FOR IMPACT
=================================== */

.knowledge-section{

    position:relative;

    overflow:hidden;

    padding:30px 0;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1e293b);

    color:#fff;
}

/* HUGE WORD */

.knowledge-bg{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    font-size:18vw;

    font-weight:900;

    color:
    rgba(255,255,255,.04);

    line-height:1;

    white-space:nowrap;

    pointer-events:none;

    user-select:none;
}

/* CONTENT */

.knowledge-content{

    position:relative;

    z-index:2;

    max-width:1000px;

    margin:auto;

    text-align:center;
}

.knowledge-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    font-weight:700;

    margin-bottom:35px;
}

.knowledge-content h2{

    font-size:
    clamp(3rem,6vw,6rem);

    line-height:1.1;

    margin-bottom:60px;
}

/* LINES */

.knowledge-lines{

    display:flex;

    flex-direction:column;

    gap:24px;

    margin-bottom:60px;
}

.knowledge-lines div{

    font-size:30px;

    font-weight:600;

    opacity:.95;
}

.knowledge-content p{

    max-width:850px;

    margin:auto;

    line-height:2;

    font-size:18px;

    color:
    rgba(255,255,255,.85);
}

/* MOBILE */

@media(max-width:768px){

    .knowledge-section{

        padding:120px 0;
    }

    .knowledge-content h2{

        font-size:42px;
    }

    .knowledge-lines div{

        font-size:20px;
    }
}