.category-section{

padding:70px 0;

}

.category-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.category-header h2{

padding-left:15px;

font-size:32px;

font-weight:bold;

}

.category-header a{

text-decoration:none;

font-weight:bold;

color:#153D8A;

}

.category-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:25px;

}

.category-featured{

position:relative;

overflow:hidden;

border-radius:15px;

}

.category-featured img{

width:100%;

height:420px;

object-fit:contain;

}

.featured-content{

position:absolute;

bottom:0;

left:0;

width:100%;

padding:30px;

background:linear-gradient(transparent,rgba(0,0,0,.9));

}

.featured-content span{

color:#fff;

padding:8px 15px;

border-radius:30px;

font-size:12px;

font-weight:bold;

}

.featured-content h3{

margin-top:15px;

color:#fff;

font-size:34px;

}

.category-list{

display:flex;

flex-direction:column;

gap:18px;

}

.category-list article{

display:flex;

gap:15px;

background:#fff;

padding:10px;

border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.category-list img{

width:140px;

height:90px;

object-fit:contain;

border-radius:8px;

}

.category-list h4{

font-size:18px;

margin:0;

}

@media(max-width:992px){

.category-grid{

grid-template-columns:1fr;

}

}