.news-section{
    padding:100px 0;
    background:#f7f9fc;
}

.news-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.news-label{
    display:inline-block;
    padding:8px 18px;
    background:#d7b34d;
    color:#111;
    font-size:13px;
    font-weight:600;
    border-radius:50px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.news-header h2{
    font-size:44px;
    color:#0f2341;
    margin-bottom:20px;
}

.news-header p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.news-card{
    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s ease;
    border-top:5px solid #d7b34d;
    display:flex;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.news-card-content{
    display:flex;
    flex-direction:column;
    height:100%;
}

.news-date{
    color:#b28b28;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.news-card h3{
    font-size:28px;
    color:#0f2341;
    line-height:1.35;
    margin-bottom:20px;
}

.news-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
    flex:1;
}

.news-btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    background:#0f2341;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    width:max-content;
}

.news-btn:hover{
    background:#d7b34d;
    color:#111;
}

/* Tablet */

@media(max-width:992px){

.news-grid{
    grid-template-columns:1fr;
}

.news-header h2{
    font-size:38px;
}

.news-card{
    padding:38px;
}

}

/* Mobile */

@media(max-width:768px){

.news-section{
    padding:70px 0;
}

.news-header{
    margin-bottom:50px;
}

.news-header h2{
    font-size:30px;
}

.news-header p{
    font-size:16px;
}

.news-card{
    padding:28px;
}

.news-card h3{
    font-size:23px;
}

.news-btn{
    width:100%;
    text-align:center;
}

}

.news-detail-section{

padding:100px 0;

background:#fff;

}

.news-detail-header{

max-width:900px;

margin:0 auto 60px;

text-align:center;

}

.news-category{

display:inline-block;

background:#d6b04c;

padding:8px 18px;

border-radius:40px;

font-size:13px;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:18px;

}

.news-date{

display:block;

margin-top:20px;

margin-bottom:18px;

font-size:15px;

font-weight:600;

color:#b18d2e;

}

.news-detail-header h1{

font-size:46px;

line-height:1.3;

color:#0f2341;

margin:0;

}

.news-detail-content{

max-width:900px;

margin:auto;

}

.news-detail-content p{

font-size:18px;

line-height:2;

color:#555;

margin-bottom:28px;

}

.statement-box{

margin:50px 0;

padding:40px;

background:#f8f9fb;

border-left:5px solid #d6b04c;

border-radius:10px;

}

.statement-box h3{

font-size:28px;

color:#0f2341;

margin-bottom:20px;

}

.statement-box p{

margin:0;

}

.news-footer{

margin-top:70px;

text-align:center;

}

.back-news{

display:inline-block;

padding:15px 35px;

background:#0f2341;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.back-news:hover{

background:#d6b04c;

color:#111;

}

@media(max-width:992px){

.news-detail-header h1{

font-size:38px;

}

.news-detail-content{

padding:0 20px;

}

.statement-box{

padding:30px;

}

}

@media(max-width:768px){

.news-detail-section{

padding:70px 0;

}

.news-detail-header{

margin-bottom:40px;

padding:0 20px;

}

.news-detail-header h1{

font-size:30px;

}

.news-detail-content p{

font-size:16px;

line-height:1.9;

}

.statement-box h3{

font-size:24px;

}

.statement-box{

padding:25px;

}

.back-news{

width:100%;

text-align:center;

}

}

.documents-section{
    padding:100px 0;
    background:#f7f9fc;
}

.documents-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.documents-label{
    display:inline-block;
    padding:8px 18px;
    background:#d8b24c;
    color:#111;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.documents-header h2{
    font-size:44px;
    color:#0f2341;
    margin-bottom:20px;
}

.documents-header p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.document-card{
    display:flex;
    gap:30px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #d8b24c;
}

.document-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.document-icon{
    min-width:72px;
    width:72px;
    height:72px;
    background:#0f2341;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.document-icon i{
    font-size:30px;
    color:#fff;
}

.document-content{
    flex:1;
}

.document-content h3{
    color:#0f2341;
    font-size:26px;
    margin-bottom:10px;
}

.document-category{
    display:inline-block;
    color:#b38b28;
    font-weight:600;
    margin-bottom:18px;
    font-size:14px;
}

