/* ============================================
   Erzwanderweg – Ehrenamtsaufruf
   Passe Farben, Abstände und Breakpoints
   gerne an dein bestehendes Layout an.
   ============================================ */

/* Seitencontainer */
.ew-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero-Bereich mit grünem Akzentbalken */
.ew-hero {
  border-left: 3px solid #3B6D11;
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.ew-hero h1 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.ew-hero p {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

/* Fließtext-Abschnitte */
.ew-body {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 1.5rem;
}

.ew-body p {
  margin: 0 0 1rem;
}

/* Karten-Grid */
.ew-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.ew-card {
  background: #f5f5f2;
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.ew-card-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EAF3DE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: #3B6D11;
}

.ew-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #1a1a1a;
}

.ew-card p {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Zitat */
.ew-quote {
  border-left: 3px solid #c8e6b0;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  background: #f5f5f2;
  border-radius: 0 8px 8px 0;
}

.ew-quote p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

/* Trennlinie */
.ew-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

/* Call-to-Action */
.ew-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.ew-cta h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.ew-cta p {
  font-size: 1.1rem;
  color: #555;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

/* Button / Link */
.ew-btn {
  display: inline-block;
  background: #3B6D11;
  color: #EAF3DE;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.ew-btn:hover {
  background: #27500A;
  color: #EAF3DE;
}

/* ============================================
   Responsive – passe Breakpoints nach Bedarf an
   ============================================ */

/* Tablet: 2 Karten nebeneinander */
@media (max-width: 680px) {
  .ew-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ew-hero h1 {
    font-size: 1.35rem;
  }
}

/* Handy: Karten untereinander */
@media (max-width: 420px) {
  .ew-cards {
    grid-template-columns: 1fr;
  }

  .ew-hero h1 {
    font-size: 1.2rem;
  }

  .ew-page {
    padding: 1.25rem 0.75rem;
  }
}