.autoabo-brand-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 -12px;
}
.autoabo-brand-list-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: calc(33.333% - 24px);
    margin: 12px;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 220px;
    transition: box-shadow 0.2s;
    overflow: hidden;
}
.autoabo-brand-list-box:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-color: #ddd;
}
.autoabo-brand-list-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
    margin: 0;
    padding: 0;
    display: block;
}
.autoabo-brand-list-box a {
    display: block;
    padding: 18px 12px 12px 12px;
    font-size: 1.1em;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    border-radius: 0 0 12px 12px;
    flex: 1 1 auto;
}
@media (max-width: 900px) {
    .autoabo-brand-list-box { width: calc(50% - 24px); }
}
@media (max-width: 600px) {
    .autoabo-brand-list-box { width: 100%; }
    .autoabo-brand-list-grid { gap: 12px; }
}
