/* FarbGelSpray public shell — no Bootstrap */
:root {
  --fgs-bg: #131b25;
  --fgs-panel: #1c2434;
  --fgs-brand: #3bd671;
  --fgs-text: #e6eaeb;
  --fgs-line: #2d3340;
  --fgs-on-brand: #131b25;
  --fgs-navy: #15224e;
  --fgs-red: #f70000;
  --fgs-container: 1140px;
  --fgs-pad: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html,
body {
  background: var(--fgs-bg);
  color: var(--fgs-text);
  min-height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: var(--fgs-brand);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--fgs-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fgs-pad);
  padding-right: var(--fgs-pad);
}

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.list-unstyled { list-style: none; padding-left: 0; margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.small { font-size: 0.875rem; }
.h6 { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row.g-3 { --fgs-g: 0.75rem; }
.row.g-4 { --fgs-g: 1rem; }
.row.g-3,
.row.g-4 {
  margin-left: calc(var(--fgs-g, 0.75rem) / -2);
  margin-right: calc(var(--fgs-g, 0.75rem) / -2);
}
.row.g-3 > [class*="col-"],
.row.g-4 > [class*="col-"] {
  padding-left: calc(var(--fgs-g, 0.75rem) / 2);
  padding-right: calc(var(--fgs-g, 0.75rem) / 2);
  margin-bottom: var(--fgs-g, 0.75rem);
}
[class*="col-"] {
  width: 100%;
  max-width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.col-6 { width: 50%; max-width: 50%; }
.col-12 { width: 100%; max-width: 100%; }
@media (min-width: 576px) {
  .col-sm-6 { width: 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .col-md-3 { width: 25%; max-width: 25%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; max-width: 25%; }
}

.site-header-top {
  background: var(--fgs-panel);
  border-bottom: 1px solid var(--fgs-line);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fgs-text);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-brand:hover {
  color: var(--fgs-brand);
  text-decoration: none;
}

.site-brand-logo {
  display: block;
  width: 160px;
  height: 45px;
  max-width: 160px;
  object-fit: contain;
}

.site-brand-text {
  display: inline-block;
  line-height: 1.2;
  font-weight: 400;
}

.site-nav {
  background: var(--fgs-bg);
  border-bottom: 1px solid var(--fgs-line);
}

.site-nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 3.25rem;
}

.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0.25rem 0;
  border: 1px solid var(--fgs-brand);
  background: transparent;
  color: var(--fgs-brand);
  cursor: pointer;
  padding: 0;
}

.site-nav-toggle-icon,
.site-nav-toggle-icon::before,
.site-nav-toggle-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--fgs-brand);
  position: relative;
}
.site-nav-toggle-icon::before,
.site-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-nav-toggle-icon::before { top: -6px; }
.site-nav-toggle-icon::after { top: 6px; }

.site-nav-collapse {
  display: none;
  width: 100%;
}
.site-nav-collapse.is-open {
  display: block;
}

.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
}

.site-nav-list a {
  display: block;
  color: var(--fgs-text);
  font-weight: 600;
  padding: 0.85rem 0.25rem;
  text-decoration: none;
}
.site-nav-list a:hover,
.site-nav-list a:focus {
  color: var(--fgs-brand);
  text-decoration: none;
}

@media (min-width: 992px) {
  .site-nav-toggle { display: none; }
  .site-nav-collapse,
  .site-nav-collapse.is-open {
    display: block;
    width: auto;
    flex: 1 1 auto;
  }
  .site-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
  }
  .site-nav-list a {
    padding: 0.85rem 0.9rem;
  }
}

.site-main { min-height: 55vh; }

.hero {
  background: var(--fgs-panel);
  border-bottom: 1px solid var(--fgs-line);
  padding: 2.5rem 0;
}
.hero h1 {
  color: #ffffff;
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.hero .lead {
  color: var(--fgs-text);
  max-width: none;
  text-align: justify;
}

.btn-fgs {
  display: inline-block;
  background: var(--fgs-brand);
  color: var(--fgs-on-brand);
  border: 1px solid var(--fgs-brand);
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.btn-fgs:hover,
.btn-fgs:focus {
  background: #ffffff;
  color: var(--fgs-on-brand);
  border-color: #ffffff;
  text-decoration: none;
}

.hub-grid .hub-card {
  display: block;
  background: var(--fgs-panel);
  border: 1px solid var(--fgs-line);
  padding: 1.25rem;
  height: 100%;
  color: var(--fgs-text);
  text-decoration: none;
}
.hub-grid .hub-card:hover,
.hub-grid .hub-card:focus {
  border-color: var(--fgs-brand);
  color: #ffffff;
  text-decoration: none;
}
.hub-grid .hub-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fgs-brand);
  margin: 0 0 0.5rem;
}

