/* ========================================
   기본 정보 (가로 전체)
======================================== */

.vehicle-basic-info {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
}

.info-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-right: 1px solid #e2e8f0;
    text-align: center;
}

.info-item:last-child {
    border-right: none;
}

.info-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
    text-align: center;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    word-break: keep-all;
    line-height: 1.4;
}

.info-value-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}

.info-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.info-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-safe {
    background: #dcfce7;
    color: #16a34a;
}

.badge-clear {
    background: #dbeafe;
    color: #2563eb;
}

/* 주요 스펙 */
.key-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.spec-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
}
