*,
*::before,
*::after{
box-sizing:border-box;
} .cw-wrapper{
width:100%;
max-width:1400px;
margin:40px auto;
padding:0 15px;
} .cw-search{
margin-bottom:18px;
}
.cw-search input{
width:100%;
height:48px;
border:1px solid #e5e7eb;
border-radius:12px;
padding:0 18px;
font-size:15px;
outline:none;
transition:.25s;
}
.cw-search input:focus{
border-color:#22c55e;
box-shadow:0 0 0 3px rgba(34,197,94,.15);
} .cw-filters{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
}
.cw-filter{
border:none;
background:#f3f4f6;
color:#374151;
padding:10px 18px;
border-radius:50px;
cursor:pointer;
font-weight:600;
transition:.25s;
}
.cw-filter:hover,
.cw-filter.active{
background:#22c55e;
color:#fff;
} .cw-grid{
display:grid;
gap:25px;
}
.cw-grid.columns-1{
grid-template-columns:repeat(1,1fr);
}
.cw-grid.columns-2{
grid-template-columns:repeat(2,1fr);
}
.cw-grid.columns-3{
grid-template-columns:repeat(3,1fr);
}
.cw-grid.columns-4{
grid-template-columns:repeat(4,1fr);
} .cw-card{
background:#fff;
border-radius:18px;
overflow:hidden;
display:flex;
flex-direction:column;
border:1px solid #ececec;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.30s;
height:100%;
}
.cw-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
} .cw-card-image{
position:relative;
height:230px;
overflow:hidden;
background:#f7f7f7;
}
.cw-card-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .5s ease;
}
.cw-card:hover .cw-card-image img{
transform:scale(1.06);
} .cw-badge{
position:absolute;
top:14px;
left:14px;
z-index:10;
padding:7px 12px;
border-radius:20px;
font-size:11px;
font-weight:700;
box-shadow:0 6px 16px rgba(0,0,0,.10);
}
.cw-badge-orange{
background:#FFE5B5;
color:#A95B00;
}
.cw-badge-green{
background:#DDFBE8;
color:#12854A;
}
.cw-category{
position:absolute;
top:14px;
right:14px;
z-index:10;
background:#EEF2FF;
color:#4B5563;
padding:7px 12px;
border-radius:20px;
font-size:11px;
font-weight:700;
box-shadow:0 6px 16px rgba(0,0,0,.08);
} .cw-card-body{
padding:22px;
display:flex;
flex-direction:column;
flex:1;
} .cw-title{
font-size:22px;
line-height:1.35;
color:#111827;
font-weight:700;
margin-bottom:12px;
} .cw-description{
color:#6B7280;
font-size:14px;
line-height:1.7;
overflow:hidden;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:3;
min-height:72px;
} .cw-card-footer{
padding:0 22px 22px;
margin-top:auto;
} .cw-button{
width:100%;
height:48px;
display:flex;
justify-content:center;
align-items:center;
gap:10px;
border-radius:12px;
background:#22C55E;
color:#fff !important;
text-decoration:none !important;
font-weight:700;
font-size:15px;
transition:.25s;
}
.cw-button:hover{
background:#16A34A;
} .cw-empty{
text-align:center;
padding:80px 20px;
} @media(max-width:1024px){
.cw-grid.columns-4,
.cw-grid.columns-3{
grid-template-columns:repeat(2,1fr);
}
} @media(max-width:768px){
.cw-wrapper{
padding:12px;
}
.cw-grid{
grid-template-columns:1fr !important;
gap:20px;
}
.cw-card-image{
height:210px;
}
.cw-title{
font-size:20px;
}
.cw-description{
min-height:auto;
}
}