.chukai-list{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:30px;
margin-top:40px;
}

.chukai-item a{
display:block;
padding:12px;
border:1px solid #eee;
background:#fff;
transition:0.2s;
}

.chukai-item a:hover{
border-color:#ccc;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.chukai-logo{
height:140px;
display:flex;
align-items:center;
justify-content:center;
}

.chukai-logo img{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.chukai-title{
margin-top:8px;
margin-bottom:3px;
font-size:14px;
text-align:center;
}

.chukai-location{
color:#f08300;
font-size:13px;
margin-left:0.5em;
}

.pagination{
margin-top:40px;
text-align:center;
}

@media (max-width:600px){

.chukai-list{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.chukai-item a{
padding:8px;
}

.chukai-logo{
aspect-ratio:1/1;
height:auto;
}

.chukai-logo img{
width:100%;
height:100%;
object-fit:cover;
}

}