/* =====================
   Experience Section Styles
   ===================== */

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  transition: all 0.25s ease;
}

.experience-card:hover {
  border-color: var(--border-active);
}

.exp-meta {
  border-right: 1px solid var(--border-subtle);
  padding-right: 32px;
}

.exp-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.exp-company {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.exp-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.exp-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.exp-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.exp-bullets {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.exp-bullets li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.exp-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(91, 140, 212, 0.1);
  border: 1px solid rgba(91, 140, 212, 0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--accent-blue);
}

.exp-highlight svg {
  width: 14px;
  height: 14px;
}
