.job-detail-section { 
    background-color: var(--theme-blue) !important; 
    padding: 80px 0; 
    width: 100%; 
}

.hero-flex { 
    display: flex; 
    justify-content: space-between; 
    gap: 60px; 
    margin-bottom: 60px; 
    align-items: stretch; 
}


.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start; 
}

.company-name { 
    font-weight: 600; 
    font-size: 16px;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    margin-bottom: 0; 
    display: block;
    color: #fff;
    font-family: var(--font-ppmori);
}

/*.job-detail-section .job-title { 
    font-size: 3rem; 
    line-height: 1.05; 
    font-weight: 700; 
    margin: 15px 0 10px; 
    color: #000;
    font-family: var(--font-obviously);
    text-transform: uppercase;
}*/


.job-detail-section .job-title { 
    background: #FFF623;
    color: #000;
    font-weight: 700;
    font-size: 35px;
    padding: 25px 15px;
    border-radius: 20px;
    max-width: 70%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    font-family: var(--font-obviously);
    text-transform: uppercase;
    margin: 15px 0 10px; 
    line-height: 1.05; 
}


.location-code { 
    font-weight: 700; 
    color: #000;
    font-size: 1rem;
    font-family: var(--font-ppmori);
    margin-bottom: 0px;
}

.info-block {
    margin-top: 20px; 
}

.job-detail-section .hero-image .wjportal-elegant-addon-company-detail-logo{
    width: 80%;
    margin: 0px auto;
}

.job-detail-section .hero-image .wjportal-elegant-addon-company-detail-logo img{
    transform: rotate(3deg);
  border: 10px solid #F7F7F3 !important;
  box-shadow: 0 4px 4px 0 rgba(18, 15, 30, 0.5) !important;
  margin-top: 25px;
}

.job-detail-section .info-block h3 { 
    font-size: 1.25rem; 
    margin-bottom: 15px; 
    font-weight: 800; 
    font-family: var(--font-obviously);
}

.job-detail-section .info-block p { 
    font-size: 1.05rem; 
    line-height: 1.6; 
    color: #000;
    font-weight: 500;
    margin-bottom: 0; 
    font-family: var(--font-ppmori);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    display: block;
}


.expectations-wrapper { 
    margin-top: 20px; 
}

.job-detail-section .section-heading { 
    font-size: 1.4rem; 
    font-weight: 900; 
    margin-bottom: 50px; 
    font-family: var(--font-obviously);
}

.job-detail-section .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.info-item { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.icon-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.job-detail-section .card-icon { 
    width: 25px; 
    height: 25px; 
    object-fit: contain; 
    flex-shrink: 0; 
}

.job-detail-section .icon-header h4 { 
    font-size: 15px; 
    font-weight: 800; 
    color: #000; 
    margin: 0px;
    font-family: var(--font-ppmori);
}

.job-detail-section  .card-body {
    padding: 0px;
  border-radius: 20px;
  background: #fff;
}

.job-detail-section  .card-body p { 
    font-size: 15px; 
    color: var(--text-muted); 
    line-height: 1.5; 
    font-weight: 500; 
    padding: 10px;
    font-family: var(--font-ppmori);
}


.footer-note { 
    margin-top: 60px; 
    max-width: 650px; 
}

.footer-note h3 { 
    margin-bottom: 12px; 
    font-weight: 800; 
    font-family: var(--font-obviously);
}

.footer-note p{
    font-family: var(--font-ppmori);
    color: #000;
    font-size: 16px;
}

.button-row { 
    display: flex; 
    gap: 15px; 
    margin-top: 25px; 
}

.btn { 
    padding: 16px 40px; 
    border: none; 
    border-radius: 8px; 
    font-weight: 800; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: transform 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-outline { 
    background-color: var(--white); 
    color: var(--theme-black); 
}

.btn-filled { 
    background-color: var(--theme-yellow); 
    color: var(--theme-black); 
}

.job-detail-section .wjportal-main-up-wrapper p{
    background: transparent;
}

.btn.btn-outline.nointrest {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  font-family: var(--font-ppmori);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border: none;
  margin: 5px;
}

.btn.btn-filled.applyjob {
  background: var(--theme-yellow);
  border-radius: 20px;
  padding: 20px;
  font-family: var(--font-ppmori);
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin: 5px;
  text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-flex { 
        flex-direction: column-reverse; 
        align-items: center; 
        gap: 40px;
    }

    .hero-text, .hero-image { 
        width: 100%; 
        max-width: 100%;
    }

    .polaroid-img { 
        height: auto; 
        max-width: 500px;
    }

    .info-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .job-title { 
        font-size: 3rem; 
    }
}

@media (max-width: 650px) {
    .info-grid { 
        grid-template-columns: 1fr; 
    }

    .button-row { 
        flex-direction: column; 
    }

    .btn { 
        width: 100%; 
    }
}