/* /css/datenschutz.css */

:root{
  --ds-red: #b91c1c;
  --ds-bg: #ffffff;
  --ds-soft: rgba(15,23,42,.06);
  --ds-border: rgba(15,23,42,.10);
  --ds-text: #0f172a;
  --ds-muted: rgba(15,23,42,.70);
  --ds-radius: 14px;
  --ds-shadow: 0 14px 34px rgba(15,23,42,.10);
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  background: var(--ds-bg);
  color: var(--ds-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ds-container{
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* HERO wie Screenshot */



/* HERO */
.ds-hero{
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: #f2f3f6;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Gebäude-Bild unten */
.ds-hero__bg{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
  opacity: .95;
}

/* Weißer Verlauf/Overlay wie im Entwurf */
.ds-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(15,23,42,.75) 0%,
      rgba(15,23,42,.45) 45%,
      rgba(15,23,42,0) 85%
    ),
    url("/img/officebuilding.png");
}


/* Text-Inhalt immer oben */
.ds-hero__inner{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}







.ds-breadcrumb{
  font-size: 12px;
  color: var(--ds-muted);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.ds-breadcrumb a{
  color: var(--ds-muted);
  text-decoration: none;
}
.ds-breadcrumb__sep{ opacity: .7; }
.ds-breadcrumb--center{ margin-top: 10px; }

.ds-hero__title{
  margin: 26px 0 0;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: 0.02em;
  font-weight: 900;
}

/* GRID */
.ds-grid{
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 26px;
  padding: 34px 0 70px;
  align-items: start;
}

/* LEFT NAV */
.ds-nav{
  background: #fff;
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  overflow: hidden;
}
.ds-nav__head{
  background: #7a2e2e;
  color: #fff;
  font-weight: 800;
  padding: 14px 16px;
  font-size: 14px;
}
.ds-nav__item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(15,23,42,.06);
  text-decoration: none;
  color: var(--ds-text);
  font-size: 13px;
}
.ds-nav__item:hover{ background: rgba(185,28,28,.05); }
.ds-nav__item.is-active{
  background: rgba(185,28,28,.08);
  font-weight: 800;
}
.ds-nav__chev{ color: rgba(15,23,42,.45); font-size: 18px; }

/* MAIN */
.ds-main .ds-h2{
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
}
.ds-section{ margin-top: 18px; }
.ds-h3{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
}
.ds-h4{
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 900;
}
.ds-p{
  margin: 0 0 10px;
  color: var(--ds-muted);
  line-height: 1.65;
  font-size: 13px;
}

/* CARD in der Mitte */
.ds-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--ds-radius);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  overflow: hidden;
}
.ds-card__head{
  padding: 12px 14px;
  background: rgba(15,23,42,.03);
  border-bottom: 1px solid rgba(15,23,42,.08);
  font-weight: 900;
  font-size: 13px;
}
.ds-card__body{
  padding: 14px;
}

.ds-iconlist{ display: grid; gap: 14px; }
.ds-row{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}
.ds-ic{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(185,28,28,.08);
  border: 1px solid rgba(185,28,28,.12);
  font-size: 16px;
}
.ds-row p{
  margin: 0;
  color: var(--ds-muted);
  line-height: 1.6;
  font-size: 13px;
}

/* RIGHT HELP BOX */
.ds-help{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  padding: 16px;
}
.ds-help__head{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  margin-bottom: 8px;
}
.ds-help__lock{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
}
.ds-help__text{
  margin: 0 0 14px;
  color: var(--ds-muted);
  line-height: 1.6;
  font-size: 13px;
}
.ds-help__btn{
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: #7a2e2e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}





/* Responsive */
@media (max-width: 1100px){
  .ds-grid{ grid-template-columns: 1fr; }
  .ds-right{ order: 3; }
}