/* Car Specifications Styling */
.car-specifications-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.car-specifications-wrapper h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.car-specifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates two columns */
    gap: 15px; /* Space between items */
}

/* Responsive: switch to a single column on smaller screens */
@media (max-width: 768px) {
    .car-specifications-list {
        grid-template-columns: 1fr;
    }
}

.car-specifications-list li {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.car-specifications-list .spec-icon {
    color: #1AC8ED; /* Matching your site's blue */
    font-size: 1.2em;
    margin-right: 8px; /* Reduced space slightly */
    width: 25px;
    text-align: center;
    flex-shrink: 0; /* Prevents the icon from shrinking */
}

.car-specifications-list .spec-label {
    color: #888;
    margin-left: 0; /* Override potential theme styles */
    padding-right: 10px; /* Add some space before the value */
}

.car-specifications-list .spec-value {
    font-weight: bold;
    color: #333;
    margin-left: auto; /* This pushes the value to the far right */
}
