.law-section{
    margin-top:40px;
    padding:0 20px;
}

/* Card */
.law-card{
    background:#ffffff;
    border-radius:22px;
    padding:25px;
    height:520px;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.04);
    transition:0.3s ease;
}

.law-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Header */
.law-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.law-header h3{
    font-size:20px;
    font-weight:700;
    color:#0f4c5c;
    position:relative;
}
 .law-header h3 span{color: #535454;
    font-size: 16px;}

.law-header h3::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:50px;
    height:3px;
    background:#1f9cad;
    border-radius:10px;
}

/* Counter */
.counter-badge{
    background:#1f9cad;
    color:#fff;
    padding:4px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* Scroll */
.law-content{
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
    padding-right:8px;
}

.law-content::-webkit-scrollbar{
    width:6px;
}

.law-content::-webkit-scrollbar-thumb{
    background:#1f9cad;
    border-radius:10px;
}

/* Item */
.law-item{
    background:#f8fafc;
    padding:15px;
    border-radius:16px;
    text-decoration:none;
    transition:0.3s ease;
    border:1px solid #eef2f7;
}

.law-item:hover{
    background:#1f9cad;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(31,156,173,0.25);
}

/* Title */
.law-title{
    font-size:14px;
    font-weight:600;
    color:#222;
    margin-bottom:6px;
}

.law-item:hover .law-title{
    color:#fff;
}

/* Meta */
.law-meta{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    font-size:11px;
}

.law-meta span{
    background:rgba(0,0,0,0.05);
    padding:3px 8px;
    border-radius:20px;
    color: #024249;
    font-size: 15px;
}

.law-item:hover .law-meta span{
    background:rgba(255,255,255,0.2);
    color:#fff;
}

/* Responsive */
@media(max-width:768px){
    .law-card{
        height:auto;
        margin-bottom:20px;
    }
}
