From d90c5beff35b9ceb803ff2750847df2306c9dd4e Mon Sep 17 00:00:00 2001 From: JUSN Date: Tue, 11 Aug 2026 23:52:36 +0200 Subject: [PATCH] Startseite: sichtbarer Ratgeber-Abschnitt (Paragraf 7) - 4 Ratgeber-Artikel als anklickbare Karten direkt auf der Startseite (statt nur Fusszeilen-Link) + 'Alle Ratgeber ansehen' - hilft Besuchern (Auffindbarkeit) und interner Verlinkung (SEO) Co-Authored-By: Claude Opus 4.8 --- webseite/index.html | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/webseite/index.html b/webseite/index.html index 1db24f6..7bd2bd2 100644 --- a/webseite/index.html +++ b/webseite/index.html @@ -286,6 +286,18 @@ } .wl-input::placeholder { color: #9a958a; } .wl-btn { width: 100%; cursor: pointer; text-align: center; font-family: inherit; } + + /* Ratgeber-Abschnitt */ + .rat-liste { display: grid; gap: 11px; margin-top: 4px; } + .rat-karte { + display: block; background: #fff; border: 1px solid rgba(33, 33, 29, 0.28); + padding: 15px 18px; text-decoration: none; color: var(--tinte); + box-shadow: 3px 4px 0 rgba(33, 33, 29, 0.08); + } + .rat-karte b { display: block; font-size: 18px; color: var(--amtsblau); margin-bottom: 3px; } + .rat-karte span { font-size: 14.5px; color: var(--grau); } + .rat-alle { margin-top: 14px; font-size: 16px; } + .rat-alle a { color: var(--amtsblau); font-weight: 700; }