 
/* ── SECTION WRAPPER ── */
 
.raa-timeline-section-inner {
  max-width: 1600px;
  margin: 0 auto;
}
 

/* ── OUTER WRAPPER ── */
.raa-timeline-outer {
  position: relative;
}
 
/* ── SPINE ── */
.raa-timeline-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border);
  z-index: 0;
}
 
.raa-timeline-spine-progress {
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.45s ease;
}
 
/* ── ITEM ── */
.raa-timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 48px);
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
 
.raa-timeline-item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 48px);
}
 
.raa-timeline-item:last-child {
  margin-bottom: 0;
}
 
/* ── MARKER ── */
.raa-timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--base);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--contrast-3);
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}

.raa-timeline-item:last-child .raa-timeline-marker{
  bottom: 0;
  top: unset;
}

.raa-timeline-item:last-child .raa-timeline-marker.active {
    border-style: dashed;
}
 
.raa-timeline-marker.active {
  border-color: var(--accent);
  background: var(--accent-background);
  color: var(--accent);
  position: absolute;
}
 
/* ── CONTENT CARD ── */
.raa-timeline-content {
  background: var(--base);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  max-width: 420px;
  width: 100%;
  transition: border-color 0.35s ease;
}
 
.raa-timeline-marker.active + .raa-timeline-content,
.raa-timeline-item--right .raa-timeline-marker.active + .raa-timeline-content {
  border-color: #f0d0e4;
}
 
.raa-timeline-content h3 {
  margin-bottom: 8px;
}
 
.raa-timeline-content p {
  color: var(--contrast-2);
}
 
/* ── FUTURE ITEM ── */
.raa-timeline-item--future .raa-timeline-content {
  border-style: dashed;
  background: var(--base-2);
}
 
.raa-timeline-item--future .raa-timeline-marker {
  border-style: dashed;
}
 
/* ── MOBILE ── */
@media (max-width: 768px) {
  .raa-timeline-spine {
    left: 30px;
  }
 
  .raa-timeline-item,
  .raa-timeline-item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 76px;
  }
 
  .raa-timeline-marker {
    left: 30px;
    width: 52px;
    height: 52px;
    font-size: 10px;
  }
 
  .raa-timeline-content {
    max-width: 100%;
  }

}