/* Career Section Styles */

#career {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem 6rem 4rem;
}


.career-summary {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.career-summary strong {
  font-weight: 600;
}

#career {
  position: relative;
  background: var(--primary-bg);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
  opacity: 0.7;
}

.job {
  position: relative;
  margin-bottom: 40px;
  min-width: 320px;
  max-width: 1100px;
  padding-left: 48px;
}

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

.job::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 32px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 4px solid var(--accent-secondary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(200, 35, 51, 0.1);
}

.job-content {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.job-content:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.job h4 {
  color: var(--accent-secondary);
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 0.5rem;
}

.job .job-header {
  color: var(--text-secondary);
  font-size: 1.2em;
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 500;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job .job-position {
  flex: 1;
}

.job .job-duration {
  color: var(--accent-primary);
  font-size: 1.1em;
  font-weight: 600;
  margin-left: 16px;
}

.job .job-intro {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 0;
  font-style: normal;
  font-size: 1.15em;
  text-align: justify;
}

.job .job-intro strong {
  font-weight: 600;
}

.job .job-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job .job-highlights li {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  font-size: 1.1em;
}

.job .job-highlights li::before {
  content: '•';
  color: var(--accent-red);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.job p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .timeline {
    padding-left: 0 !important;
    max-width: 100vw;
  }
  .timeline::before {
    display: none !important;
  }
  .job {
    padding-left: 0 !important;
    margin-left: 0 !important;
    min-width: 0;
    max-width: 100vw;
  }
  .job::before {
    display: none !important;
  }
  .job-content {
    padding: 16px 0 !important;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
  }
} 