/* logerio.de — Styling der Rechtsseiten (Impressum, Datenschutz) */
:root {
  --navy: #001842;
  --ink: #101820;
  --muted: #5B6B7C;
  --line: #E9EDF2;
  --bg: #F4F6F9;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
}
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--muted); }

/* Kopf */
.site-header { background: #ffffff; border-bottom: 1px solid var(--line); }
.site-header .inner {
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-header a.brand { display: inline-block; line-height: 0; }
.site-header img { height: 34px; width: auto; display: block; }
.site-header .lang { font-size: 14px; font-weight: 700; text-decoration: none; color: var(--muted); }
.site-header .lang:hover { color: var(--navy); }

/* Inhalt */
main.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 88px; }
.legal-card {
  background: #ffffff; border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 40px rgba(0,24,66,0.07));
  padding: 44px 46px;
}
.legal h1 {
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px; line-height: 1.2; color: var(--navy); margin: 0 0 6px;
}
.legal h2 {
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px; line-height: 1.3; color: var(--navy); margin: 36px 0 8px;
}
.legal h3 { font-size: 16px; color: var(--navy); margin: 22px 0 4px; }
.legal p, .legal li { font-size: 15.5px; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li { margin: 4px 0; }
.legal .lead { color: var(--muted); font-size: 16px; margin-top: 0; }
.legal .stand { font-size: 13px; color: var(--muted); margin-top: 4px; }
.legal address { font-style: normal; }
.legal .note {
  background: var(--bg); border-left: 3px solid var(--navy);
  padding: 14px 18px; margin: 16px 0; font-size: 14.5px; color: var(--muted);
}
.backlink { display: inline-block; margin-top: 30px; font-weight: 700; text-decoration: none; }

/* Fuß */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.site-footer .inner {
  max-width: 1120px; margin: 0 auto; padding: 30px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.site-footer .links { display: flex; gap: 12px 24px; flex-wrap: wrap; justify-content: center; font-size: 14.5px; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: #ffffff; }
.site-footer .copy {
  font-size: 13px; color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.18); padding-top: 16px; width: 100%;
}

@media (max-width: 560px) {
  .legal-card { padding: 30px 22px; }
  .legal h1 { font-size: 25px; }
}
