/* ==========================================================
Works
========================================================== */
.works{
    background:#fff;
}
.works__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:70px;
}
.work-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.work-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.10);
}
.work-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}
.work-card__body{
    padding:30px;
}
.work-card__category{
    display:inline-block;
    padding:6px 14px;
    border-radius:999px;
    background:#ECFDF5;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}
.work-card h3{
    font-size:24px;
    line-height:1.5;
    margin-bottom:18px;
    color:#111827;
}
.work-card p{
    line-height:1.8;
    color:#64748b;
    margin-bottom:28px;
}
.work-card__result{
    border-top:1px solid #edf2f7;
    padding-top:20px;
    font-weight:700;
    color:var(--primary-color);
}
.works__button{
    text-align:center;
    margin-top:70px;
}
@media(max-width:992px){
.works__grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:768px){
.works__grid{
grid-template-columns:1fr;
}
}