+ {/* Founded Year */}
+ {company.founded_year && (
+
+ Founded:
+ {company.founded_year}
+
+ )}
+
+ {/* Location */}
+ {company.headquarters_location && (
+
+
+ {company.headquarters_location}
+
+ )}
+
+ {/* Rating */}
+ {company.average_rating > 0 && (
+
+
+ {company.average_rating.toFixed(1)}
+ ({company.review_count} reviews)
+
+ )}
+
+
+ {/* Stats Display */}
+
+ {(company as any).ride_count > 0 && (
+
+
+ {(company as any).ride_count}
+ designs
+
+ )}
+
+ {(company as any).coaster_count > 0 && (
+
+ •
+ {(company as any).coaster_count}
+ coasters
+
+ )}
+
+ {(company as any).model_count > 0 && (
+
+ •
+ {(company as any).model_count}
+ concepts
+
+ )}
+
+