/**
 * Theme Name: Car Dealer
 * Template: twentytwentyfive
 */

.two-column-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    gap: 20px; /* Adds space between the columns */
}

.column-left {
    flex: 1; /* Makes the left column flexible */
    min-width: 250px; /* Ensures the column doesn't get too narrow */
}

.column-right {
    flex: 2; /* Makes the right column wider than the left */
    min-width: 300px; /* Ensures the column doesn't get too narrow */
}

/* Optional: Basic styling for the featured image */
.featured-image img {
    max-width: 100%;
    height: auto;
}

/* Optional: Media query for responsiveness */
@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column; /* Stacks columns vertically on mobile */
    }
}