.page-title {
  color: #ffffff;
  font-weight: 800;
  margin: 0 0 1rem;
}
.page-body { color: var(--fgs-text); }
.page-body h2,
.page-body h3 {
  color: #ffffff;
  margin-top: 1.5rem;
}

.site-footer {
  background: var(--fgs-panel);
  border-top: 1px solid var(--fgs-line);
  margin-top: 3rem;
}
.site-footer a { color: var(--fgs-text); }
.site-footer a:hover { color: var(--fgs-brand); }

.footer-back-to-top {
  display: block;
  width: 100%;
  background: var(--fgs-bg);
  color: var(--fgs-brand);
  border: 0;
  border-bottom: 1px solid var(--fgs-line);
  padding: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.footer-back-to-top:hover { color: #ffffff; }

.footer-copy {
  border-top: 1px solid var(--fgs-line);
  color: var(--fgs-text);
  font-size: 0.9rem;
}
.footer-copy a {
  color: var(--fgs-brand);
  font-weight: 700;
}
.footer-copy a:hover { color: #ffffff; }

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fgs-text);
  text-decoration: none;
  font-weight: 700;
}
.site-footer-brand:hover {
  color: var(--fgs-brand);
  text-decoration: none;
}
.site-footer-logo {
  display: block;
  width: 282px;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .site-brand { gap: 0.5rem; flex-wrap: wrap; }
  .site-brand-logo { width: 120px; height: 34px; max-width: 120px; }
  .site-brand-text { font-size: 0.95rem; }
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--fgs-brand) var(--fgs-bg);
}
*::-webkit-scrollbar { width: 12px; height: 12px; }
*::-webkit-scrollbar-track { background: var(--fgs-bg); }
*::-webkit-scrollbar-thumb {
  background: var(--fgs-brand);
  border: 2px solid var(--fgs-bg);
  border-radius: 0 !important;
}
*::-webkit-scrollbar-thumb:hover { background: #ffffff; }
*::-webkit-scrollbar-corner { background: var(--fgs-bg); }

/* Content / SEO blocks */
.lead {
  font-size: 1.15rem;
  max-width: none;
  width: 100%;
  color: var(--fgs-text);
  text-align: justify;
}
.page-body,
.fgs-prose,
.fgs-faq__a {
  max-width: none;
  width: 100%;
  text-align: justify;
}
.fgs-prose p {
  margin: 0 0 1rem;
  max-width: none;
  text-align: justify;
}
.fgs-crumbs { margin: 0 0 1rem; font-size: 0.9rem; }
.fgs-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
}
.fgs-crumbs li { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--fgs-text); }
.fgs-crumbs li:not(:last-child)::after { content: "/"; color: var(--fgs-line); margin-left: 0.5rem; }
.fgs-crumbs a { color: var(--fgs-brand); font-weight: 600; }

.fgs-pick {
  background: var(--fgs-panel);
  border: 1px solid var(--fgs-brand);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fgs-pick--compact { padding: 1.15rem; }
.fgs-pick__kicker {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fgs-brand);
}
.fgs-prio {
  display: inline-block;
  min-width: 2.25rem;
  text-align: center;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--fgs-line);
  color: var(--fgs-text);
}
.fgs-prio--aplus {
  border-color: var(--fgs-brand);
  color: var(--fgs-on-brand);
  background: var(--fgs-brand);
}
.fgs-prio--a {
  border-color: var(--fgs-brand);
  color: var(--fgs-brand);
}
.fgs-prio--b {
  border-color: var(--fgs-line);
  color: var(--fgs-text);
}
.fgs-market { margin-bottom: 1rem; }
.fgs-pick__title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.fgs-pick__lead { margin: 0 0 1rem; }
.fgs-pick__list { margin: 0 0 1rem; padding-left: 1.2rem; }
.fgs-pick__sep {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--fgs-line);
  font-size: 0.9rem;
}

.fgs-disclaimer {
  border: 1px solid var(--fgs-brand);
  background: var(--fgs-bg);
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  color: var(--fgs-text);
  text-align: justify;
}

.fgs-linklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.fgs-linklist a {
  display: block;
  border: 1px solid var(--fgs-line);
  background: var(--fgs-panel);
  padding: 0.85rem 1rem;
  color: var(--fgs-text);
  font-weight: 600;
  text-decoration: none;
}
.fgs-linklist a:hover {
  border-color: var(--fgs-brand);
  color: var(--fgs-brand);
}

.fgs-datasheet {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--fgs-line);
}
.fgs-datasheet table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.fgs-datasheet th,
.fgs-datasheet td {
  border-bottom: 1px solid var(--fgs-line);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
}
.fgs-datasheet thead th {
  background: var(--fgs-panel);
  color: #ffffff;
  font-weight: 800;
}
.fgs-datasheet tbody th {
  color: var(--fgs-brand);
  font-weight: 700;
  width: 36%;
}

