.page-content {
  margin-left: 120px;
  margin-right: auto;
  width: auto;
  padding-bottom: 2rem;
}

.page-header {
  background: #f3f3f3;
  padding: 2rem 1rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.breadcrumb {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

h3 {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Timeline Grundstruktur */
.timeline {
  position: relative;
  margin-left: 120px;
  margin-right: auto;
  max-width: calc(100% - 200px - 1rem);
  padding-left: 2rem;
  border-left: 4px solid var(--accent-color);
  margin-top: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -12px;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-marker {
  display: none;
}

.timeline-content {
  background-color: #f3f3f3;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.timeline-content.in-view {
  background-color: #e1e1e1;
  transform: translateX(12px);
}

/* Headings */
.timeline-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  color: #444;
}

/* Liste */
.timeline-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .page-content,
  .timeline {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1rem;
    width: auto;
    max-width: none;
  }

  .timeline-marker {
    left: -8px;
  }

  .timeline-content {
    padding: 1rem;
  }

  .timeline-content h2 {
    font-size: 1.3rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content ul,
  .timeline-content p {
    font-size: 0.95rem;
  }

  .timeline-content ul li {
    margin-left: -2.5rem;
  }


}