/* ===============================
NEWS SECTION WRAPPER
================================ */

.lw-news-wrapper{
padding:70px 20px;
background:#f3f4f6;
display:flex;
justify-content:center;
}

.lw-news-box{
max-width:1250px;
width:100%;
background:#fff;
border-radius:16px;
padding:40px;
box-shadow:0 25px 50px rgba(0,0,0,0.08);
}


/* ===============================
NEWS UPDATE TITLE
================================ */

.lw-news-title-section{
text-align:center;
margin-bottom:40px;
font-size:14px;
letter-spacing:3px;
color:#fff;
background:linear-gradient(90deg,#8b0000,#d00000);
padding:12px 0;
border-radius:8px;
}


/* ===============================
ARCHIVE HEADER
================================ */

.lw-archive-header{
text-align:center;
margin-bottom:40px;
}

.lw-archive-title{
font-size:32px;
font-weight:700;
color:#222;
margin-bottom:10px;
}

.lw-archive-sub{
color:#666;
font-size:15px;
}


/* ===============================
GRID
================================ */

.lw-news-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}


/* ===============================
CARD
================================ */

.lw-news-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 28px rgba(0,0,0,0.05);
transition:all .35s ease;
position:relative;
}

.lw-news-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 45px rgba(0,0,0,0.15);
}


/* ===============================
IMAGE
================================ */

.lw-news-image{
display:block;
overflow:hidden;
position:relative;
}

.lw-news-image img{
width:100%;
height:180px;
object-fit:cover;
transition:transform .5s ease;
}

.lw-news-card:hover .lw-news-image img{
transform:scale(1.06);
}


/* ===============================
CATEGORY BADGE
================================ */

.lw-news-category{
position:absolute;
top:12px;
left:12px;
background:#c30000;
color:#fff;
font-size:11px;
padding:6px 10px;
border-radius:20px;
text-transform:uppercase;
letter-spacing:.4px;
text-decoration:none;
}

/* category Hover */
.lw-news-category:hover{
color:#fff !important;
background:#ffc107;
}

/* ===============================
CONTENT
================================ */

.lw-news-content{
padding:18px;
}

.lw-news-title{
font-size:17px;
line-height:1.4;
margin-bottom:8px;
}

.lw-news-title a{
color:#111;
text-decoration:none;
font-weight:600;
}

.lw-news-title a:hover{
color:#c30000;
}

.lw-news-excerpt{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:12px;
}

.lw-read-more{
font-size:13px;
font-weight:600;
color:#c30000;
text-decoration:none;
}

.lw-read-more:hover{
text-decoration:underline;
}


/* ===============================
PAGINATION
================================ */

.lw-news-pagination{
margin-top:50px;
text-align:center;
}

.lw-news-pagination .page-numbers{
display:inline-block;
padding:10px 14px;
margin:4px;
border-radius:6px;
border:1px solid #ddd;
text-decoration:none;
color:#333;
}

.lw-news-pagination .current{
background:#c30000;
color:#fff;
border-color:#c30000;
}


/* ===============================
RESPONSIVE
================================ */

@media (max-width:1100px){

.lw-news-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media (max-width:768px){

.lw-news-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:480px){

.lw-news-grid{
grid-template-columns:1fr;
}

}