.document-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.document-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.document-buttons a{
    text-decoration:none;
    padding:13px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.document-buttons a:first-child{
    background:#0f2341;
    color:#fff;
}

.document-buttons a:last-child{
    background:#d8b24c;
    color:#111;
}

.document-buttons a:hover{
    transform:translateY(-2px);
}

/* Tablet */

@media(max-width:992px){

.documents-grid{
grid-template-columns:1fr;
}

.documents-header h2{
font-size:38px;
}

}

/* Mobile */

@media(max-width:768px){

.documents-section{
padding:70px 0;
}

.documents-header{
margin-bottom:50px;
}

.documents-header h2{
font-size:30px;
}

.documents-header p{
font-size:16px;
}

.document-card{
flex-direction:column;
gap:20px;
padding:28px;
}

.document-icon{
width:65px;
height:65px;
min-width:65px;
}

.document-icon i{
font-size:26px;
}

.document-content h3{
font-size:22px;
}

.document-buttons{
flex-direction:column;
}

.document-buttons a{
text-align:center;
}

}


/* =========================================================================
   CASE STUDIES LIST
   ========================================================================= */

.cs-sec{ padding:50px 20px; background:var(--ivory); }

.cs-wrap{ max-width:1200px; margin:auto; }

.cs-head{ text-align:center; margin-bottom:40px; }

.cs-head h2{ font-size:34px; color:var(--ink); }

.cs-head p{ color:var(--slate); max-width:700px; margin:10px auto; }

.cs-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--hairline); }

.cs-card{ background:var(--white); border-radius:0; overflow:hidden; transition:.3s; }

.cs-card:hover{ transform:translateY(-4px); }

.cs-card img{ width:100%; height:360px; object-fit:cover; filter:grayscale(15%); }

.cs-text{ padding:20px; }

.cs-text h3 a{ text-decoration:none; color:var(--ink); font-size:18px; }

.cs-text p{ font-size:14px; color:var(--slate); margin-top:8px; }

.cs-pg{ text-align:center; margin-top:30px; }

.cs-pg button{
    margin:5px;
    padding:9px 14px;
    border:1px solid var(--hairline);
    background:var(--white);
    cursor:pointer;
    border-radius:0;
    font-family:var(--font-mono);
    font-size:12px;
}

.cs-pg .active{ background:var(--ink); color:var(--white); border-color:var(--ink); }

@media(max-width:768px){
    .cs-grid{ grid-template-columns:1fr; }
}

/* =========================================================================
   CASE STUDY DETAIL
   ========================================================================= */

