/* ═══════════════════════════════════════════════════════════════
   bezirklive.at — Shared styles für Legal Pages (Impressum, AGB, Datenschutz)
   ═══════════════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #F6F4EF;
  color: #0C0C0A;
  line-height: 1.6;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.legal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.legal-header .logo {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, #0A4A24, #166435);
  color: #fff; display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces',serif; font-weight: 700; font-size: 20px;
  box-shadow: 0 6px 16px rgba(10,74,36,.25);
  text-decoration: none;
}
.legal-header .brand-name {
  font-family:'Fraunces',serif; font-weight:700; font-size: 20px;
  letter-spacing: -.4px; color: #0C0C0A;
  text-decoration: none;
}
.legal-header .brand-name span { color: #0A4A24; }
.legal-header nav {
  margin-left: auto;
  display: flex; gap: 18px;
  font-size: 13px; font-weight: 600;
}
.legal-header nav a {
  color: #66645D; text-decoration: none;
  transition: color .15s;
}
.legal-header nav a:hover { color: #0A4A24; }
.legal-header nav a.app {
  color: #fff; background: #0A4A24;
  padding: 7px 14px; border-radius: 9px;
  font-weight: 700;
}
.legal-header nav a.app:hover { background: #166435; color:#fff; }
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 12px 0 8px;
  text-wrap: balance;
}
.meta {
  font-size: 13px;
  color: #66645D;
  margin-bottom: 32px;
  font-weight: 500;
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.5px;
  margin: 36px 0 12px;
  color: #0C0C0A;
}
h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  margin: 22px 0 8px;
  color: #0C0C0A;
}
p, li {
  font-size: 15px;
  color: #3F3D38;
  margin: 0 0 12px;
}
li { margin-bottom: 6px; }
ul, ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
a {
  color: #0A4A24;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: #166435; }
strong { color: #0C0C0A; font-weight: 700; }
.callout {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 16px 0 24px;
  font-size: 14.5px;
}
.callout strong { color: #0A4A24; }
.address-block {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 18px 20px;
  margin: 8px 0 24px;
  font-size: 15px;
  line-height: 1.7;
}
.address-block strong { color: #0C0C0A; }
hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,.08);
  margin: 32px 0;
}
.footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #66645D;
}
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { color: #66645D; font-weight: 600; text-decoration: none; }
.footer a:hover { color: #0A4A24; }
@media (max-width: 520px){
  .legal-wrap { padding: 22px 18px 48px; }
  h1 { font-size: 32px; }
  h2 { font-size: 19px; margin: 28px 0 10px; }
  .legal-header nav a:not(.app) { display: none; }
}
