/* =========================================================
   visionssuche.net – Neubau
   Warmes Naturdesign · Erd-Orange / Waldgrün / Sand
   ========================================================= */

:root {
  --orange: #d4732b;
  --orange-dark: #b85f1e;
  --forest: #2e4b3a;
  --forest-light: #3f6450;
  --cream: #f7f1e7;
  --sand: #efe5d4;
  --ink: #2a2622;
  --muted: #6f6557;
  --line: #e0d5c3;
  --white: #fffdf9;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(46, 75, 58, 0.08);
  --shadow-lg: 0 18px 50px rgba(46, 75, 58, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest);
  line-height: 1.15;
  font-weight: 550;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(30px, 4.2vw, 46px); }
h2 { font-size: clamp(23px, 2.8vw, 31px); }
h3 { font-size: 20px; }

p { margin: 0 0 1.1em; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2em 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Top-Bar ---------- */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.top-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0a463, var(--orange) 60%, var(--orange-dark));
  display: grid; place-items: center;
  color: #fff; font-size: 20px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.35);
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.brand-text .dot { color: var(--orange); }

.search form { display: flex; align-items: center; }
.search input {
  font-family: var(--font-sans);
  font-size: 14.5px;
  padding: 9px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  width: 190px;
  transition: border-color .15s, width .2s;
}
.search input:focus { outline: none; border-color: var(--orange); width: 220px; }

/* ---------- Hauptnavigation ---------- */
.main-nav {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.main-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.main-nav a, .main-nav .nav-more-btn {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 13px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.main-nav a:hover, .main-nav .nav-more-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}
.main-nav a.active { border-bottom-color: var(--orange); color: #fff; }

.nav-more { position: relative; display: inline-flex; }
.nav-more-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 50;
}
.nav-more.open .nav-more-menu { display: block; }
.nav-more-menu a {
  display: block;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}
.nav-more-menu a:hover { background: var(--cream); color: var(--orange-dark); }

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 9px 18px 9px 4px;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand .brand-mark { width: 30px; height: 30px; flex-shrink: 0; transition: transform .3s ease; }
.nav-brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-word {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-word .dot { color: var(--orange); }
.nav-login { margin-left: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: none;
  color: #fff; font-size: 26px; cursor: pointer;
  padding: 10px 14px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange-dark); }

/* ---------- Layout: Inhalt + Sidebar ---------- */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 46px;
  padding: 18px 0 70px;
  align-items: start;
}
.content { min-width: 0; }
.content img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 0 0 1.4em; }
.content ul, .content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.content li { margin-bottom: 0.4em; }
.content h2 { margin-top: 1.5em; }
.content a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }

.lead { font-size: 1.15em; color: var(--forest-light); font-weight: 500; }

