/* ===================================
   Components - Timeline (Common)
   =================================== */

.timeline-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #008AE4 0%, #00C6FF 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-circle {
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 60px;
  background: #008AE4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  z-index: 1;
}

.timeline-content {
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  margin-left: 20px;
}

.timeline-content h4 {
  color: #0066B3;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 50px;
  }

  .timeline-line {
    left: 24px;
  }

  .timeline-circle {
    left: -50px;
    width: 50px;
    height: 50px;
    font-size: 0.85rem;
  }

  .timeline-content {
    margin-left: 10px;
    padding: 15px;
  }
}