/**
 * 차량명 앞 브랜드 로고 — 공통 (가로·세로 박스 20×15)
 * 즉시출고·예산별·step1·index·후기 연관차량·step2 등 동일 기준
 */
.brand-logo.brand-logo--card,
.brand-logo--card,
.step-fixed-bar .brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 15px;
}

.brand-logo--card .brand-logo-img,
.brand-logo--card > img,
.step-fixed-bar .brand-logo img,
.estimate-step2 .car-name > img.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.estimate-step2 .car-name > img.brand-logo {
    flex-shrink: 0;
    width: 20px;
    height: 15px;
}

@media (max-width: 768px) {
    .brand-logo.brand-logo--card,
    .brand-logo--card,
    .step-fixed-bar .brand-logo {
        width: calc(20px / 1.2);
        height: calc(15px / 1.2);
    }

    .estimate-step2 .car-name > img.brand-logo {
        width: calc(20px / 1.2);
        height: calc(15px / 1.2);
    }
}
