diff --git a/packages/berlin/src/components/table/Table.styled.tsx b/packages/berlin/src/components/table/Table.styled.tsx
index b399c73d..bdc199f3 100644
--- a/packages/berlin/src/components/table/Table.styled.tsx
+++ b/packages/berlin/src/components/table/Table.styled.tsx
@@ -1,10 +1,15 @@
import styled from 'styled-components';
+import { FlexColumn } from '../containers/FlexColumn.styled';
export const TableContainer = styled.table`
- width: 100%;
- border-collapse: collapse;
- margin-bottom: 2rem;
- table-layout: fixed;
+ display: none;
+ @media (min-width: 600px) {
+ border-collapse: collapse;
+ display: table;
+ margin-bottom: 2rem;
+ table-layout: fixed;
+ width: 100%;
+ }
`;
export const TableHeader = styled.th`
@@ -24,3 +29,24 @@ export const TableCell = styled.td`
export const TableRow = styled.tr`
border-bottom: 1px solid var(--color-black);
`;
+
+export const Cards = styled(FlexColumn)`
+ width: 100%;
+ @media (min-width: 600px) {
+ display: none;
+ }
+`;
+
+export const Card = styled.article`
+ border-radius: 0.5rem;
+ border: 1px solid var(--color-black);
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ padding: 2rem;
+ width: 100%;
+
+ @media (min-width: 600px) {
+ display: none;
+ }
+`;
diff --git a/packages/berlin/src/components/table/Table.tsx b/packages/berlin/src/components/table/Table.tsx
index abb6fd79..aba91d95 100644
--- a/packages/berlin/src/components/table/Table.tsx
+++ b/packages/berlin/src/components/table/Table.tsx
@@ -1,30 +1,43 @@
import { Body } from '../typography/Body.styled';
-import { TableContainer, TableCell, TableHeader, TableRow } from './Table.styled';
+import { Subtitle } from '../typography/Subtitle.styled';
+import { TableContainer, TableCell, TableHeader, TableRow, Card, Cards } from './Table.styled';
function Table({ columns, rows }: { columns: string[]; rows: (string | React.ReactNode)[][] }) {
return (
-