/* ===== Career Development Section ===== */
.career-section {
  padding: 5rem 1rem;
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.career-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Cards Grid */
.career-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.career-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
}

.career-card img {
  height: 2rem;
  margin-bottom: 0.75rem;
}

.career-card h3 {
  margin-bottom: 0.5rem;
}

.career-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-link {
  font-weight: 600;
  color: #25A3A6;
  font-size: 0.9rem;
}

.card-link:hover {
  color: #08334C;
}

/* Illustration + text */
.career-illustration {
  text-align: center;
}

.career-illustration img {
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .career-content {
    grid-template-columns: 1fr;
  }

  .career-illustration {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .career-cards {
    grid-template-columns: 1fr;
  }

  .career-card {
    text-align: center;
  }
}
