/* Join Us Detail Page Styles */
.join-us-detail-page {
    width: 100%;
    background-color: var(--bg-color);
}

.join-us-detail-page p {
    font-family: var(--font-primary);
}

/* Job Header Section */
.job-header-section {
    padding: 60px 20px;
    background:
        linear-gradient(135deg,
            rgba(15, 36, 83, 0.15) 0%,
            rgba(15, 36, 83, 0.05) 100%),
        #000000;
}

.job-header-content {
    margin: 0 80px;
}

.job-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.job-subtitle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 800px;
    text-align: center;
}

/* Job Info Bar */
.job-info-bar {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    border-top: 1px solid #235292;
    border-bottom: 1px solid #235292;
}

.job-info-item {
    display: flex;
    align-items: center;
}

.job-info-item .label {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.job-info-item:nth-child(2) .label,
.job-info-item:nth-child(3) .label {
    color: var(--text-white);
    font-size: 1rem;
}

.job-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-share .label {
    color: var(--text-white);
}

.share-icon {
    color: #9cc775;
    font-size: 24px;
    text-decoration: none;
}

.share-icon:hover {
    color: #a3ee5c;
}

/* Job Detail Section */
.content-block ul li {
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--font-primary);
    margin: 0;
}

.job-detail-section {
    padding: 20px 20px;
}


.section-heading {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsibilities & Qualifications Lists */
.responsibilities-list,
.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsibilities-list li,
.qualifications-list li {
    color: #b0b0b0;
    font-size: 1.05rem;
    padding-left: 0;
    height: 35px;
}

.responsibilities-list li strong,
.qualifications-list li strong {
    color: var(--text-white);
}

.dashed {
    color: var(--text-white);
    font-size: 40px;
    font-weight: bold;
}

/* Other Openings Section */
.other-openings-section {
    padding: 40px 20px;
}

.openings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.view-all {
    color: #9cc775;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: #a3ee5c;
    transform: translateX(5px);
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.opening-card {
    background: linear-gradient(135deg,
            rgba(26, 58, 82, 0.3) 0%,
            rgba(42, 90, 122, 0.2) 100%);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opening-card:hover {
    transform: translateY(-5px);
}

.opening-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 15px 0;
    text-transform: capitalize;
}

.opening-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.opening-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(156, 199, 117, 0.2);
}

.opening-footer .deadline {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.opening-footer .view-details {
    color: #9cc775;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.opening-footer .view-details:hover {
    color: #a3ee5c;
}

button {
    font-family: var(--font-secondary);
}

.sticky-apply-button {
    position: sticky;
    bottom: 0;
    background-color: transparent;

    padding: 20px;

    z-index: 100;
}

.sticky-apply-button .container {
    display: flex;
    justify-content: flex-start;
}

.button {
    background-color: #9cc775;
    color: var(--text-white);
    padding: 14px 40px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.button:hover {
    background-color: #a3ee5c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .job-title {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .job-info-bar {
        gap: 30px;
    }

    .job-share {
        width: 100%;
        margin-left: 0;
    }

    .openings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .view-all {
        width: 100%;
    }

    .job-detail-section {
        padding: 40px 20px;
    }

    .responsibilities-list li,
    .qualifications-list li {

        height: auto;
    }
}

@media (max-width: 480px) {
    .job-header-section {
        padding: 40px 15px;
    }

    .job-title {
        font-size: 1.8rem;
    }

    .sticky-apply-button {
        padding: 15px 10px;
    }

    .sticky-apply-button .button {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .job-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .job-detail-section {
        padding: 30px 15px;
    }

    .job-info-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .job-info-item {
        width: 100%;
    }

    .openings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}