/* Experience Section - Timeline */
.experience {
  min-height: 100vh;
  padding: var(--space-xl) var(--space-md);
  background: var(--soil);
}
.experience__content {
  max-width: 1000px;
  margin: 0 auto;
}
.experience__intro {
  color: var(--text-mid);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}
/* Timeline */
.timeline {
  position: relative;
}
.timeline__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border2);
}
.timeline__item {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__dot {
  position: absolute;
  left: -6px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--soil);
}
.timeline__dot--current {
  background: var(--dawn);
}
.timeline__dot--coffee {
  background: var(--coffee);
}
.timeline__dot--avocado {
  background: var(--avocado);
}
.timeline__dot--citrus {
  background: var(--citrus);
}
.timeline__dot--platano {
  background: var(--platano);
}
.timeline__card {
  background: var(--bark2);
  padding: var(--space-md);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline__card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.timeline__card--current {
  border-left: 3px solid var(--dawn);
}
.timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.timeline__company {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.25rem;
}
.timeline__role {
  font-family: var(--mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--leaf);
}
.timeline__period {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.timeline__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--moss);
  color: var(--leaf2);
  font-family: var(--mono);
  font-size: 0.75rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}
.timeline__list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}
.timeline__list-item {
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.timeline__list-item::before {
  content: '▸';
  position: absolute;
  left: 0;
}
.timeline__card--current .timeline__list-item::before {
  color: var(--dawn);
}
.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}
/* Responsive */
@media (max-width: 900px) {
  .timeline__header {
    flex-direction: column;
  }
  .timeline__company {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .timeline__item {
    padding-left: var(--space-md);
  }
  .timeline__card {
    padding: var(--space-sm);
  }
  .timeline__company {
    font-size: 1.125rem;
  }
}
