.wwg-mitgliederentwicklung {
  background: #ffffff;
  border: 1px solid var(--wwg-color-border-soft);
  border-radius: var(--wwg-card-radius);
  padding: 24px;
  color: var(--wwg-color-text);
  box-shadow: none;
}

.wwg-mitgliederentwicklung__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.wwg-mitgliederentwicklung__eyebrow {
  color: var(--wwg-color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.wwg-mitgliederentwicklung__title {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.2;
  color: var(--wwg-color-text);
}

.wwg-mitgliederentwicklung__subtitle {
  margin: 0;
  color: var(--wwg-color-text-muted);
}

.wwg-mitgliederentwicklung__status {
  min-width: 200px;
  background: var(--wwg-color-surface-soft);
  border: 1px solid var(--wwg-color-border-soft);
  border-radius: var(--wwg-card-radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wwg-mitgliederentwicklung__status-label,
.wwg-mitgliederentwicklung__card-label {
  font-size: 13px;
  color: var(--wwg-color-text-muted);
}

.wwg-mitgliederentwicklung__status strong,
.wwg-mitgliederentwicklung__card-value {
  font-size: 24px;
  line-height: 1.2;
  color: var(--wwg-color-text);
}

.wwg-mitgliederentwicklung__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.wwg-mitgliederentwicklung__card {
  background: var(--wwg-color-surface-soft);
  border: 1px solid var(--wwg-color-border-soft);
  border-radius: var(--wwg-card-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wwg-mitgliederentwicklung__card-meta {
  color: var(--wwg-color-text-muted);
  font-size: 14px;
}

.wwg-mitgliederentwicklung__card-value--up {
  color: var(--wwg-color-success);
}

.wwg-mitgliederentwicklung__card-value--down {
  color: var(--wwg-color-error);
}

.wwg-mitgliederentwicklung__panel {
  background: var(--wwg-color-surface-soft);
  border: 1px solid var(--wwg-color-border-soft);
  border-radius: var(--wwg-card-radius);
  padding: 20px;
}

.wwg-mitgliederentwicklung__panel-head h3 {
  margin: 0 0 6px;
  color: var(--wwg-color-text);
}

.wwg-mitgliederentwicklung__panel-head p {
  margin: 0 0 18px;
  color: var(--wwg-color-text-muted);
}

.wwg-mitgliederentwicklung__chart {
  width: 100%;
}

.wwg-mitgliederentwicklung__svg {
  width: 100%;
  height: 320px;
  display: block;
}

.wwg-mitgliederentwicklung__grid-line {
  stroke: #dbe5ef;
  stroke-width: 1;
}

.wwg-mitgliederentwicklung__area {
  fill: rgba(0, 172, 236, 0.12);
}

.wwg-mitgliederentwicklung__line {
  fill: none;
  stroke: var(--wwg-color-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wwg-mitgliederentwicklung__point circle {
  fill: #ffffff;
  stroke: var(--wwg-color-primary);
  stroke-width: 3;
}

.wwg-mitgliederentwicklung__labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 8px;
  margin-top: 12px;
  color: var(--wwg-color-text-muted);
  font-size: 12px;
}

.wwg-mitgliederentwicklung__labels span {
  text-align: center;
}

.wwg-mitgliederentwicklung__empty {
  padding: 24px;
  text-align: center;
  color: var(--wwg-color-text-muted);
  background: #ffffff;
  border: 1px dashed var(--wwg-color-border);
  border-radius: var(--wwg-card-radius);
}

@media (max-width: 900px) {
  .wwg-mitgliederentwicklung__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wwg-mitgliederentwicklung {
    padding: 18px;
  }

  .wwg-mitgliederentwicklung__header {
    flex-direction: column;
  }

  .wwg-mitgliederentwicklung__title {
    font-size: 24px;
  }

  .wwg-mitgliederentwicklung__kpis {
    grid-template-columns: 1fr;
  }

  .wwg-mitgliederentwicklung__svg {
    height: 260px;
  }
}
