.vehicle-show {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.vehicle-visual {
    overflow: hidden;
    border-radius: 28px;
    background: #e5e7eb;
    box-shadow: var(--shadow);
}

.vehicle-visual img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.vehicle-info {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.big {
    font-size: 36px;
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.spec-list div {
    padding: 16px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid var(--border);
}

.spec-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.spec-list dd {
    margin: 6px 0 0;
    font-weight: 900;
}

@media (max-width: 920px) {
    .vehicle-show {
        grid-template-columns: 1fr;
    }
}
