/*
 * CCTV Content Overlay · 2026-09-01
 * Ergänzt vorhandene CCTV-Security-Styles, ohne bestehende Bundles zu ändern.
 */
:root {
  --cctv-overlay-ink: #102033;
  --cctv-overlay-panel: #f2f6f8;
  --cctv-overlay-accent: #21d0b2;
  --cctv-overlay-line: rgba(16, 32, 51, 0.16);
}

.cctv-content-hub {
  background: var(--cctv-overlay-panel);
  border-top: 1px solid var(--cctv-overlay-line);
  padding: 3.75rem 1.25rem;
}

.cctv-content-hub__inner,
.cctv-overlay-shell {
  margin: 0 auto;
  max-width: 1180px;
}

.cctv-content-hub__intro {
  max-width: 44rem;
}

.cctv-content-hub__intro h2,
.cctv-overlay-page h1,
.cctv-overlay-page h2,
.cctv-overlay-page h3 {
  color: var(--cctv-overlay-ink);
}

.cctv-content-hub__intro p,
.cctv-overlay-page p,
.cctv-overlay-page li {
  line-height: 1.65;
}

.cctv-content-hub__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.cctv-content-hub__card,
.cctv-overlay-card {
  background: #fff;
  border: 1px solid var(--cctv-overlay-line);
  border-radius: 0.9rem;
  box-shadow: 0 0.65rem 1.5rem rgba(16, 32, 51, 0.07);
  padding: 1.35rem;
}

.cctv-content-hub__card {
  color: var(--cctv-overlay-ink);
  display: flex;
  flex-direction: column;
  min-height: 13rem;
  text-decoration: none;
}

.cctv-content-hub__card:hover,
.cctv-content-hub__card:focus-visible {
  border-color: var(--cctv-overlay-accent);
  transform: translateY(-2px);
}

.cctv-content-hub__card span,
.cctv-overlay-kicker {
  color: #087f6d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cctv-content-hub__card strong {
  font-size: 1.2rem;
  margin: 0.55rem 0;
}

.cctv-content-hub__card small {
  margin-top: auto;
}

.cctv-overlay-page {
  background: #fff;
  color: #253445;
}

.cctv-overlay-header {
  background: #081726;
  color: #fff;
  padding: 0.85rem 1.25rem;
}

.cctv-overlay-header__inner,
.cctv-overlay-footer__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.cctv-overlay-header a,
.cctv-overlay-footer a {
  color: inherit;
}

.cctv-overlay-brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.cctv-overlay-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cctv-overlay-nav a {
  font-size: 0.92rem;
}

.cctv-overlay-hero {
  background:
    linear-gradient(120deg, rgba(3, 25, 42, 0.96), rgba(5, 54, 70, 0.88)),
    #0d2838;
  color: #fff;
  padding: 5.5rem 1.25rem 4rem;
}

.cctv-overlay-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 0.6rem 0 1rem;
  max-width: 16ch;
}

.cctv-overlay-hero p {
  max-width: 46rem;
}

.cctv-overlay-breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.cctv-overlay-breadcrumbs a {
  color: #c6fdf2;
}

.cctv-overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.cctv-overlay-action {
  border: 1px solid var(--cctv-overlay-accent);
  border-radius: 0.45rem;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.cctv-overlay-action--primary {
  background: var(--cctv-overlay-accent);
  color: #06231e;
}

.cctv-overlay-section {
  padding: 4rem 1.25rem;
}

.cctv-overlay-section--muted {
  background: var(--cctv-overlay-panel);
}

.cctv-overlay-lead {
  font-size: 1.12rem;
  max-width: 54rem;
}

.cctv-overlay-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.cctv-overlay-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cctv-overlay-card h3 {
  margin-top: 0.25rem;
}

.cctv-overlay-card ul,
.cctv-overlay-card ol {
  padding-left: 1.2rem;
}

.cctv-overlay-callout {
  background: #092434;
  border-left: 0.35rem solid var(--cctv-overlay-accent);
  color: #fff;
  margin-top: 1.8rem;
  padding: 1.35rem 1.5rem;
}

.cctv-overlay-callout h2,
.cctv-overlay-callout h3 {
  color: #fff;
}

.cctv-overlay-faq details {
  background: #fff;
  border-bottom: 1px solid var(--cctv-overlay-line);
  padding: 1rem 0;
}

.cctv-overlay-faq summary {
  color: var(--cctv-overlay-ink);
  cursor: pointer;
  font-weight: 700;
}

.cctv-overlay-related {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cctv-overlay-related a {
  color: var(--cctv-overlay-ink);
  text-decoration-thickness: 0.08em;
}

.cctv-overlay-footer {
  background: #081726;
  color: #d6e2e9;
  padding: 1.5rem 1.25rem;
}

@media (max-width: 760px) {
  .cctv-content-hub__grid,
  .cctv-overlay-grid,
  .cctv-overlay-grid--two,
  .cctv-overlay-related {
    grid-template-columns: 1fr;
  }

  .cctv-overlay-header__inner,
  .cctv-overlay-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cctv-overlay-hero {
    padding-top: 3.5rem;
  }
}
