/* ==========================================================================
   SATZUNG SEITEN-STYLING
   ========================================================================== */

.satzung-container {
  padding: 60px 40px 20px 40px;
  color: #2c523e; /* Vereinsgrün */
  line-height: 1.6;
}

/* Haupttitel "Satzung" */
.satzung-container h1 {
  font-family: 'Garamond', serif;
  font-size: 2.8rem;
  margin-bottom: 35px;
  border-bottom: 2px solid rgba(44, 82, 62, 0.2);
  padding-bottom: 15px;
  text-align: center;
  line-height: 1.2;
}

.satzung-container h1 .subtitle {
  font-size: 1.8rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

/* Präambel am Anfang der Satzung */
.praeambel {
  background: rgba(44, 82, 62, 0.03);
  padding: 20px 25px;
  border-radius: 6px;
  margin-bottom: 45px;
  border: 1px dashed rgba(44, 82, 62, 0.2);
  font-style: italic;
}

/* Struktur für jeden Paragrafen */
.satzung-section {
  margin-bottom: 35px;
  font-size: 1.05rem;
}

/* Paragrafen-Überschriften */
.satzung-section h3 {
  font-family: 'Garamond', serif;
  font-size: 1.45rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: #2c523e;
  border-bottom: 1px solid rgba(44, 82, 62, 0.15);
  padding-bottom: 5px;
}

.satzung-container p {
  margin-bottom: 12px;
  text-align: justify;
}

/* Listen-Styling innerhalb der Satzung */
.satzung-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: square;
}

.satzung-container ul li {
  margin-bottom: 8px;
}

/* Spezielle optische Hervorhebung für den Auflösungs-Paragrafen */
.resolve-box {
  background: rgba(210, 180, 140, 0.1); /* Dezent edler Ton für den Ernstfall */
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #2c523e;
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN (MOBILGERÄTE)
   ========================================================================== */
@media screen and (max-width: 900px) {
  .satzung-container {
    padding: 30px 20px 10px 20px;
  }
  
  .satzung-container h1 {
    font-size: 2rem;
  }

  .satzung-container h1 .subtitle {
    font-size: 1.3rem;
  }
  
  .satzung-section h3 {
    font-size: 1.25rem;
  }

  .satzung-container p {
    text-align: left; /* Linksbündig liest sich auf Smartphones flüssiger */
  }
}