/* ==========================================
   Job Detail Page - Google Cloud Style
   ========================================== */

.job-detail-hero {
  background: #fff;
  border-bottom: 1px solid #dadce0;
  padding: 32px 0 28px;
}

.jd-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.jd-back {
  border-radius: 4px !important;
  text-transform: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1px !important;
}

.jd-back:hover {
  background: #e8f0fe !important;
}

.jd-hero-head {
  max-width: 980px;
}

.jd-title {
  font-size: 32px;
  font-weight: 500;
  color: #202124;
  letter-spacing: -0.25px;
}

.jd-subtitle {
  font-size: 14px;
  color: #80868b;
  margin-top: 4px;
}

.jd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  color: #5f6368;
  font-size: 13px;
}

.jd-meta-item {
  display: inline-flex;
  align-items: center;
}

/* Salary Card */
.jd-salary-wrap {
  margin-top: 20px;
}

.jd-salary-card {
  width: 100%;
  max-width: 800px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #f6fef8;
  border: 1px solid #ceead6;
}

.jd-salary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jd-salary-left {
  min-width: 0;
}

.jd-salary-label {
  font-size: 11px;
  color: #80868b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.jd-salary-value {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #137333;
  line-height: 1.35;
  word-break: break-word;
}

.jd-salary-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

/* Tags */
.jd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.jd-tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #1a73e8;
  background: #e8f0fe;
}

/* Body */
.jd-body {
  padding-top: 32px;
  padding-bottom: 56px;
}

/* Section Cards */
.jd-section {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.jd-section-title {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f3f4;
}

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

.jd-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #3c4043;
}

.jd-list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a73e8;
}

/* Bottom CTA */
.jd-bottom-cta {
  margin-top: 24px;
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid #dadce0;
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.jd-bottom-title {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
}

.jd-bottom-desc {
  font-size: 14px;
  color: #5f6368;
  margin: 10px auto 20px;
  max-width: 600px;
  line-height: 1.75;
}

/* Not Found */
.jd-not-found {
  text-align: center;
  padding: 48px 0 40px;
}

.jd-not-found-title {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  margin-top: 14px;
}

.jd-not-found-desc {
  font-size: 13px;
  color: #5f6368;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .jd-title { font-size: 24px; }
  .jd-hero-head { max-width: 100%; }

  .jd-salary-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .jd-salary-right {
    width: 100%;
    align-items: flex-start;
  }

  .jd-salary-right .apply-btn {
    width: 100% !important;
  }

  .jd-bottom-cta { padding: 24px 20px; }
}
