/* Basis-Designfarben */
:root {
  --green-primary: #70A54A;
  --gold-accent: #C29D20;
  --text-color: #000000;
}

/* Grundlegende Formatierung */
body {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  line-height: 1.44;
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

/* Überschriften in Grün */
h1, h2, h3, h4, h5, h6 {
  color: var(--green-primary);
}

/* Goldener Text per <span class="gold"> */
.gold {
  color: var(--gold-accent);
}

/* Layoutbereiche */
.section {
  padding: 3rem 1rem;
}

.section-light {
  background-color: #f9f9f9;
}

.section-dark {
  background-color: #e6e6e6;
}

/* Zwei-Spalten-Layout für Startseite */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

/* Bilder */
.symbolbild {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Buttons */
.button {
  background-color: var(--green-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background-color: #5e8f3e;
  text-decoration: none;
  outline: none;
}

/* Barrierefreiheit */
.button:focus-visible {
  outline: 3px solid var(--gold-accent);
  outline-offset: 3px;
}

/* Aktives Menüelement */
nav ul li.active > a,
nav ul li.current > a,
ul.menu li.active > a,
ul.menu li.current > a {
  color: var(--green-primary);
  font-weight: bold;
}

.view-article #sp-main-body>.container .article-title-wrap {
    padding-top: 90px;
    background-color: #FDFCF8;
}

.view-article #sp-main-body>.container .article-title-wrap .article-header h1 {
    max-width: 860px;
    margin: 20px 0 56px 0;
    font-size: 40px;
    color: #70A54A;
    font-weight: 800;
    font-family: "arial";
    line-height: 112%;
    letter-spacing: 0px;
}