﻿/* Immobilien-Stammtisch Saarland · helles Layout, Patock-Blau + WhatsApp-Grün */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blau: #0091C8;
  --orange: #FF7D0F;
  --wa: #25D366;
  --wa-dunkel: #128C7E;
  --ink: #16191C;
  --grau: #595959;
  --blau-hell: #E6F4FA;
  --linie: #E3E7EA;
  --bg: #FAFBFC;
  --sf: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --hf: "Century Gothic", "Segoe UI", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sf); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--blau); }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Kopf */
.hdr { background: #fff; border-bottom: 1px solid var(--linie); position: sticky; top: 0; z-index: 20; }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; }
.wortmarke { font-family: var(--hf); font-weight: 700; font-size: 18px; letter-spacing: -.01em; text-decoration: none; color: var(--ink); }
.wortmarke .punkt-b, .wortmarke .punkt-o { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-left: 3px; }
.wortmarke .punkt-b { background: var(--blau); }
.wortmarke .punkt-o { background: var(--orange); }
.hdr-cta { font-size: 13.5px; font-weight: 600; color: #fff; background: var(--wa); border-radius: 999px; padding: 8px 16px; text-decoration: none; }
.hdr-cta:hover { background: var(--wa-dunkel); }

/* Hero */
.hero { padding: 46px 0 0; background: linear-gradient(180deg, var(--blau-hell) 0%, var(--bg) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blau); background: #fff; border: 1px solid var(--linie); border-radius: 999px; padding: 6px 16px; margin-bottom: 14px; }
.welcome-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--linie); border-radius: 999px; padding: 8px 18px; margin-bottom: 16px; box-shadow: 0 6px 18px rgba(0, 145, 200, .10); }
.welcome-chip b { color: var(--blau); }
.welcome-chip .winken { font-size: 18px; display: inline-block; animation: winken 2.2s ease-in-out infinite; transform-origin: 70% 70%; }
@keyframes winken { 0%, 55%, 100% { transform: rotate(0); } 60% { transform: rotate(16deg); } 70% { transform: rotate(-8deg); } 80% { transform: rotate(14deg); } 90% { transform: rotate(-4deg); } }
.hero h1 { font-family: var(--hf); font-size: clamp(28px, 4.6vw, 42px); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--blau); }
.hero .lead { font-size: clamp(15px, 2vw, 18px); color: var(--grau); margin-bottom: 24px; }
.hero-foto { text-align: center; align-self: end; }
.hero-foto img { max-height: 330px; width: auto; margin: 0 auto; display: block; filter: drop-shadow(0 14px 30px rgba(22, 25, 28, .18)); }
/* Teambild (rechteckiges Foto statt freigestelltem Portraet) */
.hero-grid-team { grid-template-columns: 1fr 1.05fr; align-items: center; }
.hero-grid-team .hero-foto { align-self: center; padding-bottom: 20px; }
.hero-grid-team .hero-foto img.teambild { max-height: none; width: 100%; height: auto; border-radius: 16px; filter: none; box-shadow: 0 18px 44px rgba(22, 25, 28, .22); }

