/* TB-Consent, Banner */
#tb-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--tb-bg-card, #fff);
  color: var(--tb-ink-900, #0E0E2A);
  border-top: 1px solid var(--tb-line, #E7E7F2);
  padding: .85rem 1.25rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,.10);
  z-index: 9000;
  font-family: Inter, system-ui, sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  animation: tbcookie-slide-up 300ms cubic-bezier(.32,.72,0,1) both;
}
@keyframes tbcookie-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
#tb-cookie-banner.is-visible { display: block; }
#tb-cookie-banner[hidden] { display: none; }
#tb-cookie-banner .tb-cookie-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
#tb-cookie-banner h2 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-family: Geist, Inter, sans-serif;
}
#tb-cookie-banner p { margin: 0; max-width: 60ch; }
#tb-cookie-banner .tb-cookie-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  #tb-cookie-banner { inset: auto .5rem .5rem .5rem; padding: 1rem; }
  #tb-cookie-banner .tb-cookie-actions { width: 100%; }
  #tb-cookie-banner .tb-cookie-actions .tb-btn { flex: 1; justify-content: center; }
}

/* ── Cookie-Decline-Block auf /nur-impressum ─────────────────────────
   Wird per the_content-Filter automatisch eingefügt wenn die Page
   gerendert wird. Auffällig genug, dass der User die Konsequenz seiner
   Ablehnung sieht, nicht alarmierend, aber klar. */
.tb-consent-decline-block {
  margin: 0 0 var(--space-8, 2rem);
  padding: 1.5rem 1.75rem;
  background: color-mix(in srgb, var(--tb-primary-50, #EEEEFD) 80%, var(--tb-bg-card, #fff));
  border: 1px solid color-mix(in srgb, var(--tb-primary-200, #C7C7F0) 60%, transparent);
  border-left: 4px solid var(--tb-primary-700, #1919C8);
  border-radius: var(--radius-md, 8px);
}
.tb-consent-decline-block h2 {
  margin: 0 0 0.75rem;
  font-family: Geist, Inter, sans-serif;
  font-size: 1.35rem;
  color: var(--tb-ink-900, #0E0E2A);
}
.tb-consent-decline-block p {
  margin: 0 0 0.75rem;
  line-height: 1.55;
  color: var(--tb-ink-700, #374151);
}
.tb-consent-decline-block strong { color: var(--tb-ink-900, #0E0E2A); }
.tb-consent-decline-block em { color: var(--tb-primary-700, #1919C8); font-style: italic; font-weight: 600; }
.tb-consent-decline-block .tb-btn { margin-top: 0.5rem; }
