/* ═══════ LEGAL PAGES (Impressum / Datenschutz) ═══════ */
/* Inherits fonts, tokens and nav from css/style.css */

.legal-body{
  background:#fbfdff;
  color:var(--text);
  line-height:1.7;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.legal-main{
  flex:1;
  padding:140px 24px 80px;
  max-width:920px;
  margin:0 auto;
  width:100%;
}

.legal-article{
  background:#fff;
  border:1px solid #e6eef7;
  border-radius:16px;
  padding:56px 56px;
  box-shadow:0 6px 24px -12px rgba(19,36,63,.08);
}

.legal-header{
  border-bottom:1px solid #e6eef7;
  padding-bottom:28px;
  margin-bottom:36px;
}

.legal-kicker{
  font-size:12px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:12px;
}

.legal-header h1{
  font-size:clamp(28px,3.5vw,40px);
  font-weight:800;
  color:var(--deep);
  line-height:1.15;
  margin-bottom:18px;
  letter-spacing:-.5px;
}

.legal-lead{
  font-size:16px;
  color:var(--muted);
  max-width:680px;
  line-height:1.6;
}

.legal-article section{
  margin-bottom:36px;
}

.legal-article section:last-of-type{
  margin-bottom:12px;
}

.legal-article h2{
  font-size:20px;
  font-weight:700;
  color:var(--deep);
  margin-bottom:14px;
  letter-spacing:-.2px;
}

.legal-article p{
  font-size:15px;
  color:#334155;
  margin-bottom:14px;
}

.legal-article p:last-child{
  margin-bottom:0;
}

.legal-article ul{
  padding-left:22px;
  margin-bottom:14px;
}

.legal-article li{
  font-size:15px;
  color:#334155;
  margin-bottom:8px;
}

.legal-article li::marker{
  color:var(--primary);
}

.legal-article a{
  color:var(--primary);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
  transition:color .2s;
  word-break:break-word;
}

.legal-article a:hover,
.legal-article a:focus-visible{
  color:var(--deep);
}

.legal-article strong{
  color:var(--deep);
  font-weight:600;
}

.legal-article em{
  font-style:italic;
  color:#475569;
}

.legal-back{
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid #e6eef7;
  font-size:14px;
}

.legal-back a{
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:var(--primary);
  font-weight:600;
  text-decoration:none;
  transition:transform .2s;
}

.legal-back a:hover,
.legal-back a:focus-visible{
  transform:translateX(-3px);
  color:var(--deep);
}

/* Legal-page footer: a touch lighter spacing than the main footer */
.legal-body footer{
  margin-top:auto;
}

@media (max-width:720px){
  .legal-main{
    padding:110px 16px 60px;
  }
  .legal-article{
    padding:32px 24px;
    border-radius:12px;
  }
  .legal-header{
    padding-bottom:20px;
    margin-bottom:28px;
  }
  .legal-article section{
    margin-bottom:28px;
  }
  .legal-article h2{
    font-size:18px;
  }
}

@media (max-width:420px){
  .legal-article{
    padding:24px 18px;
  }
  .legal-article p,
  .legal-article li{
    font-size:14px;
  }
}
