.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:25px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    border-left:5px solid #22c55e;
    transition:.25s;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.service-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.service-icon{
    width:54px;
    height:54px;
    border-radius:14px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.service-state{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    color:#fff;
}

.state-online{
    background:#16a34a;
}

.state-warning{
    background:#f59e0b;
}

.state-offline{
    background:#dc2626;
}

.service-name{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:8px;
}

.service-desc{
    font-size:15px;
    color:#6b7280;
    margin-bottom:18px;
}

.service-info{
    border-top:1px solid #eee;
    padding-top:15px;
}

.service-info div{
    display:flex;
    justify-content:space-between;
    margin:8px 0;
    font-size:14px;
}

.service-info span{
    color:#6b7280;
}

.service-info strong{
    color:#111827;
}