/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --black: #1d1d1b;
  --blue: #06549f;
  --blue-light: #0869c4;
  --blue-pale: #edf4fb;
  --red: #b51630;
  --red-light: #d41e3c;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #a0a0a0;
  --gray-500: #717171;
  --gray-600: #555555;
  --gray-700: #3a3a3a;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'IBM Plex Sans', -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-hover: 0 12px 20px -4px rgb(6 84 159 / 0.12), 0 4px 8px -4px rgb(0 0 0 / 0.06);
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }


/* ═══════════════════════════════════════════
   READING PROGRESS BAR (article only)
   ═══════════════════════════════════════════ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 200;
  transition: width 0.1s linear;
  display: none;
}
.reading-progress.active { display: block; }

/* ═══════════════════════════════════════════
   NAV (shared)
   ═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 232, 232, 0.8);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.nav-logo .sep { background: linear-gradient(135deg, #0056A3, #6B305F, #E20613); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.nav-divider {
  color: var(--gray-200);
  font-weight: 300;
  font-size: 1.3rem;
  margin: 0 0.1rem;
}
.nav-mo-logo {
  height: 20px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-brand:hover .nav-mo-logo { opacity: 1; }
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--black); }
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: 0; left: 0;
  background-color: var(--blue);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-contact {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.nav-contact:hover { background: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-contact-mobile-wrap { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  margin: 4px 0;
  transition: all 0.25s ease;
}

/* ═══════════════════════════════════════════
   INDEX: SITE HEADER
   ═══════════════════════════════════════════ */
.site-header {
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
  padding: 4rem 2rem 3rem;
  border-bottom: none;
}
.site-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.site-header h1 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  max-width: 700px;
}
.site-header-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 380px;
  line-height: 1.6;
  text-align: left;
  border-left: 3px solid var(--blue);
  padding-left: 1.25rem;
}

/* ═══════════════════════════════════════════
   INDEX: CATEGORY NAV
   ═══════════════════════════════════════════ */
.cat-nav {
  position: sticky;
  top: 60px;
  z-index: 90;
  border-bottom: 1px solid rgba(232, 232, 232, 0.8);
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cat-nav a {
  padding: 0.85rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-nav a:hover { color: var(--black); }
.cat-nav a.active { color: var(--blue); border-bottom-color: var(--blue); }
.cat-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════
   MAIN LAYOUT (shared)
   ═══════════════════════════════════════════ */
.main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.main--article { gap: 4rem; }

/* ═══════════════════════════════════════════
   INDEX: FEATURED POST
   ═══════════════════════════════════════════ */
.featured {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue);
}
.featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.featured-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--red);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.featured h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.featured h2 a { cursor: pointer; }
.featured h2 a:hover { color: var(--blue); }
.featured-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.featured-meta .cat {
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.featured p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 640px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
  cursor: pointer;
}
.read-more:hover { gap: 0.6rem; }
.read-more svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════
   INDEX: POST LIST
   ═══════════════════════════════════════════ */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.post-item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.post-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
