/* ==========================================================
   TRUEVITAHUB
   AI NEWS SECTION
========================================================== */

.tvh-news-section{
    padding:110px 20px;
    background:#F8FAFC;
    position:relative;
}

.tvh-news-grid{
    display:grid;
    grid-template-columns:1.45fr .9fr;
    gap:34px;
    margin-top:60px;
}

/* =====================================
   Featured News
===================================== */

.tvh-news-featured{

    background:#fff;

    border:1px solid #E8EDF8;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(25,40,80,.06);

    transition:.35s;

}

.tvh-news-featured:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(45,95,255,.12);

}

.tvh-news-image{

    height:330px;

    overflow:hidden;

}

.tvh-news-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.tvh-news-featured:hover img{

    transform:scale(1.05);

}

.tvh-news-content{

    padding:34px;

}

.tvh-news-category{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:999px;

    background:#EEF4FF;

    color:#2952E3;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.tvh-news-content h3{

    font-size:34px;

    line-height:1.3;

    color:#0F172A;

    margin:0 0 18px;

    font-weight:800;

}

.tvh-news-content p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;

    margin-bottom:28px;

}

.tvh-news-meta{

    display:flex;

    gap:24px;

    color:#64748B;

    font-size:14px;

    margin-bottom:30px;

}

/* =====================================
   Right Side News
===================================== */

.tvh-news-list{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.tvh-news-card{

    background:#fff;

    border:1px solid #E9EEF8;

    border-radius:22px;

    padding:30px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.tvh-news-card:hover{

    transform:translateY(-6px);

    border-color:#2952E3;

    box-shadow:0 22px 45px rgba(41,82,227,.12);

}

.tvh-news-card h4{

    margin:0 0 16px;

    color:#0F172A;

    font-size:22px;

    line-height:1.45;

    font-weight:700;

}

.tvh-news-card span{

    display:block;

    margin-bottom:18px;

    color:#64748B;

    font-size:14px;

}

.tvh-news-card a{

    color:#2952E3;

    font-weight:700;

    text-decoration:none;

}

.tvh-news-card a:hover{

    text-decoration:underline;

}

/* =====================================
   Footer
===================================== */

.tvh-news-section .tvh-section-footer{

    margin-top:55px;

    text-align:center;

}

/* ==========================================================
   AI News Responsive
========================================================== */

/* ---------- Large Laptop ---------- */

@media (max-width:1400px){

    .tvh-news-grid{

        grid-template-columns:1.35fr .9fr;

        gap:28px;

    }

}

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    .tvh-news-section{

        padding:90px 0;

    }

    .tvh-news-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

    .tvh-news-section{

        padding:80px 0;

    }

    .tvh-news-section h2{

        font-size:40px;

    }

    .tvh-news-image{

        height:280px;

    }

    .tvh-news-content{

        padding:28px;

    }

    .tvh-news-content h3{

        font-size:28px;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .tvh-news-section{

        padding:70px 0;

    }

    .tvh-news-section .tvh-section-heading{

        margin-bottom:50px;

    }

    .tvh-news-section h2{

        font-size:34px;

        line-height:1.25;

    }

    .tvh-news-section p{

        font-size:16px;

    }

    .tvh-news-image{

        height:220px;

    }

    .tvh-news-content{

        padding:24px;

    }

    .tvh-news-content h3{

        font-size:24px;

    }

    .tvh-news-meta{

        flex-wrap:wrap;

        gap:12px;

    }

    .tvh-news-card{

        padding:24px;

    }

    .tvh-news-card h4{

        font-size:20px;

    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    .tvh-news-section{

        padding:60px 0;

    }

    .tvh-news-section h2{

        font-size:28px;

    }

    .tvh-news-section .tvh-section-badge{

        font-size:12px;

        padding:8px 14px;

    }

    .tvh-news-image{

        height:190px;

    }

    .tvh-news-content{

        padding:20px;

    }

    .tvh-news-content h3{

        font-size:22px;

    }

    .tvh-news-card{

        padding:20px;

    }

    .tvh-news-card h4{

        font-size:18px;

        line-height:1.5;

    }

    .tvh-news-card a,

    .tvh-news-content .tvh-btn-primary{

        width:100%;

        justify-content:center;

    }

}