diff --git a/app/templates/_link_card.html b/app/templates/_link_card.html
index cb0829c..73ba02c 100644
--- a/app/templates/_link_card.html
+++ b/app/templates/_link_card.html
@@ -10,12 +10,14 @@
🕓 hinzugefügt am {{ link.created_at | datum }}
-
-
{{ link.summary }}
-
-
+
+
-
-
+
Speichern
.panel { margin-bottom: 0; }
+ #links > #empty-state { grid-column: 1 / -1; }
+ @media (min-width: 1000px) { #links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
+ @media (min-width: 1500px) { #links { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
+
+ /* Auf schmalen Geräten die Seitenleiste über den Inhalt stellen. */
+ @media (max-width: 800px) {
+ .layout { flex-direction: column; gap: 16px; padding: 0 16px; }
+ .sidebar { width: auto; }
+ }
.facet-group h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 16px 0 8px; }
.facet { display: flex; justify-content: space-between; padding: 5px 8px; border-radius: 6px; font-size: .9rem; }
.facet:hover { background: var(--panel2); text-decoration: none; }
diff --git a/app/templates/index.html b/app/templates/index.html
index c3cdaa0..2c47afb 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -54,8 +54,9 @@