.law-latest-card-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.law-latest-card{
    display:block;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    transition:.25s ease;
}

.law-latest-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    border-color:rgba(200,169,107,.45);
}

.law-latest-thumb{
    aspect-ratio:16 / 10;
    overflow:hidden;
    background:#f1f1f1;
}

.law-latest-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.law-latest-card:hover .law-latest-thumb img{
    transform:scale(1.06);
}

.law-latest-body{
    padding:24px 22px 26px;
}

.law-latest-body h3{
    margin:0 0 13px;
    color:#0f172a;
    font-size:21px;
    font-weight:900;
    line-height:1.35;
    letter-spacing:-.04em;
}

.law-latest-body p{
    min-height:54px;
    margin:0 0 18px;
    color:#666;
    font-size:15.5px;
    line-height:1.75;
}

.law-latest-body span{
    display:inline-flex;
    color:#b89455;
    font-size:14px;
    font-weight:800;
}

.law-latest-body span:after{
    content:'→';
    margin-left:7px;
}

.law-latest-empty{
    grid-column:1 / -1;
    padding:40px;
    text-align:center;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    color:#666;
}

@media (max-width:1100px){
    .law-latest-card-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:640px){
    .law-latest-card-grid{
        grid-template-columns:1fr;
    }
}