.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #2f9683, #e3f5ef);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 1.9rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #dd9c3f;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #2f9683;
}

.timeline-card {
  background: white;
  border: 1px solid #e3f5ef;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 12px 28px -16px rgba(10, 46, 44, 0.2);
}

.timeline-year {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #c17f2a;
  background: #fbedd6;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.timeline-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #0a2e2c;
  margin-bottom: 0.6rem;
}

.timeline-card p {
  color: #1c665a;
  line-height: 1.6;
}

.timeline-photos {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.timeline-photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  background: #f2faf7;
  border: 1px dashed #93d3c4;
  color: #5cb5a3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 3.5rem;
  }
  .timeline-dot {
    left: -3.5rem;
  }
}
