/* =========================================
   CAREER PORTAL STYLING
   ========================================= */

/* Hero Section Karir */
.career-hero {
    background: linear-gradient(rgba(5, 60, 95, 0.9), rgba(5, 60, 95, 0.8)), url('../img/hero-bg.jpg'); /* Pastikan ada gambar bg */
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    color: white;
}

/* Kotak Pencarian */
.search-box {
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-input {
    border: none;
    box-shadow: none !important;
    font-size: 1.1rem;
}

/* Kartu Lowongan (Job Card) */
.job-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(5, 60, 95, 0.08);
    border-color: #ef8418; /* Aksen Orange saat hover */
}

/* Garis aksen di kiri kartu */
.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #eef2f6;
    transition: 0.3s;
}

.job-card:hover::before {
    background: #ef8418;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: rgba(5, 60, 95, 0.05);
    color: #053c5f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Sidebar Detail Job */
.job-sidebar {
    position: sticky;
    top: 100px; /* Agar melayang saat discroll */
}

.job-summary-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* Typography Content */
.job-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.job-description li {
    margin-bottom: 10px;
    color: #555;
}