.cs-detail-sec{
    background:linear-gradient(180deg,#f8f6f2 0%,#f2efe8 100%);
    padding:70px 20px;
}

.cs-detail-wrap{
    max-width:1150px;
    margin:auto;
}

/* ===========================
   CASE STUDY
=========================== */

.case-study{
    padding:90px 0;
    background:#f7f8fa;
}

.case-container{
    max-width:1180px;
    margin:auto;
    padding:0 20px;
}

/* Hero */

.case-header{
    background:#fff;
    padding:55px;
    border-radius:18px;
    border:1px solid #e6e6e6;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    margin-bottom:40px;
}

.case-category{
    display:inline-flex;
    padding:8px 16px;
    border-radius:40px;
    background:#0d2344;
    color:#fff;
    font-size:10px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.case-header h1{
    font-size:36px;
    line-height:1.15;
    color:#0d2344;
    margin-bottom:18px;
    font-weight:700;
}

.case-intro{
    font-size:18px;
    color:#555;
    line-height:1.8;
    max-width:900px;
}

/* Info Cards */

.case-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:50px;
}

.info-box{
    background:#fff;
    border-radius:16px;
    padding:30px;
    border:1px solid #ececec;
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.info-title{
    color:#8b8b8b;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:10px;
}

.info-value{
    color:#0d2344;
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

/* Content Sections */

.case-block{
    background:#fff;
    border-radius:18px;
    padding:45px;
    margin-bottom:30px;
    border:1px solid #ececec;
}

.case-block h2{
    font-size:30px;
    color:#0d2344;
    margin-bottom:20px;
}

.case-block p{
    color:#5b5b5b;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}

/* Challenges */

.case-list{
    padding-left:22px;
}

.case-list li{
    margin-bottom:18px;
    line-height:1.8;
    color:#555;
}

/* Key Terms */

.term-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.term-card{
    background:#fafafa;
    border-left:4px solid #0d2344;
    border-radius:12px;
    padding:25px;
}

.term-card h3{
    margin-bottom:10px;
    font-size:18px;
    color:#0d2344;
}

.term-card p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* Conclusion */

.case-conclusion{
    background:#0d2344;
    color:#fff;
    padding:40px;
    border-radius:18px;
}

.case-conclusion h2 {

    font-size: 22px;
}

.case-conclusion h2{
    color:#fff;
    margin-bottom:18px;
}

.case-conclusion p{
    color:#eef2f8;
    margin:0;
}

/* Navigation */

.case-nav{
    display:flex;
    justify-content:space-between;
    margin-top:50px;
    gap:20px;
}

.case-nav a{
    flex:1;
    padding:18px 28px;
    background:#fff;
    border-radius:14px;
    border:1px solid #e5e5e5;
    text-decoration:none;
    color:#0d2344;
    font-weight:600;
    transition:.3s;
}

.case-nav a:hover{
    background:#0d2344;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

.case-header{
padding:40px;
}

.case-header h1{
font-size:34px;
}

.case-info{
grid-template-columns:repeat(2,1fr);
}

.term-grid{
grid-template-columns:1fr;
}

.case-block{
padding:35px;
}

}

/* Mobile */

@media(max-width:768px){

.case-study{
padding:70px 0;
}

.case-header{
padding:28px;
}

.case-header h1{
font-size:18px;
}

.case-intro{
font-size:16px;
}

.case-info{
grid-template-columns:1fr;
}

.case-block{
padding:28px;
}

.case-block h2{
font-size:24px;
}

.case-block p{
font-size:16px;
}

.term-card{
padding:22px;
}

.case-nav{
flex-direction:column;
}

}


/*==================================================
CASE STUDIES SLIDER
==================================================*/

.funds-title{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:0;
}

.funds-title h2{
    font-size:26px;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    line-height:1.2;
}

.caseflow-section{


    position:relative;
    overflow:hidden;
    padding-bottom:20px;

}

.caseflow-slider{

    overflow:hidden;
    position:relative;

}

.caseflow-track{

    display:flex;
    gap:28px;
    width:max-content;
    padding:0 0 25px;
    position:relative;
    animation:caseFlowScroll 38s linear infinite;

}

.caseflow-track:hover{

    animation-play-state:paused;

}

/* Timeline */

.caseflow-track::before{

    content:"";
    position:absolute;
    left:0;
    top:38px;
    width:100%;
    height:3px;
    background:linear-gradient(
        90deg,
        var(--evergreen),
        var(--brass),
        var(--evergreen)
    );

}

.caseflow-item{

    width:370px;
    margin-top:60px;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    flex-shrink:0;

}

.caseflow-item:hover{

    transform:translateY(-12px);

    box-shadow:0 28px 55px rgba(0,0,0,.14);

}

.caseflow-dot{

    position:absolute;

    top:-32px;

    left:45px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:var(--brass);

    border:5px solid #fff;

    z-index:20;

}

.caseflow-image{

    display:block;
    overflow:hidden;

}

.caseflow-image img{

    width:100%;
    height:420px;
    object-fit:cover;

    transition:.6s;

    display:block;

}

.caseflow-item:hover img{

    transform:scale(1.08);

}

.caseflow-content{

    padding:28px;

}

.caseflow-content h3{

    font-size:23px;

    line-height:1.35;

    margin-bottom:16px;

}

.caseflow-content h3 a{

    color:var(--evergreen);

    text-decoration:none;

    transition:.3s;

}

.caseflow-content h3 a:hover{

    color:var(--brass);

}

.caseflow-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.caseflow-btn{

    display:inline-block;

    text-decoration:none;

    color:var(--evergreen);

    font-weight:600;

    font-size:14px;

    letter-spacing:.06em;

    text-transform:uppercase;

    transition:.3s;

}

.caseflow-btn:hover{

    color:var(--brass);

    transform:translateX(5px);

}

.caseflow-item::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;

    height:4px;

    background:var(--brass);

    transition:.45s;

}

.caseflow-item:hover::after{

    width:100%;

}

@keyframes caseFlowScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==========================
Responsive
==========================*/

@media(max-width:768px){

.caseflow-item{

    width:300px;

}

.caseflow-image img{

    height:300px;

}

.caseflow-content{

    padding:22px;

}

.caseflow-content h3{

    font-size:19px;

}

.caseflow-content p{

    font-size:15px;

}

}