/* ===== EXPERIENCE ===== */
#experience {
  background: var(--bg);
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.exp-col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.exp-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.timeline-item:hover {
  background: var(--surface-hover);
  border-color: rgba(77, 255, 164, 0.2);
  transform: translateX(4px);
}

.timeline-date {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-company {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-role {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.timeline-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .exp-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
