/* Timeline wrapper */
.vertical-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Center vertical line */
.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(96, 15, 49, 0.1); 
  transform: translateX(-50%);
}

/* Timeline item row */
.vt-item {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  /* align-items: center; */
  margin-bottom: 80px;
  position: relative;
}

/* Marker (icon container) */
.vt-marker {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vt-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* border: 1px solid rgba(96, 15, 49, 0.1);  */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Content blocks */
.vt-content {
  max-width: 420px;
}

.vt-left .vt-content {
  text-align: right;
  justify-self: end;
}

.vt-right .vt-content {
  text-align: left;
  justify-self: start;
}

/* Empty spacer */
.vt-spacer {
  height: 1px;
}

/* Typography */
.vt-content h3 {
  font-size: 60px;
  margin-bottom: 10px;
  color: var(--color-content-primary);
}

.vt-content p {
  color: #666;
  line-height: 1.6;
}
.vertical-timeline::before {
  background: var(--vt-line-color, rgba(96, 15, 49, 0.1));
}
@media (max-width: 768px) {
  .vt-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .vertical-timeline::before {
    left: 24px;
  }

  .vt-marker {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .vt-content {
    max-width: 100%;
  }
}
