.hlca-container{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:16px;
margin:24px 0;
}
.hlca-item{
position:relative;
display:flex;
flex-direction:column; min-height:120px;
padding:18px;
border-radius:14px;
background:#ffffff;
border:1px solid #e7e7e7;
text-decoration:none;
transition:all .25s ease;
overflow:hidden;
box-sizing:border-box;
}
.hlca-item::before{
content:'';
position:absolute;
top:0;
left:0;
width:4px;
height:100%;
background:#d60000;
}
.hlca-item:hover{
transform:translateY(-4px);
border-color:#d60000;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.hlca-title{
font-size:16px;
line-height:1.4;
font-weight:700;
color:#111111;
margin-bottom:10px;
}
.hlca-desc{
font-size:14px;
line-height:1.3;
color:#555555;
}
@media(max-width:1024px){
.hlca-container{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}
@media(max-width:768px){
.hlca-container{
grid-template-columns:1fr;
}
.hlca-item{
min-height:auto;
}
}