@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
    font-family: 'Open Sans', sans-serif !important;
}

.karir-header-section {
    background-color: #f8f9fa;
    padding: 80px 0 20px;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #1a3673;
    margin: 15px auto;
    border-radius: 2px;
}

.karir-page-title {
    font-weight: 900;
    color: #1a3673;
    letter-spacing: 1px;
}

.sidebar-filter {
    position: sticky;
    top: 100px;
}

.filter-title {
    font-weight: 800;
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.filter-group {
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
}

.filter-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #888;
}

.btn-cari-karir {
    width: 100%;
    background-color: #1a3673;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cari-karir:hover {
    background-color: #0d204a;
}

.job-item-card {
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background: #fff;
}

.job-item-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.job-thumb {
    padding: 15px;
}

.job-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.job-body {
    padding: 20px 25px;
}

.job-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}


.job-badge {
    background-color: #fcb72e;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 15px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
    display: inline-block;
}

.job-date {
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.job-title-text {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.btn-detail-job {
    background-color: #1a3673;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 25px;
    display: inline-block;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.btn-detail-job:hover {
    background-color: #0d204a;
}

.job-detail-content {
    padding: 0 25px 30px 25px;
    border-top: 1px solid #f8f9fa;
}

.detail-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.detail-info-list p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-info-list a {
    color: #1a3673;
    text-decoration: none;
    font-weight: 600;
}

.requirement-list {
    padding-left: 20px;
    list-style-type: disc;
}

.requirement-list li {
    margin-bottom: 5px;
    color: #444;
}

@media (max-width: 991px) {
    .sidebar-filter {
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .job-top-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .job-date {
        align-self: flex-end;
    }
    .job-title-text {
        font-size: 16px;
    }
}