.job-container {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 0;
    background-color: white;
}

.job-content {
    padding: 0 2rem;
    padding-bottom: 2rem;
}

/* .job-section {
    margin-bottom: 3rem;
} */

.job-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    /* text-decoration: underline; */
}

.job-description {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.job-requirements {
    /* margin-left: 2rem; */
    margin-bottom: 1.5rem;
}

.job-requirements .job-bullet {
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.job-requirements li {
    margin-bottom: 0.5rem;
    color: #333;
}

.job-application-link {
    color: #1e3a5f;
    text-decoration: underline;
    font-weight: bold;
}

.job-application-link:hover {
    color: #2c87ff;
}

.attention {
    text-decoration: none;
    color: #2c87ff;
}

.attention:hover {
    text-decoration: underline;
}


.job-deadline-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.ongoing {
    background-color: rgba(212, 237, 218, 0.5);
    border-left: 4px solid #28a745;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #155724;
}

.planned {
    background-color: rgba(204, 229, 255, 0.5);
    border-left: 4px solid #004085;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #004085;
}

.job-footer-banner {
    background-color: #1e3a5f;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.job-footer-banner h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.job-contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.job-contact-info h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.job-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.job-contact-item {
    color: #333;
}

.job-contact-item strong {
    color: #1e3a5f;
}

.job-divider {
    border-top: 2px solid #1e3a5f;
    margin: 2rem 0;
}
.job-divider-tail {
    border-top: 2px solid #1e3a5f;
    margin: 2rem auto;
    width: 50%;
}

@media (max-width: 768px) {
    .job-header-banner h1 {
        font-size: 2rem;
    }

    .job-footer-banner h2 {
        font-size: 1.5rem;
    }

    .job-content {
        padding: 1rem;
    }

    .job-contact-details {
        grid-template-columns: 1fr;
    }
}