.fgs-prose h2 { color: #ffffff; font-size: 1.25rem; margin: 1.75rem 0 0.75rem; text-align: left; }
.fgs-cta-row { margin-top: 1.5rem; }

.fgs-faq { display: grid; gap: 0.65rem; margin-top: 1rem; }
.fgs-faq__item {
  border: 1px solid var(--fgs-line);
  background: var(--fgs-panel);
  padding: 0;
}
.fgs-faq__item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--fgs-text);
  padding: 0.9rem 1rem;
  list-style: none;
}
.fgs-faq__item summary::-webkit-details-marker { display: none; }
.fgs-faq__a {
  padding: 0 1rem 1rem;
  color: var(--fgs-text);
  border-top: 1px solid var(--fgs-line);
  padding-top: 0.85rem;
  text-align: justify;
}

.btn-fgs-outline {
  display: inline-block;
  background: transparent;
  color: var(--fgs-brand);
  border: 1px solid var(--fgs-brand);
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.btn-fgs-outline:hover,
.btn-fgs-outline:focus {
  background: var(--fgs-brand);
  color: var(--fgs-on-brand);
  text-decoration: none;
}

/* series nav */
.fgs-mark {
  color: var(--fgs-brand);
}

.fgs-series-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--fgs-line);
  width: 100%;
}
@media (min-width: 768px) {
  .fgs-series-nav {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
}
.fgs-series-nav a {
  display: block;
  border: 1px solid var(--fgs-line);
  background: var(--fgs-panel);
  color: var(--fgs-text);
  text-decoration: none;
  padding: 0.85rem 1rem;
  min-height: 44px;
}
.fgs-series-nav a:hover,
.fgs-series-nav a:focus {
  border-color: var(--fgs-brand);
  color: var(--fgs-brand);
  text-decoration: none;
}
.fgs-series-nav__dir {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fgs-brand);
  margin-bottom: 0.25rem;
}
.fgs-series-nav__title {
  display: block;
  font-weight: 500;
  color: var(--fgs-text);
  text-align: left;
}
.fgs-series-nav__next {
  text-align: left;
}
@media (min-width: 768px) {
  .fgs-series-nav__next {
    text-align: right;
  }
  .fgs-series-nav__next .fgs-series-nav__title,
  .fgs-series-nav__next .fgs-series-nav__dir {
    text-align: right;
  }
}
.fgs-series-nav__hub {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fgs-series-nav__hub a {
  text-align: center;
  font-weight: 600;
  color: var(--fgs-brand);
  border-color: var(--fgs-brand);
}
.fgs-series-nav__empty {
  display: block;
  min-height: 1px;
}

/* strong (= bisher fett) vorerst auch gruen */
.fgs-prose strong,
.page-body strong,
.fgs-faq strong,
.fgs-faq__a strong,
.lead strong,
.fgs-disclaimer strong,
.fgs-pick strong,
.hero strong {
  color: var(--fgs-brand);
  font-weight: 700;
}
.fgs-cta-row--top {
  margin: 0 0 1.25rem
}



/* ===== Adviser / CDPCMS bridge (FGS look) ===== */
.main-content {
  min-height: 55vh;
}
.main-content.container,
.main-content.container.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.main-content--home,
.main-content.main-content--home {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.content-card {
  background: var(--fgs-panel);
  border: 1px solid var(--fgs-line);
  color: var(--fgs-text);
  box-shadow: none !important;
}
.content-card h1,
.content-card .h3 {
  color: #ffffff;
  font-weight: 800;
}

/* Home content from CMS → FGS hero atmosphere */
.home-shell {
  background: var(--fgs-bg);
}
.home-shell .home-title,
.home-shell h1.home-title {
  color: var(--fgs-brand);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
}
.home-shell .home-subtitle {
  color: #ffffff;
  font-weight: 700;
}
.home-shell .home-lead,
.home-shell .home-list {
  color: var(--fgs-text);
  text-align: justify;
}
.home-shell .home-html-block {
  background: var(--fgs-panel);
  border-bottom: 1px solid var(--fgs-line);
  padding: 2.5rem 0;
}
.home-shell .home-copy-inner {
  max-width: var(--fgs-container);
  margin: 0 auto;
  padding: 0 var(--fgs-pad);
}
.home-shell .home-cta,
.home-shell .home-cta-link {
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
}
.home-shell a.home-cta-link,
.home-shell .home-cta a {
  display: inline-block;
  background: var(--fgs-brand);
  color: var(--fgs-on-brand);
  border: 1px solid var(--fgs-brand);
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.home-shell a.home-cta-link:hover,
.home-shell .home-cta a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--fgs-on-brand);
  text-decoration: none;
}

/* Legacy Amaz leftovers hidden/neutralized */
.header-top,
.header-bottom,
.amz-footer-selector,
.amz-btn,
.footer-divider {
  /* kept only if old markup appears */
}

.page-body a { color: var(--fgs-brand); }
.page-body h1 { color: #ffffff; font-weight: 800; }

.site-page-hero {
  background: var(--fgs-panel);
  border-bottom: 1px solid var(--fgs-line);
  padding: 2.5rem 0;
}
.site-page-hero h1 {
  color: #ffffff;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

/* Nav menu from CDPCMS inside FGS shell */
.site-nav-list ul,
.site-nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav-list .sub-menu {
  padding-left: 0.75rem;
}
.site-nav-list i.fas { display: none; }

.footer-widget-col,
.footer-widget-col * {
  color: var(--fgs-text);
}
.footer-widget-col a { color: var(--fgs-text); }
.footer-widget-col a:hover { color: var(--fgs-brand); }
.footer-col-title,
.footer-widget-col h2,
.footer-widget-col h3,
.footer-widget-col h4,
.footer-widget-col h5 {
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
}

/* Swiper: dark frame if present */
.swiper,
.cdpcms_swiper_element {
  border: 1px solid var(--fgs-line);
  background: var(--fgs-panel);
}

/* ===== Footer gap widget 1 <-> 2 ===== */
@media (min-width: 768px) {
  .site-footer .row.g-4 > .footer-widget-col:first-child {
    padding-right: 2.5rem;
  }
  .site-footer .row.g-4 > .footer-widget-col:nth-child(2) {
    padding-left: 1.5rem;
  }
}

/* ===== Adviser topbar + mega nav ===== */
.site-topbar {
  background: var(--fgs-bg);
  border-bottom: 1px solid var(--fgs-line);
  font-size: inherit;
}
.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2.25rem;
}
.site-topbar-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
  justify-content: flex-end;
  width: 100%;
}
.site-topbar-list a {
  color: var(--fgs-text);
  font-weight: 400;
  text-decoration: none;
  padding: 0.25rem 0;
}
.site-topbar-list a:hover,
.site-topbar-list a:focus {
  color: var(--fgs-brand);
  text-decoration: none;
}
.site-topbar:not(:has(li)) {
  display: none;
}

.site-nav--mega {
  position: relative;
  z-index: 40;
}
.site-nav-list--mega {
  position: relative;
}
.site-nav-list--mega > li {
  position: relative;
}
.site-nav-list--mega > li.has-mega {
  position: static;
}
.site-nav-list--mega > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav-list--mega > li.has-mega > a::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2rem;
}
.site-nav-list--mega .mega-menu {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: none;
  background: var(--fgs-panel);
  border: 1px solid var(--fgs-line);
  border-top: 2px solid var(--fgs-brand);
}
.site-nav-list--mega .mega-menu a {
  color: var(--fgs-text);
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 0.55rem 0.25rem;
  min-height: 44px;
}
.site-nav-list--mega .mega-menu a:hover,
.site-nav-list--mega .mega-menu a:focus {
  color: var(--fgs-brand);
  text-decoration: none;
}

