/* Recruitment page styling */
.recruitment-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 0;
}
.recruitment-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 25, 75, 0.7) 0%, rgba(0, 25, 75, 0.2) 100%);
  z-index: 1;
}
.recruitment-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.hero-subtitle,
.recruitment-banner .banner-eyebrow {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title,
.recruitment-banner .banner-title {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.recruitment-banner .banner-text {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}
.recruitment-section {
  padding: 80px 0 120px;
  background: #ffffff;
}
.recruitment-section .section-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.recruitment-section .section-label {
  display: inline-block;
  color: #DF1F28;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 0.85rem;
}
.recruitment-section .section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1f2431;
}
.recruitment-section .section-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4a4a;
}
.recruitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
.job-card {
  width: 351px;
  background: #ffffff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
}
.job-img-box {
  position: relative;
  height: 190px;
  background-color: #fcf4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.job-img-placeholder {
  color: #333333;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.job-content {
  padding: 24px;
  flex: 1;
}
.job-date {
  display: block;
  color: #b3b3b3;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.job-title {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.job-details {
  margin-bottom: 20px;
}
.job-details li {
  display: flex;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444444;
}
.job-details .label {
  color: #666666;
  width: 95px;
  flex-shrink: 0;
  font-weight: 600;
}
.job-details .value {
  color: #444444;
  font-weight: 600;
}
.apply-btn {
  width: 100%;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 0.96rem;
  font-weight: 700;
}
.application-panel {
  margin-top: 60px;
}
.application-box {
  padding: 40px 36px;
  border-radius: 24px;
  background: #f8f7ff;
  border: 1px solid rgba(35, 46, 75, 0.08);
  text-align: center;
}
.application-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1f2431;
}
.application-text {
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 24px;
}
.application-contact p {
  margin-bottom: 12px;
  color: #333333;
  font-size: 0.98rem;
}
.application-contact a {
  color: #DF1F28;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .job-card {
    width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .recruitment-banner {
    min-height: 420px;
  }
  .application-box {
    padding: 32px 28px;
  }
}
@media (max-width: 767px) {
  .recruitment-section {
    padding: 60px 0 80px;
  }
  .recruitment-grid {
    gap: 20px;
  }
  .job-card {
    width: 100%;
  }
  .job-img-box {
    height: 170px;
  }
  .job-title {
    font-size: 1.25rem;
  }
  .application-box {
    padding: 28px 20px;
  }
}