/* Gastgeber-Vorstellung */
.gastgeber { padding: 34px 0 10px; }
.gastgeber-kopf { text-align: center; max-width: 620px; margin: 0 auto 22px; }
.gastgeber-kopf h2 { font-family: var(--hf); font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 8px; letter-spacing: -.015em; }
.gastgeber-kopf p { font-size: 15px; color: var(--grau); }
.gastgeber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.gastgeber-karte { background: #fff; border: 1px solid var(--linie); border-top: 4px solid var(--wa); border-radius: 16px; padding: 20px; }
.gastgeber-karte h3 { font-size: 16.5px; margin-bottom: 2px; }
.gastgeber-karte .rolle { font-size: 12.5px; font-weight: 700; color: var(--wa-dunkel); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.gastgeber-karte p { font-size: 14px; color: #333; }
.foto-name { display: inline-block; background: #fff; border: 1px solid var(--linie); border-radius: 999px; padding: 6px 16px; font-size: 12.5px; font-weight: 600; color: var(--grau); margin: -18px auto 14px; position: relative; box-shadow: 0 6px 16px rgba(22, 25, 28, .10); }
.foto-name b { color: var(--ink); }
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .hero-foto img { max-height: 220px; }
  /* Teambild behaelt sein Seitenverhaeltnis (max-height + width:100% wuerde es verzerren) */
  .hero-foto img.teambild { max-height: none; height: auto; }
}

/* Karten */
.karten { padding: 34px 0 10px; }
.karten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.karte { background: #fff; border: 1px solid var(--linie); border-radius: 16px; padding: 20px; transition: transform .2s, box-shadow .2s; }
.karte:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(22, 25, 28, .07); }
.karte .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--blau-hell); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 10px; }
.karte h3 { font-size: 15.5px; margin-bottom: 5px; }
.karte p { font-size: 13.5px; color: var(--grau); }

/* Sektionen allgemein */
.sektion { padding: 36px 0; }
.sektion-kopf { text-align: center; max-width: 620px; margin: 0 auto 24px; }
.sektion-kopf h2 { font-family: var(--hf); font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 8px; letter-spacing: -.015em; }
.sektion-kopf p { font-size: 15px; color: var(--grau); }

/* WhatsApp-Karte */
.wa-karte { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--wa); border-radius: 16px; padding: 26px clamp(18px, 4vw, 32px); text-align: center; }
.wa-karte p { font-size: 14.5px; color: var(--grau); margin-bottom: 18px; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: var(--wa); color: #fff; font-weight: 700; font-size: 16px; text-decoration: none; border-radius: 999px; padding: 15px 30px; box-shadow: 0 12px 28px rgba(37, 211, 102, .35); transition: transform .15s, background .15s; }
.btn-wa:hover { transform: translateY(-2px); background: var(--wa-dunkel); }
.btn-wa svg { width: 21px; height: 21px; }
.wa-hinweis { font-size: 12.5px; color: var(--grau); margin-top: 14px; }

/* Anmelde-Formular */
.form-karte { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--linie); border-radius: 16px; box-shadow: 0 14px 40px rgba(22, 25, 28, .07); padding: 28px clamp(18px, 4vw, 34px) 30px; }
.feld-label { display: block; font-size: 14px; font-weight: 600; margin: 16px 0 7px; }
.feld-label .opt { font-weight: 400; color: var(--grau); }
.eingabe, textarea.eingabe { width: 100%; border: 1.5px solid var(--linie); border-radius: 10px; padding: 12px 14px; font-family: var(--sf); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s; }
.eingabe:focus { outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px var(--blau-hell); }
textarea.eingabe { min-height: 90px; resize: vertical; }
.btn-senden { display: block; width: 100%; margin-top: 22px; border: none; cursor: pointer; border-radius: 999px; padding: 15px 30px; font-family: var(--sf); font-size: 16px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--blau), var(--orange)); box-shadow: 0 12px 28px rgba(0, 145, 200, .3); transition: transform .15s; }
.btn-senden:hover { transform: translateY(-2px); }
.form-hinweis { font-size: 12.5px; color: var(--grau); margin-top: 12px; text-align: center; }
.form-hinweis a { color: var(--grau); }
.hp-feld { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

/* Banner */
.banner { display: none; border-radius: 12px; padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }
.banner.sichtbar { display: block; }
.banner-ok { background: #E8F8EE; border: 1px solid #A9E5C1; color: #14532D; }
.banner-fehler { background: #FDECEC; border: 1px solid #F5B5B5; color: #8F2222; }

/* Netzwerk: einheitlicher Seiten-Verbund, auf JEDER Patock-Seite identisch.
   Feste Reihenfolge: links Ankauf (Orange), Mitte Patock Gruppe (Blau), rechts Stammtisch (Grün). */
.netzwerk { padding: 34px 0 50px; }
.netzwerk h2 { font-family: var(--hf); font-size: clamp(22px, 3.5vw, 28px); text-align: center; margin-bottom: 6px; letter-spacing: -.015em; }
.netzwerk .netz-sub { text-align: center; font-size: 14.5px; color: #595959; max-width: 560px; margin: 0 auto 22px; }
.netz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .netz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .netz-grid { grid-template-columns: 1fr; } }
.netz-karte { display: flex; flex-direction: column; gap: 8px; background: #fff; border: 2px solid #E3E7EA; border-top-width: 5px; border-radius: 16px; padding: 20px 20px 18px; text-decoration: none; color: #16191C; transition: transform .18s, box-shadow .18s; position: relative; }
.netz-karte:hover { transform: translateY(-4px); }
.netz-karte .ico { font-size: 32px; line-height: 1; }
.netz-karte h3 { font-size: 16.5px; }
.netz-karte p { font-size: 13.5px; color: #595959; flex: 1; }
.netz-karte .netz-cta { font-size: 14px; font-weight: 700; }
.nk-ankauf { border-top-color: #FF7D0F; }
.nk-ankauf .netz-cta { color: #FF7D0F; }
.nk-ankauf:hover { box-shadow: 0 14px 34px rgba(255, 125, 15, .18); }
.nk-ankauf .hier-badge { background: #FF7D0F; }
.nk-gruppe { border-top-color: #0091C8; }
.nk-gruppe .netz-cta { color: #0091C8; }
.nk-gruppe:hover { box-shadow: 0 14px 34px rgba(0, 145, 200, .18); }
.nk-gruppe .hier-badge { background: #0091C8; }
.nk-stammtisch { border-top-color: #25D366; }
.nk-stammtisch .netz-cta { color: #128C7E; }
.nk-stammtisch:hover { box-shadow: 0 14px 34px rgba(37, 211, 102, .20); }
.nk-stammtisch .hier-badge { background: #128C7E; }
.nk-mimi { border-top-color: #C2185B; }
.nk-mimi .netz-cta { color: #C2185B; }
.nk-mimi:hover { box-shadow: 0 14px 34px rgba(194, 24, 91, .18); }
.nk-mimi .hier-badge { background: #C2185B; }
.hier-badge { position: absolute; top: -11px; right: 14px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 999px; padding: 4px 12px; }
.domain-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.domain-chips span { font-size: 12px; font-weight: 600; color: #E96D05; background: #FFF1E6; border: 1px solid #f5d9bd; border-radius: 999px; padding: 4px 10px; }

/* Fuß */
.ft { border-top: 1px solid var(--linie); background: #fff; padding: 22px 0 26px; margin-top: 30px; }
.ft-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--grau); }
.ft a { color: var(--grau); text-decoration: none; }
.ft a:hover { color: var(--blau); }

/* Rechtstexte */
.recht { padding: 44px 0 60px; }
.recht .inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.recht h1 { font-family: var(--hf); font-size: 30px; margin-bottom: 20px; }
.recht h2 { font-size: 17px; margin: 26px 0 8px; }
.recht p, .recht li { font-size: 15px; color: #333; }
.recht ul { padding-left: 22px; }

/* Kompakte Verbund-Navigation im Seitenkopf: ON/OFF-Schalter je Homepage.
   Aktive Seite = Schalter AN in Markenfarbe ("HIER"), andere AUS ("HIN?").
   Klick auf einen AUS-Schalter schaltet erst um (Animation) und navigiert dann. */
.topnav { display: flex; align-items: flex-start; gap: 14px; }
.topnav a.tn-switch { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; border: 0; background: none; padding: 0; }
.tn-switch .knebel { position: relative; width: 52px; height: 26px; border-radius: 999px; background: #D9DEE3; box-shadow: inset 0 2px 4px rgba(22, 25, 28, .18); transition: background .3s ease; flex-shrink: 0; }
.tn-switch .knopf { position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(22, 25, 28, .35); transition: left .3s ease; }
.tn-switch .zust { position: absolute; top: 50%; transform: translateY(-50%); font-size: 8px; font-weight: 800; letter-spacing: .04em; line-height: 1; }
.tn-switch .zust-an { left: 7px; color: #fff; opacity: 0; transition: opacity .25s; }
.tn-switch .zust-aus { right: 5px; color: #8A939B; transition: opacity .25s; }
.tn-switch.an .knopf { left: 28px; }
.tn-switch.an .zust-an { opacity: 1; }
.tn-switch.an .zust-aus { opacity: 0; }
.tn-ankauf.an .knebel { background: #FF7D0F; }
.tn-gruppe.an .knebel { background: #0091C8; }
.tn-stammtisch.an .knebel { background: #25D366; }
.tn-mimi.an .knebel { background: #C2185B; }
.tn-switch:hover .knebel { filter: brightness(1.06); }
.tn-switch .dom { font-size: 9.5px; font-weight: 700; color: #595959; white-space: nowrap; line-height: 1.2; }
.tn-switch.an .dom { color: #16191C; }
.tn-switch .dom-kurz { display: none; }
@media (max-width: 920px) {
  .topnav { gap: 10px; }
  .tn-switch .dom-lang { display: none; }
  .tn-switch .dom-kurz { display: block; }
  .tn-switch .knebel { width: 46px; height: 23px; }
  .tn-switch .knopf { width: 19px; height: 19px; }
  .tn-switch.an .knopf { left: 25px; }
}
/* Topnav: Ankauf-Wuerfel klappt die 3 Ankauf-Domains auf (Desktop) */
.tn-halter { position: relative; display: inline-flex; }
.tn-drop { display: none; position: absolute; top: 100%; right: 0; padding-top: 8px; z-index: 300; }
.tn-drop-inner { display: flex; flex-direction: column; gap: 5px; background: #fff; border: 1px solid #E3E7EA; border-radius: 12px; box-shadow: 0 12px 30px rgba(22, 25, 28, .20); padding: 8px; min-width: 220px; }
.tn-halter:hover .tn-drop, .tn-halter:focus-within .tn-drop { display: block; }
.tn-drop-inner a { font-size: 12.5px; font-weight: 600; color: #E96D05; background: #FFF1E6; border: 1px solid #F5D9BD; border-radius: 999px; padding: 7px 12px; text-decoration: none; white-space: nowrap; text-align: center; }
.tn-drop-inner a:hover { background: #FF7D0F; border-color: #FF7D0F; color: #fff; }
@media (max-width: 920px) { .tn-drop { display: none !important; } }

/* Verbund-Karten: Ankauf-Karte mit klickbaren Domain-Chips (stretched-link-Muster) */
.netz-karte .karten-link { position: absolute; inset: 0; z-index: 1; border-radius: 14px; }
.domain-chips { position: relative; z-index: 2; }
.domain-chips a { font-size: 12px; font-weight: 600; color: #E96D05; background: #FFF1E6; border: 1px solid #f5d9bd; border-radius: 999px; padding: 4px 10px; text-decoration: none; transition: background .15s, color .15s; }
.domain-chips a:hover { background: #FF7D0F; border-color: #FF7D0F; color: #fff; }

/* Topnav v5: ALLE 7 Homepages als eigene Schalter (kein Dropdown mehr).
   Die 3 Ankauf-Domains teilen sich Orange; mannimindset bekommt Violett. */
.topnav { flex-wrap: wrap; justify-content: flex-end; row-gap: 8px; gap: 12px; }
.tn-switch .dom { font-size: 9px; }
.tn-ankauf2.an .knebel, .tn-ankauf3.an .knebel { background: #FF7D0F; }
.tn-mindset.an .knebel { background: #7C3AED; }
.tn-mindset:hover .knebel { filter: brightness(1.06); }
@media (max-width: 920px) {
  .topnav { gap: 8px; row-gap: 6px; }
  .tn-switch .dom { font-size: 8px; }
}

/* Topnav v7: groessere Schalter, eigene zentrierte Kopfzeile, Sprechblasen + Idle-Wackeln */
.topnav { flex-basis: 100%; justify-content: center; gap: 18px; row-gap: 10px; margin-top: 6px; }
.tn-switch .knebel { width: 64px; height: 31px; }
.tn-switch .knopf { width: 27px; height: 27px; }
.tn-switch.an .knopf { left: 35px; }
.tn-switch .zust { font-size: 9.5px; }
.tn-switch .zust-an { left: 9px; }
.tn-switch .zust-aus { right: 7px; }
.tn-switch .dom { font-size: 10px; }
/* Idle: die Schalter wackeln nacheinander (alle 3 s der naechste, 21-s-Runde) */
@keyframes tn-wackel { 0%, 4%, 100% { transform: rotate(0); } 1% { transform: rotate(-8deg); } 2% { transform: rotate(7deg); } 3% { transform: rotate(-4deg); } }
.topnav .tn-switch .knebel { animation: tn-wackel 21s linear infinite; }
.topnav .tn-switch:nth-of-type(1) .knebel { animation-delay: 0s; }
.topnav .tn-switch:nth-of-type(2) .knebel { animation-delay: 3s; }
.topnav .tn-switch:nth-of-type(3) .knebel { animation-delay: 6s; }
.topnav .tn-switch:nth-of-type(4) .knebel { animation-delay: 9s; }
.topnav .tn-switch:nth-of-type(5) .knebel { animation-delay: 12s; }
.topnav .tn-switch:nth-of-type(6) .knebel { animation-delay: 15s; }
.topnav .tn-switch:nth-of-type(7) .knebel { animation-delay: 18s; }
@media (prefers-reduced-motion: reduce) { .topnav .tn-switch .knebel { animation: none; } }
/* Sprechblase bei Hover: neugierig machen bzw. Standort bestaetigen */
.tn-switch { position: relative; }
.tn-switch .blase { display: none; position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%); background: #16191C; color: #fff; font-size: 11.5px; font-weight: 500; line-height: 1.5; padding: 9px 13px; border-radius: 10px; white-space: nowrap; z-index: 400; box-shadow: 0 10px 24px rgba(22, 25, 28, .32); text-align: center; }
.tn-switch .blase b { font-weight: 700; }
.tn-switch .blase::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #16191C; }
.tn-switch:hover .blase { display: block; }
@media (max-width: 920px) {
  .topnav { gap: 10px; row-gap: 8px; }
  .tn-switch .knebel { width: 50px; height: 25px; }
  .tn-switch .knopf { width: 21px; height: 21px; }
  .tn-switch.an .knopf { left: 27px; }
  .tn-switch .dom { font-size: 8px; }
  .tn-switch .blase { display: none !important; }
}

.hdr-inner { flex-wrap: wrap; }
.wortmarke { white-space: nowrap; }


/* Termin-Banner: zentral und unuebersehbar (pulsierender Rahmen) */
.termin-banner-wrap { padding: 30px 0 6px; }
.termin-banner { max-width: 860px; margin: 0 auto; background: #fff; border: 3px solid var(--wa); border-radius: 20px; padding: 28px 24px; text-align: center; animation: termin-puls 2.6s ease-out infinite; }
@keyframes termin-puls { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); } 70% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.termin-banner .tb-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--wa); border-radius: 999px; padding: 6px 16px; margin-bottom: 12px; }
.termin-banner h2 { font-family: var(--hf); font-size: clamp(24px, 4vw, 34px); margin-bottom: 6px; }
.termin-banner .tb-datum { font-size: clamp(20px, 3.4vw, 28px); font-weight: 800; color: var(--wa-dunkel); margin-bottom: 10px; }
.termin-banner p { font-size: 14.5px; color: var(--grau); max-width: 560px; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) { .termin-banner { animation: none; } }

/* Quicktipp unterhalb des Schalters (oben ragte er aus dem Kopf) + Auto-Toast */
.tn-switch .blase { bottom: auto; top: calc(100% + 9px); }
.tn-switch .blase::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: #16191C; }
.tn-switch .blase.zeig { display: block; animation: blase-rein .25s ease; }
@keyframes blase-rein { from { opacity: 0; transform: translateX(-50%) translateY(-4px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* Einheitliches Schalter-Band: gleiche Groesse, gleiche Stelle, gleicher Look auf ALLEN Seiten */
.topnav { flex-basis: 100%; justify-content: center; gap: 18px; row-gap: 8px; background: #fff; border: 1px solid #ECEFF1; border-radius: 14px; padding: 10px 16px 7px; margin: 8px 0 2px; box-shadow: 0 4px 14px rgba(22, 25, 28, .06); }
.tn-switch .dom { color: #595959; }
.tn-switch.an .dom { color: #16191C; }

/* Netzwerk- & Werkzeug-Leiste (immocation, ImmoMetrica, ViVi) */
.partner { padding: 10px 0 26px; }
.partner-titel { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grau); margin-bottom: 12px; }
.partner-zeile { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.partner-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--linie); border-radius: 999px; padding: 8px 18px 8px 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .15s; }
.partner-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22, 25, 28, .12); }
.partner-chip img { width: 28px; height: 28px; border-radius: 7px; }

/* Blasen duerfen den Seitenrand nicht aufreissen */
.tn-switch .blase { white-space: normal; max-width: 230px; width: max-content; }
html, body { overflow-x: hidden; }

/* Grosse Pille mit unsichtbarer Hilfstabelle: 7 exakt gleiche Spalten, identische Abstaende */
.topnav { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; align-items: start; justify-items: stretch; border-radius: 999px; padding: 12px 20px 8px; }
.topnav a.tn-switch { width: 100%; min-width: 0; padding: 0 3px; }
.tn-switch .dom { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1120px) { .tn-switch .dom-lang { display: none; } .tn-switch .dom-kurz { display: block; } }
@media (max-width: 560px) { .topnav { grid-template-columns: repeat(4, 1fr); row-gap: 8px; border-radius: 22px; } }

/* Lange Domain-Labels passen ohne Abschneiden in die gleichmaessigen Zellen */
.tn-switch .dom-lang { font-size: 9px; letter-spacing: -0.015em; }
.topnav a.tn-switch { padding: 0 2px; }

/* Unsichtbare Header-Tabelle: Zeile 1 Logo (48px, links) + Extras rechts, Zeile 2 Schalter-Band — ueberall identische Position */
.hdr-inner { display: grid; grid-template-columns: 1fr auto; grid-template-rows: 48px auto; row-gap: 8px; align-items: center; padding: 10px 20px 12px; max-width: 1140px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.hdr-inner > a:first-child { grid-row: 1; grid-column: 1; justify-self: start; }
.hdr-inner > .topnav { grid-row: 2; grid-column: 1 / -1; }
.hdr-inner > :not(.topnav):not(:first-child) { grid-row: 1; grid-column: 2; justify-self: end; }

.hdr-inner > .topnav { margin: 0; }


/* Einheitliche, gut lesbare Logo-Groesse: 46px in 56px-Zeile */
.hdr-inner { grid-template-rows: 56px auto; }
.hdr-inner > a:first-child img { height: 46px; width: auto; max-width: none; }
.wortmarke { font-size: 26px; }
.wortmarke .punkt-b, .wortmarke .punkt-o { width: 9px; height: 9px; }
