/* gaias.social — gemeinsames Stylesheet (statische Unternehmens-/Rechtsseiten) */
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  color: #222;
  line-height: 1.65;
  background: #fff;
}
header.site { margin-bottom: 2.5rem; }
header.site .brand {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  color: inherit;
}
nav.site {
  margin-top: .4rem;
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1rem;
}
nav.site a { color: #0a6e8a; text-decoration: none; }
nav.site a:hover, main a:hover { text-decoration: underline; }
nav.site a[aria-current="page"] { color: inherit; font-weight: 600; }
h1 { font-size: 1.55rem; line-height: 1.3; margin: 0 0 1.2rem; }
h2 { font-size: 1.12rem; margin-top: 2.2rem; }
h3 { font-size: 1rem; margin-top: 1.6rem; }
main a { color: #0a6e8a; }
footer.site {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: .85rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1rem;
}
footer.site a { color: inherit; }
.stand { color: #666; font-size: .9rem; }
@media (prefers-color-scheme: dark) {
  body { background: #111; color: #ddd; }
  nav.site a, main a { color: #6fc3d9; }
  footer.site { border-color: #333; color: #999; }
  .stand { color: #999; }
}
