/* ===== WORK WITH US HEADER OVERRIDE ===== */
.workwithus-page {
  --header-bg-rgb: 61, 79, 95;
}

/* ===== HERO ===== */
.wwu-hero {
  position: relative;
  width: 100%;
  height: 770px;
  overflow: hidden;
}

.wwu-hero-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 544px;
  background: #3d4f5f;
  z-index: 1;
}

.wwu-hero-image {
  position: absolute;
  top: 120px;
  left: 26.8%;
  width: 73.2%;
  height: 650px;
  z-index: 2;
  overflow: hidden;
}

.wwu-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwu-hero-title {
  position: absolute;
  top: 200px;
  left: 21.5%;
  z-index: 10;
}

.wwu-hero-title h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

/* ===== JOBS SECTION ===== */
.jobs-section {
  padding: 72px 0 80px;
  background: #fff;
}

.jobs-count {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a1a1a;
  display: inline-block;
  width: 100%;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ===== JOB LIST ===== */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-card {
  display: block;
  width: 100%;
  background: #fff;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-left: 3px solid transparent;
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: inherit;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.job-card.active,
.job-card:hover {
  border-left-color: #1a2332;
  background: #fafafa;
}

.job-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.job-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ===== JOB DETAIL ===== */
.job-detail {
  background: #f7f7f7;
  padding: 32px;
}

.job-detail-header {
  background: #e8e8e8;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.job-detail-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #1a2332;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.btn-apply:hover {
  background: #111827;
}

.job-detail h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.job-description-area {
  background: #f0f0f0;
  min-height: 400px;
  padding: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .wwu-hero {
    height: auto;
  }

  .wwu-hero-blue {
    height: 300px;
  }

  .wwu-hero-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
  }

  .wwu-hero-title {
    top: 120px;
    left: 24px;
  }

  .wwu-hero-title h1 {
    font-size: 36px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}
