

.vehicle-specs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.vehicle-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 14px;
}

.vehicle-spec-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7!important;
    border-radius: 10px;
}

.vehicle-spec-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
rgb(151, 104, 104)
.vehicle-spec-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vehicle-spec-label {
    font-size: 12px;
    line-height: 1.3;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.vehicle-spec-value {
    font-size: 15px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}

@media (max-width: 767px) {
    .vehicle-specs-wrapper {
        grid-template-columns: 1fr;
    }
}

