diff --git a/app/[locale]/products/[...slug]/page.tsx b/app/[locale]/products/[...slug]/page.tsx
index c9ba3d34..8f932d9a 100644
--- a/app/[locale]/products/[...slug]/page.tsx
+++ b/app/[locale]/products/[...slug]/page.tsx
@@ -5,7 +5,7 @@ import ProductTabs from '@/components/ProductTabs';
import ProductTechnicalData from '@/components/ProductTechnicalData';
import RelatedProducts from '@/components/RelatedProducts';
import DatasheetDownload from '@/components/DatasheetDownload';
-import { Badge, Container, Heading, Section } from '@/components/ui';
+import { Badge, Card, Container, Heading, Section } from '@/components/ui';
import { getDatasheetPath } from '@/lib/datasheets';
import { getAllProducts, getProductBySlug } from '@/lib/mdx';
import { mapFileSlugToTranslated, mapSlugToFileSlug } from '@/lib/slugs';
@@ -239,57 +239,59 @@ export default async function ProductPage({ params }: ProductPageProps) {
href={`/${locale}/products/${productSlug}/${product.translatedSlug}`}
className="group block bg-white rounded-[32px] overflow-hidden shadow-sm hover:shadow-2xl transition-all duration-500 border border-neutral-dark/5"
>
-
- {product.frontmatter.images?.[0] && (
- <>
-
- {/* Subtle reflection/shadow effect */}
-
- >
- )}
-
-
-
- {product.frontmatter.categories.map((cat, i) => (
-
- {cat}
+
+
+ {product.frontmatter.images?.[0] && (
+ <>
+
+ {/* Subtle reflection/shadow effect */}
+
+ >
+ )}
+
+
+
+ {product.frontmatter.categories.map((cat, i) => (
+
+ {cat}
+
+ ))}
+
+
+ {product.frontmatter.title}
+
+
+ {product.frontmatter.description}
+
+
+
+ {t('details')}
- ))}
+
+
-
- {product.frontmatter.title}
-
-
- {product.frontmatter.description}
-
-
-
- {t('details')}
-
-
-
-
+
))}
diff --git a/app/[locale]/team/page.tsx b/app/[locale]/team/page.tsx
index 3d15b346..69ae418d 100644
--- a/app/[locale]/team/page.tsx
+++ b/app/[locale]/team/page.tsx
@@ -114,7 +114,7 @@ export default async function TeamPage({ params }: TeamPageProps) {
{/* Michael Bodemer Section - Sticky Narrative Split Layout */}
-
+
@@ -161,7 +161,7 @@ export default async function TeamPage({ params }: TeamPageProps) {
-
+
{/* Legacy Section - Immersive Background */}
@@ -217,7 +217,7 @@ export default async function TeamPage({ params }: TeamPageProps) {
{/* Klaus Mintel Section - Reversed Split Layout */}
-
+
{/* Manifesto Section - Modern Grid */}
@@ -292,9 +292,9 @@ export default async function TeamPage({ params }: TeamPageProps) {