
    .karir-page {
        font-family: 'Inter', sans-serif;
        background-color: #f8fafc; 
        min-height: 100vh;
        padding-bottom: 50px;
    }

    .karir-hero {
        background-color: #eef5ff; 
        padding: 80px 20px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }

    .karir-hero h1 {
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .karir-hero p {
        font-size: 16px;
        color: #475569;
        margin-bottom: 40px;
    }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    .search-container input {
        width: 100%;
        padding: 16px 20px 16px 50px;
        border-radius: 30px;
        border: 1px solid #cbd5e1;
        font-size: 16px;
        outline: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
    }

    .search-container input:focus {
        border-color: #3b82f6;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

    .search-container svg {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        width: 20px;
        height: 20px;
    }

    .karir-main {
        max-width: 1280px;
        margin: -30px auto 0; 
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 250px 1fr 1fr;
        gap: 30px;
        align-items: start;
    }

    /* 1. Sidebar Filters */
    .karir-sidebar {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px;
    }

    .karir-sidebar h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1e293b;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 10px;
    }

    .filter-group {
        margin-bottom: 25px;
    }

    .filter-group h4 {
        font-size: 12px;
        font-weight: 700;
        color: #64748b;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-label {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
        color: #475569;
        cursor: pointer;
    }

    .filter-label input {
        margin-right: 10px;
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    /* 2. Job List Column */
    .karir-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .job-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-left: 5px solid #0f766e; 
        border-radius: 8px;
        padding: 20px;
        cursor: pointer;
        position: relative;
        transition: all 0.2s;
    }

    .job-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .job-card.active {
        border-left-color: #3b82f6; 
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .job-type-badge {
        font-size: 12px;
        font-weight: 600;
        color: #0f766e;
        margin-bottom: 8px;
        display: inline-block;
    }
    
    .job-card.active .job-type-badge {
        color: #3b82f6;
    }

    .job-title {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .job-desc-short {
        font-size: 13px;
        color: #475569;
        line-height: 1.5;
    }

    .job-card.active .job-desc-short {
        background-color: #dbeafe;
        color: #1e3a8a;
        padding: 5px;
        display: inline;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

    .bookmark-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #0f172a;
        width: 24px;
        height: 24px;
    }

    /* 3. Job Detail Column */
    .karir-detail-wrapper {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        position: sticky;
        top: 20px; 
    }

    .detail-content {
        display: none; 
    }

    .detail-content.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .detail-header {
        padding: 25px;
        border-bottom: 1px solid #e2e8f0;
        position: relative;
    }

    .detail-title {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
        padding-right: 30px;
    }

    .detail-meta {
        font-size: 12px;
        color: #64748b;
        margin-bottom: 20px;
    }

    .detail-poster {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        display: block;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .btn-apply {
        display: block;
        width: 100%;
        background-color: #0f766e;
        color: #fff;
        text-align: center;
        padding: 12px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .btn-apply:hover {
        background-color: #0d9488;
        color: #fff;
    }

    .detail-body {
        padding: 25px;
    }

    .detail-body h4 {
        font-size: 16px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .detail-body p, .detail-body ul {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Responsiveness */
    @media (max-width: 1024px) {
        .karir-main {
            grid-template-columns: 250px 1fr;
        }
        .karir-detail-wrapper {
            display: none; 
        }
    }
    
    @media (max-width: 768px) {
        .karir-main {
            grid-template-columns: 1fr;
        }
        .karir-sidebar {
            display: none; 
        }
    }