/** join-us page **/

.join-intro-section{
  position: relative;
}

.join-intro-section .content-box .sec-title{
  margin-bottom: 25px;
}

.join-intro-section .content-box .text-box p{
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 18px;
}

.join-intro-section .content-box .text-box p:last-child{
  margin-bottom: 0;
}

/* Image placeholder */
.img-placeholder{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 360px;
  background: linear-gradient(145deg, #e8f1ff 0%, #f5f8fc 55%, #dde9f8 100%);
  border: 2px dashed #a8c4e8;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
}

.img-placeholder::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26, 107, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(13, 61, 140, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.img-placeholder .ph-icon{
  position: relative;
  font-size: 42px;
  color: #7aa3d9;
  margin-bottom: 14px;
  line-height: 1;
}

.img-placeholder .ph-label{
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #4a6fa0;
  margin-bottom: 6px;
}

.img-placeholder .ph-hint{
  position: relative;
  font-size: 13px;
  color: #7a93b0;
  max-width: 260px;
  line-height: 20px;
  margin: 0;
}

.img-placeholder img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.img-placeholder.has-image{
  border-style: solid;
  border-color: transparent;
  padding: 0;
}

.img-placeholder.has-image .ph-icon,
.img-placeholder.has-image .ph-label,
.img-placeholder.has-image .ph-hint,
.img-placeholder.has-image::before{
  display: none;
}

.img-placeholder.ratio-tall{
  min-height: 420px;
}

.img-placeholder.ratio-wide{
  min-height: 280px;
}

.img-placeholder.ratio-square{
  min-height: 240px;
}

/* Job detail cards */
.jobs-section{
  position: relative;
  background: #FAF6F2;
}

.job-card{
  position: relative;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 28px rgba(13, 61, 140, 0.05);
}

.job-card .job-media{
  padding: 20px;
}

.job-card .job-body{
  padding: 36px 40px 40px;
}

.job-card .job-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.job-card .job-level{
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #1a6bff 0%, #0d3d8c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
}

.job-card h3{
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 18px;
}

.job-card .job-positioning{
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef2f7;
}

.job-card .job-block{
  margin-bottom: 26px;
}

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

.job-card .job-block h4{
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 14px;
  color: var(--title-color);
}

.job-card .job-block h4 i{
  color: var(--theme-color);
  margin-right: 8px;
  font-size: 16px;
}

.job-card .job-block p{
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 0;
}

.job-card .job-block ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-card .job-block ul li{
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 12px;
}

.job-card .job-block ul li:last-child{
  margin-bottom: 0;
}

.job-card .job-block ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color);
}

.job-card .job-block ul li strong{
  color: var(--title-color);
  font-weight: 600;
}

.job-card.reverse .row{
  flex-direction: row-reverse;
}

/* CTA */
.join-cta-section{
  position: relative;
  margin-bottom: 50px;
}

.join-cta-section .inner-container{
  position: relative;
  display: block;
  background: linear-gradient(135deg, #0d3d8c 0%, #1a6bff 100%);
  border-radius: 10px;
  overflow: hidden;
}

.join-cta-section .content-box{
  position: relative;
  text-align: center;
  padding: 36px 60px;
  max-width: 720px;
  margin: 0 auto;
}

.join-cta-section .content-box h2{
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 12px;
}

.join-cta-section .content-box p{
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 22px;
}

.join-cta-section .content-box .theme-btn{
  background: #fff;
  color: #0d3d8c;
}

.join-cta-section .content-box .theme-btn:hover{
  background: #f0f6ff;
  color: #0d3d8c;
}

@media only screen and (max-width: 991px){
  .job-card .job-body{
    padding: 28px 24px 32px;
  }

  .job-card.reverse .row{
    flex-direction: column;
  }

  .img-placeholder{
    min-height: 280px;
  }

  .img-placeholder.ratio-tall{
    min-height: 300px;
  }

  .join-cta-section .content-box h2{
    font-size: 28px;
    line-height: 36px;
  }

  .join-cta-section .content-box{
    padding: 30px 40px;
  }
}

@media only screen and (max-width: 767px){
  .job-card h3{
    font-size: 22px;
    line-height: 28px;
  }

  .join-cta-section{
    margin-bottom: 40px;
  }

  .join-cta-section .content-box{
    padding: 28px 30px;
  }
}