/* ---------- Sidebar ---------- */
.sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 22px; }
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.side-card h2 {
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.side-links a { display: block; padding: 4px 0; font-weight: 500; }
.news-item { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.news-item:last-child { border-bottom: none; }
.news-date { color: var(--orange-dark); font-weight: 600; font-size: 13px; }
.news-item a { font-weight: 600; }
.news-item .ort { color: var(--muted); font-size: 13.5px; }

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-lg);
}
.hero img { margin: 0; border-radius: 0; box-shadow: none; width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,75,58,0) 35%, rgba(46,75,58,.78));
  display: flex; align-items: flex-end;
  padding: 30px;
}
.hero-overlay h1 { color: #fff; margin: 0; text-shadow: 0 2px 18px rgba(0,0,0,.4); }

.peace-banner {
  background: var(--sand);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  text-align: center;
  font-size: 15.5px;
}
.peace-banner strong { color: var(--forest); }

/* ---------- FAQ (Akkordeon) ---------- */
.faq { max-width: 820px; }
.faq-gruppe { margin: 0 0 14px; color: var(--orange-dark); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.faq-gruppe:not(:first-child) { margin-top: 34px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-serif); font-size: 18px; color: var(--forest);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 24px; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--muted); }
.faq .faq-a p { margin: 0 0 .8em; }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- Themen-Subnavigation ---------- */
.subnav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 26px; padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}
.subnav a {
  font-size: 14px; font-weight: 600; color: var(--forest);
  background: var(--sand); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; text-decoration: none;
  transition: all .15s ease;
}
.subnav a:hover { background: var(--forest); color: #fff; text-decoration: none; }
.subnav a.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.float-img { float: left; width: 280px; max-width: 42%; margin: 4px 26px 14px 0; }
@media (max-width: 560px) { .float-img { float: none; width: 100%; max-width: 100%; margin: 0 0 18px; } }

/* ---------- Zahlenband ---------- */
.zahlenband {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 50px;
}
.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.zahl-item {
  position: relative;
  padding-top: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.zahl-item::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 46px; height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transform: translateX(-50%) scaleX(0);
  transition: transform .9s ease .25s;
}
.zahl-item.sichtbar { opacity: 1; transform: none; }
.zahl-item.sichtbar::before { transform: translateX(-50%) scaleX(1); }
.zahl-item .wert {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 550;
  line-height: 1.1;
  color: var(--forest);
}
.zahl-item .label {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15.5px;
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; text-decoration: none; transition: all .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: #fff; }

/* ---------- Karten-Raster (Literatur, Anbieter) ---------- */
.section-title { margin: 40px 0 6px; }
.section-intro { color: var(--muted); margin-bottom: 24px; max-width: 60ch; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { color: var(--forest); margin-bottom: 4px; font-size: 17.5px; }
.card .autor { color: var(--orange-dark); font-weight: 600; font-size: 14.5px; margin-bottom: 8px; }
.card .meta { color: var(--muted); font-size: 13.5px; }
.card p { font-size: 14.5px; margin-bottom: 0; }
.chip {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--forest); background: var(--sand);
  padding: 3px 11px; border-radius: 999px; margin-bottom: 10px;
}

.lit-group-title { margin: 44px 0 18px; padding-bottom: 8px; border-bottom: 2px solid var(--sand); }

/* ---------- Anbieter-Karte (Leaflet) ---------- */
.karte-wrap { margin: 10px 0 34px; }
#anbieter-karte {
  height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 1;
}
.karten-consent {
  height: 460px;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
}
.karten-consent[hidden] { display: none; }
.karten-consent .titel { font-family: var(--font-serif); font-size: 23px; color: var(--forest); }
.karten-consent p { max-width: 460px; font-size: 14.5px; color: var(--muted); margin: 0; }
.vs-marker {
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(43, 38, 32, 0.45);
}
.vs-cluster {
  background: rgba(212, 115, 43, 0.92);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(43, 38, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-cluster span { color: #fff; font-family: var(--font-sans); font-size: 14px; font-weight: 600; }
.leaflet-popup-content-wrapper { border-radius: 12px; font-family: var(--font-sans); color: var(--ink); }
.leaflet-popup-content { font-size: 14.5px; line-height: 1.55; margin: 14px 18px; }
.leaflet-popup-content strong { font-family: var(--font-serif); font-size: 16px; color: var(--forest); }
.leaflet-popup-content a { color: var(--orange-dark); font-weight: 600; }
.karte-link {
  font-family: var(--font-sans); font-size: 14.5px; font-weight: 600;
  color: var(--orange-dark); background: none; border: none; padding: 0; cursor: pointer;
}
.karte-link:hover { text-decoration: underline; }
.card.highlight {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,115,43,.35), var(--shadow-lg);
}

/* Karten-Toolbar + Nähe-Suche */
.karten-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin: 0 0 14px; }
.karten-toolbar[hidden] { display: none; }
.karten-count { font-weight: 600; color: var(--forest); font-size: 15px; }
.karten-count b { color: var(--orange-dark); }
.naehe-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.naehe-form input { font-family: var(--font-sans); font-size: 14.5px; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--white); min-width: 170px; }
.naehe-form input:focus { outline: none; border-color: var(--orange); }
.btn-mini { font-family: var(--font-sans); font-weight: 600; font-size: 14px; padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--forest); background: var(--white); color: var(--forest); cursor: pointer; transition: all .15s ease; }
.btn-mini:hover { background: var(--forest); color: #fff; }
.btn-mini.primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-mini.primary:hover { background: var(--orange-dark); }
.naehe-status { font-size: 13.5px; color: var(--muted); min-height: 18px; margin: -4px 0 10px; }
.dist-badge { display: inline-block; font-size: 11.5px; font-weight: 700; color: #fff; background: var(--forest); border-radius: 999px; padding: 2px 9px; margin-left: 8px; vertical-align: middle; }

/* Reiche Popups */
.leaflet-popup-content .pop-head { display: flex; gap: 11px; align-items: center; margin-bottom: 8px; }
.pop-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 15px; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, #f0a463, var(--orange) 60%, var(--orange-dark)); }
.pop-name { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--forest); line-height: 1.2; }
.pop-personen { font-size: 12.5px; color: var(--muted); }
.pop-row { font-size: 13.5px; margin: 3px 0; }
.pop-chips .chip { font-size: 11px; padding: 2px 8px; margin: 2px 4px 0 0; }
.pop-actions { margin-top: 10px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pop-actions a, .pop-actions .karte-link { font-size: 13.5px; font-weight: 600; }
.pop-dist { color: var(--orange-dark); font-weight: 700; }
.pop-avatar.pop-avatar-img, .leaflet-popup-content img.pop-avatar { object-fit: contain; background: #fff; padding: 2px; }

/* Anbieter-Logo in Karten */
.card .anb-logo { height: 44px; width: auto; max-width: 150px; object-fit: contain; margin-bottom: 12px; }
.card-actions { margin-top: 12px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Standort-Marker */
.user-marker { width: 16px; height: 16px; border-radius: 50%; background: #2b6cb0; border: 3px solid #fff; box-shadow: 0 0 0 5px rgba(43,108,176,.25); }

/* Vollbild */
#anbieter-karte:fullscreen { height: 100%; border-radius: 0; border: none; }

/* ---------- Seminarkalender-Filter ---------- */
.kat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 4px; }
.kat-btn { font-family: var(--font-sans); font-size: 13.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--forest); cursor: pointer; transition: all .15s ease; }
.kat-btn:hover { border-color: var(--forest); }
.kat-btn.active { background: var(--forest); border-color: var(--forest); color: #fff; }
a.seminar-card { text-decoration: none; color: inherit; display: block; }
a.seminar-card:hover { text-decoration: none; }

/* Seminar-Detailseite */
.seminar-detail .angebot-datum { display: inline-block; color: var(--orange-dark); font-weight: 600; }
.seminar-detail h2 { font-size: 21px; margin-top: 1.5em; }
.seminar-detail .provider { background: var(--sand); border-radius: var(--radius); padding: 16px 20px; }
.seminar-detail .provider a { font-weight: 600; }

/* ---------- Tabelle (Oasen-Termine) ---------- */
.table-wrap { overflow-x: auto; margin: 1.2em 0; }
table.termine { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.termine th { background: var(--forest); color: #fff; text-align: left; padding: 12px 16px; font-family: var(--font-sans); font-weight: 600; font-size: 14.5px; }
table.termine td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 15px; }
table.termine tr:last-child td { border-bottom: none; }

/* ---------- Berichte ---------- */
.bericht { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); margin-bottom: 22px; }
.bericht .zeichnung { color: var(--orange-dark); font-weight: 600; font-style: italic; margin-bottom: 14px; }
.bericht .gedicht p { white-space: pre-line; font-style: italic; }
.bericht.featured { border-left: 4px solid var(--orange); background: var(--white); }
.bericht .featured-eyebrow { display:block; font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--orange-dark); margin-bottom:8px; }
.bericht .autor-foto { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; float: right; margin: 0 0 14px 20px; border: 3px solid var(--white); box-shadow: var(--shadow); }
@media (max-width: 560px) { .bericht .autor-foto { float: none; margin: 0 0 14px; } }

/* ---------- E-Mail-Liste ---------- */
.email-list a { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.email-list a::before { content: "✉"; color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.8);
  padding: 50px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.78); font-size: 15px; }
.site-footer a:hover { color: var(--orange); text-decoration: none; }
.footer-brand { font-family: var(--font-serif); font-size: 22px; color: #fff; }
.footer-disclaimer { font-size: 13.5px; line-height: 1.55; margin-top: 12px; color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 36px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 13.5px;
}
.footer-bottom-links { display: flex; gap: 8px; align-items: center; }
.footer-login {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 5px 14px; color: #fff; font-weight: 600;
}
.footer-login::before { content: "🔒"; font-size: 11px; }
.footer-login:hover { background: rgba(212,115,43,.2); border-color: var(--orange); text-decoration: none; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.shown { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .layout { grid-template-columns: 1fr; gap: 30px; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav-inner { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .main-nav-links { display: none; flex-direction: column; flex-basis: 100%; width: 100%; }
  .main-nav.open .main-nav-links { display: flex; }
  .main-nav-links a, .main-nav .nav-more-btn { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .nav-more { display: block; }
  .nav-more-menu { position: static; box-shadow: none; border: none; background: rgba(0,0,0,.15); border-radius: 0; }
  .nav-more-menu a { color: rgba(255,255,255,.85); }
  .nav-more-menu a:hover { background: rgba(255,255,255,.08); color:#fff; }
  .nav-login { margin-left: 0; }
  .zahlen-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  #anbieter-karte, .karten-consent { height: 360px; }
  .search input { width: 130px; }
  .search input:focus { width: 150px; }
  .brand-text { font-size: 21px; }
}