@media (min-width: 992px) {
  .site-nav--mega .site-nav-bar {
    position: relative;
  }
  .site-nav-list--mega .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: var(--fgs-container);
    margin-left: auto;
    margin-right: auto;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem 1.5rem;
    box-shadow: none;
    z-index: 50;
  }
  .site-nav-list--mega > li.has-mega:hover > .mega-menu,
  .site-nav-list--mega > li.has-mega:focus-within > .mega-menu,
  .site-nav-list--mega > li.has-mega.is-open > .mega-menu {
    display: grid;
  }
  .site-nav-list--mega > li.has-mega:hover > a,
  .site-nav-list--mega > li.has-mega:focus-within > a,
  .site-nav-list--mega > li.has-mega.is-open > a {
    color: var(--fgs-brand);
  }
}

@media (max-width: 991.98px) {
  .site-topbar-inner { justify-content: flex-start; }
  .site-topbar-list { justify-content: flex-start; }
  .site-nav-list--mega .mega-menu {
    display: none;
    border: 0;
    border-left: 2px solid var(--fgs-brand);
    padding: 0.25rem 0 0.5rem 0.75rem;
    background: transparent;
  }
  .site-nav-list--mega > li.has-mega.is-open > .mega-menu {
    display: block;
  }
}


/* ===== Logo + topbar one row ===== */
.site-header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  min-height: 3.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.site-header-top-row .site-brand {
  flex: 0 0 auto;
}
.site-topbar-slot {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.site-topbar-slot:not(:has(li)) {
  display: none;
}
.site-header-top-row .site-topbar-list {
  width: auto;
  justify-content: flex-end;
  padding: 0;
}
.site-topbar-list .menu-text {
  color: var(--fgs-text);
  font-weight: 400;
  padding: 0.25rem 0;
  display: inline-block;
}
.site-topbar-list .menu-item-social a {
  color: var(--fgs-brand);
}
@media (max-width: 575.98px) {
  .site-header-top-row {
    align-items: flex-start;
  }
  .site-topbar-slot {
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .site-header-top-row .site-topbar-list {
    justify-content: flex-start;
  }
}


/* ===== Menu item Search ===== */
.menu-search {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}
.menu-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-search-input {
  min-width: 9rem;
  height: 2rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: var(--fgs-panel);
  color: #ffffff;
  font: inherit;
  font-size: inherit;
  font-weight: 400;
}
.menu-search-input::placeholder {
  color: #ffffff;
  opacity: 1;
}
.menu-search-input:focus {
  outline: 2px solid var(--fgs-brand);
  outline-offset: 1px;
}
.menu-search-btn {
  height: 2rem;
  padding: 0 0.75rem;
  border: 1px solid var(--fgs-brand);
  border-radius: 0;
  background: var(--fgs-brand);
  color: #131b25;
  font-size: inherit;
  font-weight: 400;
  cursor: pointer;
}
.menu-search-btn:hover,
.menu-search-btn:focus {
  background: #ffffff;
  color: #131b25;
}


/* ===== Topbar match brand title ===== */
.site-header-top-row {
  flex-wrap: nowrap;
}
.site-topbar-slot {
  min-width: 0;
}
.site-topbar-list {
  font-size: 1rem;
  font-weight: 400;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.site-topbar-list a,
.site-topbar-list .menu-text {
  font-size: inherit;
  font-weight: 400;
}
.site-topbar-list .menu-search {
  font-size: inherit;
  font-weight: 400;
}
.site-topbar-list .menu-search-input {
  height: 1.75rem;
  min-width: 7rem;
  font-size: inherit;
  font-weight: 400;
}
.site-topbar-list .menu-search-btn {
  height: 1.75rem;
  padding: 0 0.55rem;
  font-size: inherit;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .site-header-top-row {
    flex-wrap: wrap;
  }
  .site-topbar-list {
    flex-wrap: wrap;
    white-space: normal;
  }
}


/* ===== Mega columns (3-level) ===== */
.site-nav-list--mega .mega-menu {
  align-items: start;
}
.site-nav-list--mega .mega-col {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.75rem;
  min-width: 0;
}
.site-nav-list--mega .mega-col-title {
  display: block;
  color: var(--fgs-brand);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.25rem 0.5rem;
  border-bottom: 1px solid var(--fgs-line);
  margin-bottom: 0.35rem;
}
.site-nav-list--mega .mega-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav-list--mega .mega-col-list > li {
  margin: 0;
}
.site-nav-list--mega .mega-col--footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--fgs-line);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.site-nav-list--mega .mega-col--footer > a,
.site-nav-list--mega a.mega-footer-link {
  color: var(--fgs-brand);
  font-weight: 800;
}
.site-nav-list--mega .mega-cta-recht > a,
.site-nav-list--mega a.mega-cta-recht,
.site-nav-list--mega .mega-col--footer a.mega-cta-recht {
  color: #ffffff;
  background: var(--fgs-brand);
  border: 1px solid var(--fgs-brand);
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  min-height: 44px;
}
.site-nav-list--mega .mega-cta-gesundheit > a,
.site-nav-list--mega a.mega-cta-gesundheit,
.site-nav-list--mega .mega-col--footer a.mega-cta-gesundheit {
  color: #131b25;
  background: #ffffff;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  min-height: 44px;
}
.site-nav-list--mega > li.menu-item-search {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .site-nav-list--mega .mega-menu {
    display: none;
    grid-template-columns: 1fr;
  }
  .site-nav-list--mega > li.has-mega.is-open > .mega-menu {
    display: grid;
  }
  .site-nav-list--mega .mega-col--footer {
    grid-column: auto;
  }
  .site-nav-list--mega > li.menu-item-search {
    margin-left: 0;
    width: 100%;
  }
}


/* ===== Footer 5 columns ===== */
.site-footer .footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  align-items: start;
}
.site-footer .footer-widget-col {
  min-width: 0;
}
.site-footer .footer-widget-col--full {
  grid-column: 1 / -1;
}
.site-footer .footer-widget-col .site-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.site-footer .footer-widget-col .footer-brand-text {
  margin: 0;
  color: var(--fgs-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  max-width: 16rem;
}
.site-footer .footer-widget-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-widget-col li {
  margin: 0;
  padding: 0.2rem 0;
}
.site-footer .footer-widget-col li a {
  display: inline-block;
  padding: 0.25rem 0;
  min-height: 44px;
  line-height: 1.35;
}
@media (max-width: 991.98px) {
  .site-footer .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-widgets {
    grid-template-columns: 1fr;
  }
}


/* ===== Footer content compact ===== */
.site-footer .footer-widgets {
  gap: 1.25rem 1rem;
}
.site-footer .footer-widgets > .footer-widget-col:first-child {
  padding-right: 0.25rem;
}
.site-footer .footer-widgets > .footer-widget-col:nth-child(2) {
  padding-left: 0;
}
.site-footer .footer-brand-heading {
  margin: 0.5rem 0 0.35rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.site-footer .footer-widget-col .site-footer-brand {
  gap: 0.5rem;
}
.site-footer .footer-widget-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-widget-col li {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.site-footer .footer-widget-col li a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0;
  min-height: 44px;
  line-height: 1.35;
  font-size: 0.9375rem;
  font-weight: 400;
}
.site-footer .footer-widget-col h3 {
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
@media (min-width: 992px) {
  .site-footer .footer-widgets {
    column-gap: 2.25rem;
  }
  .site-footer .footer-widgets > .footer-widget-col:first-child {
    padding-right: 2.25rem;
  }
}


/* ===== Footer 4col spacing ===== */
.site-footer .footer-widgets {
  gap: 1.5rem 2.25rem;
}
.site-footer .footer-widgets > .footer-widget-col:first-child {
  padding-right: 2rem;
}
.site-footer .footer-widgets > .footer-widget-col:nth-child(2) {
  padding-left: 0.75rem;
}
.site-footer .footer-widget-col .footer-subheading {
  margin: 1rem 0 0.35rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.site-footer .footer-brand-heading {
  display: none;
}


/* ===== Footer portal 2 lines ===== */
.site-footer .footer-portal-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.3;
}
.site-footer .footer-portal-name {
  font-weight: 700;
}
.site-footer .footer-portal-tag {
  font-weight: 400;
}


/* ===== Footer FIX final (W1 gap + portal 2 lines) ===== */
.site-footer .footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 3.5rem;
  row-gap: 1.5rem;
  align-items: start;
}
.site-footer .footer-widgets > .footer-widget-col:first-child {
  padding-right: 2.5rem;
  margin-right: 0.5rem;
  border-right: 0;
}
.site-footer .footer-widgets > .footer-widget-col:nth-child(2) {
  padding-left: 0.5rem;
}
.site-footer .footer-widget-col li a.footer-portal-link {
  display: block;
  line-height: 1.35;
  white-space: normal;
}
.site-footer .footer-widget-col li a.footer-portal-link br {
  display: block;
  content: "";
}
@media (max-width: 991.98px) {
  .site-footer .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.75rem;
  }
  .site-footer .footer-widgets > .footer-widget-col:first-child {
    padding-right: 0;
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-widgets {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}


/* ===== Footer W1-W2 gap HARD ===== */
.site-footer .container.py-5 > .footer-widgets {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr) !important;
  column-gap: 2rem !important;
  row-gap: 1.5rem !important;
}
.site-footer .container.py-5 > .footer-widgets > .footer-widget-col:nth-child(1) {
  padding-right: 2.75rem !important;
  margin-right: 1.25rem !important;
}
.site-footer .container.py-5 > .footer-widgets > .footer-widget-col:nth-child(2) {
  padding-left: 1.25rem !important;
  margin-left: 0.75rem !important;
}
@media (max-width: 991.98px) {
  .site-footer .container.py-5 > .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 1.5rem !important;
  }
  .site-footer .container.py-5 > .footer-widgets > .footer-widget-col:nth-child(1),
  .site-footer .container.py-5 > .footer-widgets > .footer-widget-col:nth-child(2) {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .site-footer .container.py-5 > .footer-widgets {
    grid-template-columns: 1fr !important;
  }
}


/* ===== Footer gap by class (W1 to W2) ===== */
.site-footer .footer-widgets--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  align-items: start;
}
.site-footer .footer-widgets--4 > .footer-widget-col--1 {
  padding-right: 3rem;
  margin-right: 2rem;
}
.site-footer .footer-widgets--4 > .footer-widget-col--2 {
  padding-left: 1rem;
}
@media (max-width: 991.98px) {
  .site-footer .footer-widgets--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
  .site-footer .footer-widgets--4 > .footer-widget-col--1,
  .site-footer .footer-widgets--4 > .footer-widget-col--2 {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-widgets--4 {
    grid-template-columns: 1fr;
  }
}


/* Hybrid CMS content */
.hybrid-breadcrumb { margin: 0 0 1rem; font-size: 0.9rem; }
.hybrid-breadcrumb a { color: #3bd671; font-weight: 700; }
.hybrid-content__type { margin: 0 0 0.35rem; font-weight: 800; color: #3bd671; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; }
.hybrid-content__header h1 { margin: 0 0 0.75rem; color: #ffffff; }
.hybrid-content__lead { margin: 0 0 1rem; font-size: 1.1rem; }
.hybrid-content__meta { margin: 0 0 1.25rem; }
.hybrid-content__figure { margin: 0 0 1.5rem; }
.hybrid-content__figure img { width: 100%; height: auto; display: block; }
.hybrid-content__body { margin-bottom: 2rem; }
.hybrid-content__sources ul { margin: 0.5rem 0 0 1.1rem; }
.hybrid-content__faqs details { border: 1px solid #3bd671; margin: 0 0 0.5rem; padding: 0.75rem 1rem; }
.hybrid-content__faqs summary { cursor: pointer; font-weight: 700; }


/* PSI footer a11y final */
.site-footer .footer-widget-col li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-sizing: border-box;
}
.site-footer .footer-widget-col li + li {
  margin-top: 0.15rem;
}


/* Home LCP visual — reserves space, above the fold */
.home-lcp {
  margin: 0 0 1.25rem;
}
.home-lcp-visual {
  display: block;
  width: 282px;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .home-lcp-visual {
    width: 200px;
    height: 57px;
  }
}


/* Home intro + CTAs (20260811) */
.home-intro {
  padding: 1.5rem 0 2rem;
}
.home-intro h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.home-lead {
  color: #3bd671;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.home-intro p {
  color: #dce4f2;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #3bd671;
  color: #131b25;
  font-weight: 800;
  text-decoration: none;
}
.home-cta:hover,
.home-cta:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #131b25;
  text-decoration: none;
}
.home-pillars {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}
.hub-stub {
}
.hub-stub p {
  margin: 0 0 1rem;
  line-height: 1.55;
}


/* Home answer cards step2 (20260811) */
.home-answers {
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}
.home-answers-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 1.25rem;
  font-weight: 800;
}
.home-answer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home-answer-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
}
.home-answer-card-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.home-answer-card-text {
  color: #dce4f2;
  margin: 0;
  line-height: 1.55;
  flex: 1 1 auto;
}
.home-answer-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #3bd671;
  font-weight: 600;
  text-decoration: none;
}
.home-answer-card-link:hover,
.home-answer-card-link:focus {
  color: #ffffff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .home-answer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}


/* Home content BG fill to footer (20260811) */
body.is-home #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.is-home .site-main.main-content--home {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: var(--fgs-bg);
  min-height: 0;
}
body.is-home .home-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: var(--fgs-bg);
}
body.is-home .site-footer {
  margin-top: 0;
}


/* Home understand topics step3 (20260811) */
.home-understand {
  margin: 2.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}
.home-understand-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.home-understand-lead {
  color: #dce4f2;
  margin: 0 0 1.25rem;
  line-height: 1.55;
  max-width: none;
  width: 100%;
}
.home-understand-lead-tail {
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .home-understand-lead-tail {
    white-space: normal;
  }
}
.home-topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home-topic-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
}
.home-topic-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.home-topic-card-text {
  color: #dce4f2;
  margin: 0;
  line-height: 1.55;
  flex: 1 1 auto;
}
.home-topic-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #3bd671;
  font-weight: 600;
  text-decoration: none;
}
.home-topic-card-link:hover,
.home-topic-card-link:focus {
  color: #ffffff;
  text-decoration: underline;
}
@media (min-width: 576px) {
  .home-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .home-topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Topic tiles: never inherit page-body justify (20260812) */
.home-topic-card,
.home-topic-card-title,
.home-topic-card-text,
.home-topic-card-link {
  text-align: left;
}
.hub-auswahl,
.hub-auswahl .legal-kurzantwort,
.hub-auswahl .legal-kurzantwort p,
.hub-auswahl .home-topic-card,
.hub-auswahl .home-topic-card-title,
.hub-auswahl .home-topic-card-text,
.hub-auswahl .home-topic-card-link,
.hub-auswahl h2,
.page-body .auswahl-article,
.page-body .auswahl-article p,
.page-body .auswahl-article h2,
.page-body .auswahl-article h3,
.page-body .auswahl-article li,
.page-body .legal-kurzantwort,
.page-body .legal-kurzantwort p {
  text-align: left;
}


/* Home recht block step4 — reuse topic cards */
.home-recht {
  margin: 2.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}

/* Home blocks 5–13 (20260811 finish) */
.home-kaufberatung,
.home-produkte,
.home-gesundheit,
.home-tierabwehr,
.home-reisen,
.home-faktenchecks,
.home-wissen,
.home-aktuelles,
.home-vertrauen {
  margin: 2.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}

.home-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
  min-height: 100%;
}
.home-product-card-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.home-product-card-text {
  color: #dce4f2;
  margin: 0;
  line-height: 1.55;
  flex: 1 1 auto;
}
.home-product-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #3bd671;
  font-weight: 600;
  text-decoration: none;
}
.home-product-card-link:hover,
.home-product-card-link:focus {
  color: #ffffff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}


.home-topic-card--priority {
  border-color: #3bd671;
  background: #172135;
}
.home-topic-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .home-topic-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-section-meta,
.home-tierabwehr-intro,
.home-reisen-note,
.home-wissen-faq-note {
  color: #dce4f2;
  margin: 1rem 0 0;
  line-height: 1.55;
}
.home-subsection-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.25rem 0 0.85rem;
}
.home-section-cta {
  margin: 1.25rem 0 0;
}
.home-cta--outline {
  background: transparent;
  color: #3bd671;
  border-color: #3bd671;
}
.home-cta--outline:hover,
.home-cta--outline:focus {
  background: #3bd671;
  color: #131b25;
  border-color: #3bd671;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}
.home-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.7rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  color: #ffffff;
  background: #172135;
  font-weight: 600;
  font-size: 0.92rem;
}

