/* --- Vehicle Carousel Card Text Styles --- */

/* Title: centered, uppercase, modern sans-serif, black, ~18px */
.vcm-card-title {
    text-align: center;
    text-transform: uppercase;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600; /* semi-bold */
    font-size: 1.125rem; /* ~18px */
    color: #000;
    margin-bottom: 0.5rem;
}

/* Country: centered, smaller (~14px), gray */
.vcm-card-country {
    text-align: center;
    font-size: 0.875rem; /* ~14px */
    color: #4b5563; /* Tailwind gray-600 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* Price: centered, same size as title, bold, black */
.vcm-card-price {
    text-align: center;
    font-size: 1.125rem; /* ~18px */
    font-weight: 700; /* bold */
    color: #000;
    margin-top: auto; /* pushes to bottom of card */
}
