body{
    background:#fff7f6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

a:link {text-decoration: none;}
a:active {color:red; text-decoration: underline;}

/* HEADER */
.top-bar{
    background:linear-gradient(90deg,#2b0000,#5a0000);
    color:#fff;
    padding:14px 0;
}
.top-bar .brand{
    font-size:18px;
    font-weight:600;
}

/* SEARCH */
.search-box input{
    border-radius:6px 0 0 6px;
}
.search-box button{
    border-radius:0 6px 6px 0;
}

/* CARD */
.judgement-card{
    background:#fff;
    border:2px solid #e15b5b;
    border-radius:12px;
    padding:18px;
    margin-bottom:22px;
}
.thumb{
    width:90px;
    height:90px;
    background:#000;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
}
.citation{
    font-size:14px;
    color:#555;
}
.case-title{
    font-size:18px;
    font-weight:600;
    margin-top:5px;
}
.case-text{
    font-size:14px;
    color:#444;
}
.download-btn{
    background:#e35d5d;
    border:none;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
}

/* FOOTER */
.footer{
    background:#e35d5d;
    color:#fff;
    padding:30px 0;
    margin-top:40px;
}
.footer a{
    color:#fff;
    text-decoration:none;
    margin-left:15px;
    font-size:14px;
}

@media(max-width:768px){
    .case-title{font-size:16px;}
    .thumb{width:70px;height:70px;}
}