/* /css/timeline.css */
.timeline 
{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after 
{
  content: '';
  position: absolute;
  width: 6px;
  background: #8B4513; /* Barva historického dřeva */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-item 
{
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after
 {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #5E2C04;
  border: 4px solid #8B4513;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Responsive design pro mobilní zařízení */
@media screen and (max-width: 768px) 
{
  .timeline::after 
  {
    left: 31px;
  }
}
