.career-item {
    display: flex;
    border: 1px solid #ddd;
    padding: 81px 0;
    align-items: center;
}
.careers-list .career-item{
    border-width: 1px 0;
    border-color: #E5E5E5;
    border-style: solid;
}
.careers-list .career-item:nth-child(2n){
    border-width: 0;
}
.career-left, .career-right {
    padding: 0 15px;
}
.career-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.career-right {
    width: 60%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: sticky;
    flex-direction: column;
    top: 120px;
}
.apply-now-btn {
    padding: 19px 36px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-transform: capitalize;
    color: #393939;
    border: 1px solid #CDCDCD;
    transition: .3s all ease-in-out;
}
.apply-now-btn:hover{
    background-color: #08905C;
    border: 1px solid #08905C;
    color: #FFFFFF;
}
.career-item .meta{
    display: flex;
    align-items: center;
    gap: 24px;
}
.career-item .meta .time{
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 12px;
    background-color: #204185;
}
.career-item .meta .place{
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 5%;
}
.career-item h4{
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: #2C2C2C;
}
/* Popup styles */
#apply-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
#apply-modal h2{
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
    color: #204185;
}
#apply-modal-content {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 8px;
    max-width: 90vw;
    width: 800px;
    position: relative;
    max-height: 85vh;
    overflow: scroll;
}
#apply-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
}
label {
    display: block;
    margin-top: 10px;
}
input, textarea {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
    box-sizing: border-box;
}
.career-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.career-description.expanded {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
}
.read-more-btn {
  margin-top: 12px;
  cursor: pointer;
  color: #0073aa;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
}
.job_img img{
    width: 100%;
    margin-bottom: 20px;
}

@media screen and ( max-width: 1200px ) {
    .career-item{
        flex-wrap: wrap;
    }
    .career-left{
        width: 100%;
        margin-bottom: 30px;
    }
    .career-item .meta .time,
    .career-item .meta .place{
        font-size: 16px;
        line-height: 24px;
    }
    .career-item h4{
        font-size: 24px;
        line-height: 30px;
    }
    .career-item p{
        font-size: 14px;
        line-height: 22px;
    }
    .apply-now-btn{
        font-size: 18px;
        line-height: 26px;
    }
}
@media screen and ( max-width: 767px ){
    .career-item{
        padding: 40px 0;
    }
    .career-right {
        width: 100%;
    }
    .career-right {
        margin-top: 30px;
        justify-content: flex-start;
    }
    .career-right,
    .career-left{
        padding: 0;
    }
    .career-item .meta .time,
    .career-item .meta .place{
        font-size: 14px;
        line-height: 22px;
    }
    .career-item h4{
        font-size: 20px;
        line-height: 26px;
    }
    .apply-now-btn{
        font-size: 16px;
        line-height: 24px;
    }
}