.home-myth-verdict {
  color: #fff900;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.home-wissen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
}
.home-news-kicker {
  color: #3bd671;
  font-weight: 700;
  margin: 0;
}
.home-news-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}
.home-news-excerpt {
  color: #dce4f2;
  margin: 0;
  line-height: 1.55;
}
@media (min-width: 992px) {
  .home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Hub Recht overview (20260812) */
.hub-recht {
  padding: 0.5rem 0 2rem;
}
.hub-recht .home-topic-card,
.hub-recht .home-topic-card-title,
.hub-recht .home-topic-card-text,
.hub-recht .home-topic-card-link,
.hub-recht .home-understand-lead,
.hub-recht .home-subsection-title,
.hub-recht .hub-recht-sources,
.hub-recht .hub-recht-note,
.hub-recht .hub-recht-note p {
  text-align: left;
}
.hub-recht-intro h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  font-weight: 800;
}
.hub-recht-section {
  margin: 2.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}

/* Hub Recht: Abstand Grid → Alle-Ratgeber-CTA (20260812) */
.hub-recht .home-topic-grid + .home-section-cta {
  margin-top: 0;
  padding-top: 1.5rem;
}

.hub-recht-sources {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
  color: #dce4f2;
  line-height: 1.55;
}
.hub-recht-sources li {
  margin: 0.35rem 0;
}
.hub-recht-note {
  margin: 2.25rem 0 0;
  padding: 1.25rem 1.1rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
  color: #dce4f2;
  line-height: 1.55;
}
.hub-recht-note p {
  margin: 0;
}

