:root {
  --asv-green: #2e8b57;
}

/* Vereinsfarben */
.asv-bg {
  background-color: var(--asv-green);
}

.asv-text {
  color: var(--asv-green);
}

.asv-border {
  border-color: var(--asv-green);
}

/* Standard Typografie */
h1, h2, h3 {
  font-family: sans-serif;
  font-weight: bold;
}

p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Karten für News, Events usw. */
.card {
  background: white;
  border: 1px solid var(--asv-green);
  border-radius: 0.1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
  margin-bottom: 2.5rem;
}

/* Buttons im Vereinsgrün */
.asv-button {
  background-color: var(--asv-green);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: background 0.1s ease;
}

.asv-button:hover {
  background-color: #256d46; /* dunkleres Grün */
}
