
.news-page-container{
    width:92%;
    max-width:1240px;
    margin:0 auto;
}
.news-page-hero{
    background:linear-gradient(135deg,#071326 0%,#b40019 100%);
    color:#fff;
    padding:75px 0;
}
.news-page-hero span{
    display:inline-block;
    background:rgba(255,255,255,.14);
    padding:8px 16px;
    border-radius:999px;
    font-weight:900;
    letter-spacing:.5px;
    margin-bottom:16px;
}
.news-page-hero h1{
    font-size:52px;
    margin:0 0 12px;
    line-height:1.05;
}
.news-page-hero p{
    font-size:19px;
    max-width:680px;
    margin:0;
    opacity:.92;
}
.news-page-main{
    padding:55px 0 80px;
}
.news-featured{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:0;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(7,19,38,.12);
    margin-bottom:36px;
}
.news-featured-img{
    min-height:390px;
    background:#fff0f2;
}
.news-featured-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.news-featured-content{
    padding:48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.news-date{
    color:#b40019;
    font-weight:900;
    font-size:14px;
    margin-bottom:12px;
    display:inline-block;
}
.news-featured-content h2{
    font-size:38px;
    color:#071326;
    line-height:1.2;
    margin:0 0 18px;
}
.news-featured-content p{
    color:#5d6a7c;
    font-size:17px;
    line-height:1.7;
    margin:0 0 24px;
}
.news-btn{
    background:#b40019;
    color:#fff !important;
    text-decoration:none;
    padding:14px 24px;
    border-radius:999px;
    font-weight:900;
    display:inline-block;
    width:max-content;
    box-shadow:0 15px 30px rgba(180,0,25,.2);
}
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.news-card-modern{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(7,19,38,.1);
    transition:.25s ease;
}
.news-card-modern:hover{
    transform:translateY(-6px);
}
.news-card-img{
    height:210px;
    background:#fff0f2;
}
.news-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.news-card-body{
    padding:24px;
}
.news-card-body h3{
    color:#071326;
    font-size:22px;
    line-height:1.35;
    margin:0 0 12px;
}
.news-card-body p{
    color:#5d6a7c;
    line-height:1.65;
    margin:0 0 18px;
}
.news-card-body a{
    color:#b40019;
    font-weight:900;
    text-decoration:none;
}
.news-empty-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 45px rgba(7,19,38,.08);
}
.news-detail-main{
    padding:60px 0 90px;
}
.news-detail-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 25px 70px rgba(7,19,38,.12);
}
.news-detail-card h1{
    font-size:44px;
    color:#071326;
    line-height:1.15;
    margin:0 0 28px;
}
.news-detail-img{
    width:100%;
    max-height:520px;
    object-fit:cover;
    border-radius:24px;
    margin-bottom:30px;
    background:#fff0f2;
}
.news-detail-content{
    color:#24324a;
    font-size:18px;
    line-height:1.85;
    margin-bottom:35px;
}
@media(max-width:1000px){
    .news-featured{grid-template-columns:1fr}
    .news-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
    .news-page-hero{padding:45px 0}
    .news-page-hero h1{font-size:38px}
    .news-featured-content{padding:28px}
    .news-featured-content h2{font-size:28px}
    .news-grid{grid-template-columns:1fr}
    .news-detail-card{padding:25px}
    .news-detail-card h1{font-size:32px}
}