/* Legal cornerstone article (20260812) */
.hybrid-content__body .legal-article,
.hybrid-content__body .legal-article p,
.hybrid-content__body .legal-article li,
.hybrid-content__body .legal-article h2,
.hybrid-content__body .legal-article h3,
.hybrid-content__body .home-topic-card,
.hybrid-content__body .home-topic-card-title,
.hybrid-content__body .home-topic-card-text {
  text-align: left;
}
.legal-reviewed {
  color: #3bd671;
  font-weight: 600;
  margin: 1rem 0;
}
.legal-note {
  margin: 1.25rem 0 1.75rem;
  padding: 1.1rem 1rem;
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
  color: #dce4f2;
}
.legal-note p {
  margin: 0;
}
.legal-glance {
  margin: 2.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}
.legal-glance > h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-merke {
  margin: 1.25rem 0 0;
  color: #ffffff;
  font-weight: 600;
}
.legal-article blockquote {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #3bd671;
  background: #172135;
  color: #dce4f2;
}
.legal-article blockquote p {
  margin: 0;
}
.legal-related {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.2rem;
}
.legal-faq {
  margin: 2rem 0 0;
  padding-top: 0;
  border-top: none;
}
.hybrid-content__sources a,
.legal-article a {
  color: #3bd671;
  font-weight: 600;
}
.hybrid-content__sources a:hover,
.legal-article a:hover {
  color: #ffffff;
}

/* Legal section dividers (20260812) */
.legal-article > h2,
.legal-article .faq > h2 {
  margin: 2.25rem 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
}

/* Legal FAQ accordion (20260812) */
.legal-article .faq,
.hybrid-content__body .faq {
  margin: 2.25rem 0 1rem;
}
.legal-article .faq > h2,
.hybrid-content__body .faq > h2 {
  margin: 0 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3bd671;
  text-align: left;
}
.faq details {
  border: 1px solid #3bd671;
  border-radius: 0;
  background: #172135;
  margin: 0 0 0.65rem;
}
.faq details[open] {
  background: #172135;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "▶";
  color: #3bd671;
  flex: 0 0 auto;
  font-size: 0.85rem;
  line-height: 1;
}
.faq details[open] > summary::before {
  content: "▼";
}
.faq details > p {
  margin: 0;
  padding: 0 1rem 1rem 2.35rem;
  color: #dce4f2;
  line-height: 1.55;
  text-align: left;
}

