.car__grid {
    --primary: #002c5f;
    --secondary: #cfd3d9;
    --muted: #777;
    --border: #eaeaea;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(304px, 1fr));
    gap: 1.5rem;
    .car__card {
        background: #fff;
        border-radius: 12px;
        padding: 0.75rem;
        border: 1px solid var(--border);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
        position: relative;
        .car__card__content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        img {
            width: 100%;
            max-width: 450px;
            object-fit: contain;
            margin-bottom: 1.25rem;
        }
        .car-name {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
        }
        .info {
            color: var(--muted);
        }
        .price-label {
            color: var(--muted);
            margin-top: 1rem;
        }
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        .leasing {
            font-weight: 600;
            margin-block: 0.625rem;
        }
        .spec {
            font-size: 0.875rem;
            color: var(--muted);
            min-height: 2.5rem;
        }
        .catalog {
            color: var(--muted);
        }
        .catalog span {
            text-decoration: line-through;
        }
        .badge {
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            padding-top: 1rem;
        }

        .model {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--secondary);
            padding-bottom: 1rem;
        }
        .badge, .model {
            text-align: center;
        }
    }
}