.post-item-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: #eef5ff;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.post-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--black);
  transition: color 0.2s;
}
.post-item:hover h3 { color: var(--blue); }
.post-item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-item-meta {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   AUTHOR META (shared)
   ═══════════════════════════════════════════ */
.post-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.post-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-name { font-size: 0.8rem; font-weight: 600; color: var(--black); }
.post-author-date { font-size: 0.72rem; color: var(--gray-500); }
.featured .post-author {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

/* ═══════════════════════════════════════════
   INDEX: LOAD MORE
   ═══════════════════════════════════════════ */
.load-more {
  display: block;
  width: 100%;
  padding: 1.1rem;
  margin-top: 1.25rem;
  background: var(--white);
  border: 1px dashed var(--gray-400);
  border-radius: 9999px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
}
.load-more:hover { background: #eef5ff; border: 1px solid var(--blue); color: var(--blue); }

/* ═══════════════════════════════════════════
   INDEX: INLINE CTA
   ═══════════════════════════════════════════ */
.inline-cta { padding: 0; }
.inline-cta-box {
  background: linear-gradient(to right, #eef5ff, var(--white));
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}
.inline-cta-text {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.55;
}
.inline-cta-text strong { display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.25rem; color: #014a87; }
.inline-cta-btn {
  flex-shrink: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.inline-cta-btn:hover { background: #014a87; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════
   SIDEBAR (shared)
   ═══════════════════════════════════════════ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-kanzlei {
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.sidebar-kanzlei-logo-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 1.25rem;
}
.sidebar-kanzlei p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.sidebar-kanzlei-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}
.sidebar-kanzlei-link:hover { gap: 0.6rem; }
.sidebar-kanzlei-link svg { width: 13px; height: 13px; }

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue), #014a87);
  color: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.sidebar-cta--sticky {
  position: sticky;
  top: 120px;
  z-index: 10;
}
.sidebar-cta h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.sidebar-cta p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.sidebar-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.sidebar-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sidebar-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.sidebar-cta-trust span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.4;
  padding-left: 1.15rem;
  position: relative;
  text-align: left;
}
.sidebar-cta-trust span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

/* Sidebar Standorte */
.sidebar-locations {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sidebar-loc-header {
  background: var(--gray-50);
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-loc {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-loc:last-child { border-bottom: none; }
.sidebar-loc-flag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.sidebar-loc-city { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.sidebar-loc-addr { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }
.sidebar-loc-phone {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

/* Sidebar Topics */
.sidebar-topics {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sidebar-topics-header {
  background: var(--gray-50);
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}
.sidebar-topic:last-child { border-bottom: none; }
.sidebar-topic:hover { background: var(--gray-50); color: var(--blue); }
.sidebar-topic-count { font-size: 0.72rem; color: var(--gray-400); font-weight: 400; }

/* Sidebar Newsletter */
.sidebar-newsletter {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sidebar-newsletter h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.sidebar-newsletter p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.sidebar-newsletter input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  outline: none;
  background: var(--gray-50);
  transition: all 0.2s;
}
.sidebar-newsletter input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px #eef5ff; }
.sidebar-newsletter button {
  width: 100%;
  padding: 0.7rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar-newsletter button:hover { background: var(--blue); }

/* Sidebar TOC (article only) */
.sidebar-toc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 10;
}
.sidebar-toc-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.85rem;
}
.sidebar-toc a {
  display: block;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  border-left: 2px solid var(--gray-200);
  transition: all 0.2s;
  line-height: 1.4;
  cursor: pointer;
}
.sidebar-toc a:hover { color: var(--blue); border-left-color: var(--blue); }
.sidebar-toc a.active { color: var(--blue); border-left-color: var(--blue); font-weight: 600; }
.sidebar-toc a.toc-h3 { padding-left: 1.75rem; font-size: 0.78rem; }

/* ═══════════════════════════════════════════
   ARTICLE HEADER
   ═══════════════════════════════════════════ */
.article-header {
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
  padding: 3rem 2rem 2.5rem;
}
.article-header-inner { max-width: 780px; margin: 0 auto; }
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.article-breadcrumb a { color: var(--gray-500); transition: color 0.2s; cursor: pointer; }
.article-breadcrumb a:hover { color: var(--blue); }
.article-breadcrumb .bc-sep { color: var(--gray-400); font-size: 0.7rem; }
.article-breadcrumb .sep { background: linear-gradient(135deg, #0056A3, #6B305F, #E20613); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.article-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: #eef5ff;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.article-header h1 {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
  max-width: 700px;
}
.article-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 650px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.article-meta-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}
.article-meta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-meta-info { display: flex; flex-direction: column; gap: 0.15rem; }
.article-meta-name { font-size: 0.9rem; font-weight: 600; color: var(--black); }
.article-meta-details {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-meta-details .dot { color: var(--gray-400); }

/* ═══════════════════════════════════════════
   ARTICLE CONTENT
   ═══════════════════════════════════════════ */
.article-body { max-width: 780px; }
.article-content {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-700);
}
.article-content > * + * { margin-top: 1.5rem; }
.article-content p { font-size: 1.08rem; line-height: 1.85; color: var(--gray-700); }
.article-content > p:first-of-type { font-size: 1.15rem; line-height: 1.75; color: var(--gray-600); }
.article-content h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.article-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 2rem; }
.article-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin-top: 2.25rem;
  margin-bottom: 0.5rem;
}
.article-content h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(6, 84, 159, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.article-content a:hover { text-decoration-color: var(--blue); }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-top: 1rem; margin-bottom: 1rem; }
.article-content li { margin-bottom: 0.5rem; padding-left: 0.35rem; }
.article-content li::marker { color: var(--blue); }
.article-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.article-content blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}
.article-content blockquote footer {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
}
.article-content blockquote footer::before { content: "\2014\0020"; }

/* Infoboxes */
.infobox {
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2.25rem 0;
  position: relative;
  border: 1px solid;
}
.infobox-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.infobox-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.infobox p { font-family: var(--sans) !important; font-size: 0.9rem !important; line-height: 1.65 !important; margin: 0 !important; }
.infobox p + p { margin-top: 0.75rem !important; }
.infobox--tip { background: linear-gradient(135deg, #eef5ff, #f5f9ff); border-color: rgba(6, 84, 159, 0.15); }
.infobox--tip .infobox-title { color: var(--blue); }
.infobox--warning { background: linear-gradient(135deg, #fffbeb, #fefdf5); border-color: rgba(180, 120, 20, 0.15); }
.infobox--warning .infobox-title { color: #92610a; }
.infobox--note { background: var(--white); border-color: var(--gray-200); border-left: 3px solid var(--gray-400); }
.infobox--note .infobox-title { color: var(--gray-600); }
.infobox--legal { background: linear-gradient(135deg, #f8f6ff, #faf9ff); border-color: rgba(100, 70, 160, 0.12); }
.infobox--legal .infobox-title { color: #5a3d9e; }

/* Article CTA */
.article-cta {
  background: linear-gradient(to right, #eef5ff, var(--white));
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}
.article-cta-heading { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: #014a87; margin-bottom: 0.5rem; }
.article-cta-text { font-family: var(--sans); font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.25rem; }
.article-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.article-cta-btn:hover { background: #014a87; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Table */
.article-content table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-family: var(--sans); font-size: 0.88rem; line-height: 1.55; }
.article-content thead { background: var(--gray-50); }
.article-content th { text-align: left; padding: 0.75rem 1rem; font-weight: 600; color: var(--black); border-bottom: 2px solid var(--gray-200); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.article-content td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.article-content tbody tr:hover { background: var(--gray-50); }
.article-content hr { border: none; height: 1px; background: var(--gray-200); margin: 2.5rem 0; }
.article-content .fn { font-family: var(--sans); font-size: 0.78rem; color: var(--gray-500); line-height: 1.6; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.article-content .fn p { font-size: 0.78rem !important; line-height: 1.6 !important; color: var(--gray-500) !important; margin-bottom: 0.35rem; }
.article-content .fn sup { color: var(--blue); font-weight: 600; }

/* Tags */
.article-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article-tags a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.article-tags a:hover { background: #eef5ff; color: var(--blue); }

/* Author Bio */
.author-bio {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-bio-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gray-200); overflow: hidden; flex-shrink: 0; }
.author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-bio-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 0.25rem; }
.author-bio-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 0.15rem; }
.author-bio-title { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; }
.author-bio-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }
.author-bio-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem; font-size: 0.8rem; font-weight: 600; color: var(--blue); transition: gap 0.2s; }
.author-bio-link:hover { gap: 0.6rem; }
.author-bio-link svg { width: 13px; height: 13px; }

/* Related Posts */
.related { margin-top: 3rem; padding-top: 2rem; }
.related-header { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 1.25rem; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
.related-card-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: #eef5ff;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}
.related-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; line-height: 1.35; color: var(--black); margin-bottom: 0.5rem; transition: color 0.2s; }
.related-card:hover h3 { color: var(--blue); }
.related-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-card-meta { font-size: 0.72rem; color: var(--gray-400); margin-top: 0.65rem; }

/* Bottom CTA */
.bottom-cta {
  background: var(--gray-100);
  color: var(--black);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--blue);
}
.bottom-cta-inner { max-width: 600px; margin: 0 auto; }
.bottom-cta h2 { font-family: var(--serif); font-size: 1.65rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; color: var(--black); }
.bottom-cta p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; }
.bottom-cta-trust { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.bottom-cta-trust span { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; position: relative; padding-left: 1.2rem; }
.bottom-cta-trust span::before { content: "\2713"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.bottom-cta-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.bottom-cta-btn:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 3rem 2rem 1.5rem;
  color: var(--white);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.15rem; }
.footer-brand-name .sep { background: linear-gradient(135deg, #0056A3, #6B305F, #E20613); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.footer-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-brand-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col h5 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 0.85rem; font-weight: 600; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); padding: 0.2rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.25rem; font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }


/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  user-select: none;
}
.lang-opt {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0.15rem 0;
}
.lang-opt.active { color: var(--black); }
.lang-opt:hover { color: var(--blue); }
.lang-sep { font-size: 0.75rem; color: var(--gray-300); font-weight: 300; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .main { grid-template-columns: 1fr; gap: 2.5rem; }
  .sidebar { order: -1; }
  .sidebar-kanzlei, .sidebar-cta { display: block; }
  .sidebar-cta { position: static !important; }
  .sidebar-topics, .sidebar-locations { display: none; }
  .sidebar-toc { position: static; }
  .site-header-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .site-header-desc { text-align: left; border-left: none; padding-left: 0; border-top: 3px solid var(--blue); padding-top: 1rem; max-width: 100%; }
  .article-header h1 { font-size: 1.85rem; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 1rem 2rem 1.25rem;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a { display: block; padding: 0.75rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--gray-100); }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-contact-mobile-wrap a { border-bottom: none !important; padding: 0; }
  .nav-contact-mobile {
    display: block; text-align: center; margin-top: 0.75rem; padding: 0.7rem;
    background: var(--blue); color: var(--white); font-size: 0.9rem; font-weight: 600; border-radius: 8px;
  }
  .nav-contact-mobile-wrap { display: block; }
  .nav-right { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header h1 { font-size: 1.5rem; }
  .featured { padding: 1.5rem; }
  .featured h2 { font-size: 1.45rem; }
  .post-item { padding: 1.5rem; }
  .cat-nav-inner { padding: 0 1rem; }
  .main { padding: 0 1.25rem; padding-top: 2rem; padding-bottom: 3rem; }
  .inline-cta-box { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .article-header { padding: 2rem 1.25rem; }
  .article-header h1 { font-size: 1.55rem; }
  .article-subtitle { font-size: 1rem; }
  .article-content { font-size: 1rem; }
  .article-content h2 { font-size: 1.35rem; }
  .article-content h3 { font-size: 1.1rem; }
  .infobox { padding: 1.25rem 1.5rem; }
  .article-cta { padding: 1.5rem; }
  .author-bio { flex-direction: column; gap: 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .bottom-cta { padding: 2.5rem 1.25rem; }
  .bottom-cta h2 { font-size: 1.35rem; }
  .bottom-cta-trust { flex-direction: column; gap: 0.5rem; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }
}

/* ═══════════════════════════════════════════
   SCHWERPUNKTE PAGE
   ═══════════════════════════════════════════ */
.sp-header {
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
  padding: 4rem 2rem 3rem;
}
.sp-header-inner {
  max-width: 780px;
  margin: 0 auto;
}
.sp-header h1 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.sp-header-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 650px;
}
.sp-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.sp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}
.sp-card:hover::before { opacity: 1; }
.sp-card-icon {
  width: 40px;
  height: 40px;
  background: #eef5ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.sp-card-icon svg { width: 20px; height: 20px; }
.sp-card h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.sp-card-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.sp-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sp-card-example {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
}
.sp-card-example strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gray-600);
}
.sp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
  cursor: pointer;
}
.sp-card-link:hover { gap: 0.6rem; }
.sp-card-link svg { width: 13px; height: 13px; }
.sp-bottom {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  text-align: center;
}
.sp-bottom p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sp-bottom-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.sp-bottom-btn:hover { background: #014a87; transform: translateY(-2px); box-shadow: var(--shadow-md); }
@media (max-width: 640px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-header h1 { font-size: 1.6rem; }
  .sp-header { padding: 2.5rem 1.25rem 2rem; }
  .sp-grid { padding: 2rem 1.25rem 3rem; }
  .sp-bottom { padding: 0 1.25rem 3rem; }
}


[data-view] { cursor: pointer; }
#proto-toggle { cursor: pointer; }
/* ═══ Ghost Koenig Editor Required Classes ═══ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 1.5em auto;
  transform: translateX(calc(50% - 50vw + 7.5vw));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin: 1.5em auto;
  transform: translateX(calc(50% - 50vw));
}
.kg-width-full img,
.kg-width-wide img {
  width: 100%;
}
.kg-image-card img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.kg-bookmark-card,
.kg-bookmark-container {
  display: flex;
  min-height: 148px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content {
  flex-grow: 1;
  padding: 1.25rem;
}
.kg-bookmark-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.kg-bookmark-description {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
  line-height: 1.5;
  max-height: 3em;
  overflow: hidden;
}
.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.kg-bookmark-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.kg-bookmark-thumbnail {
  min-width: 160px;
}
.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.kg-gallery-row {
  display: flex;
  gap: 0.75rem;
}
.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
