@charset "UTF-8";

/* =====================================================
   NUTZUNGSBEDINGUNGEN – Clean / Professional (wie Konfigurator)
   Ziel:
   - Inter
   - White + Black + neutrales Grau
   - kantig (keine Rundungen)
   - KEIN Schatten unter Header/Navbar
   - Sections wie Konfigurator-Boxen (selection-area Look)
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* ---------- Basis / Hard reset für diese Seite ---------- */
html{
  background: #fff !important;
}

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  background-color: #fff !important;
  color: #111 !important;
  margin: 0;
  padding: 0;
  text-align: initial;
  overflow-x: hidden !important;
}

/* Main spacing wie Konfigurator */
main{
  max-width: 1320px;
  margin: 28px auto;
  padding: 80px 1.5rem 0; /* oben wie main { padding-top: 80px } */
  background: transparent;
}

/* ---------- Hard kill: Schatten/Glow von global.css (Navbar etc.) ---------- */
header,
.navbar,
.navbar *,
.site-header,
.header,
#header,
#page,
#wrapper,
.wrapper,
.page-wrapper,
.main-content{
  box-shadow: none !important;
  filter: none !important;
}

header::before, header::after,
.navbar::before, .navbar::after,
#page::before, #page::after,
#wrapper::before, #wrapper::after,
.wrapper::before, .wrapper::after{
  content: none !important;
  display: none !important;
  box-shadow: none !important;
}

/* ---------- Container ---------- */
.regeln-container{
  max-width: 1320px; /* gleiche Kante wie main */
  margin: 0 auto;
}

/* ---------- H1: clean (wie Konfigurator-H2 Stil) ---------- */
.regeln-container h1{
  text-align: left;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
}

/* Keine Deko-Linie */
.regeln-container h1::after{
  content: none !important;
  display: none !important;
}

/* ---------- Sections: wie selection-area (kantig, clean) ---------- */
.regeln-container section{
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border-radius: 0;
  padding: 18px;
  margin: 0 0 18px;
}

/* ---------- H2: wie Konfigurator-H2 ---------- */
.regeln-container h2{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111;
  margin: 0 0 0.75rem;
  letter-spacing: 0.2px;

  /* kill elegance border-left */
  border: none !important;
  padding-left: 0 !important;
}

/* ---------- Text: wie Konfigurator p ---------- */
.regeln-container p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
  margin: 0 0 10px;
}

/* ---------- Listen: clean ---------- */
.regeln-container ul{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
  margin: 10px 0 0;
  padding-left: 18px; /* etwas kompakter als vorher */
  list-style-type: disc;
}

.regeln-container li{
  margin: 0 0 8px;
}

/* Links (falls du welche hast) – neutral clean */
.regeln-container a{
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.35);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 120ms ease, text-decoration-color 120ms ease;
}

.regeln-container a:hover{
  color: #000;
  text-decoration-color: rgba(0,0,0,0.6);
}

/* ---------- Responsive wie Konfigurator mobile ---------- */
@media (max-width: 900px){
  main{
    margin: 0 auto;
    padding: 70px 12px 0;
    max-width: 100%;
  }

  .regeln-container section{
    padding: 14px;
    margin-bottom: 12px;
  }

  .regeln-container h1{
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
