#afg-timeline {
  position: relative;
  width: 100%;
  height: 85vh;           /* Timeline-Viewport */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;       /* kein horizontal scroll */
  background: white;
}

/* SVG liegt unten, Cards liegen als Overlay darüber */
#afg-timeline svg {
  display: block;
}

.afg-cards-layer {
  position: absolute;
  inset: 0;
  pointer-events: none; /* damit scrollen/zoomen nicht blockiert wird */
}

.afg-card {
  position: absolute;
  width: 360px;
  pointer-events: auto;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  background: #fff;
}

.afg-card .topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
}

.afg-card .subject {
  font-weight: 650;
  font-size: 14px;
  line-height: 1.2;
}

.afg-card .date {
  font-size: 12px;
  opacity: 0.7;
  white-space: nowrap;
}

.afg-card .meta {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.afg-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
}

.afg-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  margin-right: 6px;
}
