/* ===== OUR STORY / TIMELINE ===== */

.story {
  background-color: var(--color-blush);
}

.timeline {
  position: relative;
  padding-left: 50px;
  max-width: 800px;
  margin: 0 auto;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-rose-gold-light), var(--color-pink), var(--color-rose-gold-light));
}

/* Timeline item */
.timeline__item {
  position: relative;
  margin-bottom: var(--space-3xl);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Marker (dot on the line) */
.timeline__marker {
  position: absolute;
  left: -50px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline__marker svg {
  width: 18px;
  height: 18px;
}

/* Content card */
.timeline__content {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.08);
}

.timeline__image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-rose-gold-light));
}

.timeline__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: var(--font-script);
  font-size: var(--text-2xl);
  color: var(--color-rose-gold);
}

.timeline__text {
  padding: var(--space-xl);
}

.timeline__date {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-rose-gold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.timeline__title {
  font-family: var(--font-script);
  font-size: var(--text-2xl);
  color: var(--color-rose-gold);
  margin-bottom: var(--space-sm);
}

.timeline__description {
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  line-height: var(--line-height-loose);
}
