/* ── DATENSCHUTZ HERO ─────────────────────────────────── */
#ds-hero {
  background: linear-gradient(135deg, #bfdbfe 0%, #bae6fd 42%, #99f6e4 100%);
  padding: 120px 5vw 64px;
  position: relative; overflow: hidden;
}
#ds-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(56,189,248,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.ds-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.ds-title {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800;
  line-height: 1.15; color: #0f172a; margin-bottom: 14px;
}
.ds-sub {
  font-size: 15px; color: #475569; line-height: 1.7;
}

/* ── CONTENT ──────────────────────────────────────────── */
#ds-content { background: white; }
.ds-article {
  max-width: 780px;
  font-size: 15px; color: #374151; line-height: 1.8;
}
.ds-article h2 {
  font-size: 20px; font-weight: 700; color: #0f172a;
  margin-top: 44px; margin-bottom: 14px;
}
.ds-article h3 {
  font-size: 16px; font-weight: 700; color: #0f172a;
  margin-top: 28px; margin-bottom: 10px;
}
.ds-article p {
  margin-bottom: 16px;
}
.ds-article ul {
  padding-left: 22px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.ds-article ul li {
  line-height: 1.65;
}
.ds-article a {
  color: #2563eb; font-weight: 500; text-decoration: none;
}
.ds-article a:hover { text-decoration: underline; }
.ds-toc {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 22px 28px; margin-bottom: 36px;
}
.ds-toc-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: #94a3b8; text-transform: uppercase; margin-bottom: 12px;
}
.ds-toc ol {
  padding-left: 20px; display: flex; flex-direction: column; gap: 6px;
}
.ds-toc li {
  font-size: 14px; color: #374151; line-height: 1.5;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 820px) {
  #ds-hero { padding: 100px 5vw 48px; }
  .ds-article { font-size: 14.5px; }
}
@media (max-width: 480px) {
  .ds-article h2 { font-size: 17px; }
  .ds-article h3 { font-size: 15px; }
  .ds-toc { padding: 18px 20px; }
}
