/* HOME PAGE: LIST OF JOB POSTINGS */
.job-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 2rem;
}

.job-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-left: 0.5rem;
}

.job-title {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: #1a365d;
    font-weight: 600;
    line-height: 1.3;
}

.job-title a {
    color: inherit;
    text-decoration: none;
}

.job-date {
    color: #6c757d;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.job-date i {
    margin-right: 0.3rem;
}

.job-excerpt {
    color: #4a5568;
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-more {
    display: inline-block;
    background: #1a365d;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
}

.btn-more:hover {
    background: #142a44;
}

.pagination {
    margin: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 0.3rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #eee;
    border-radius: 3px;
    text-decoration: none;
    color: #4a5568;
}

.pagination .page-numbers.current {
    background: #1a365d;
    color: white;
    border-color: #1a365d;
}

.pagination .page-numbers:hover:not(.current) {
    background: #f1f1f1;
}

.no-jobs {
    text-align: center;
    color: #333; /* ✅ DIBENARI: kontras 13.5:1 */
    padding: 3rem 0;
    font-size: 1.1rem;
}