/* Jobs Page Styles */
.job-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    background: #fff;
    transition: all 0.2s ease;
}
.job-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.job-card-content {
    width: 100%;
}
.job-type-badge {
    background: #fd7b21;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.job-featured-badge {
    background: #17405f;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
}
.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 12px 0 8px;
}
.job-title a {
    color: #0f172a;
    text-decoration: none;
}
.job-title a:hover {
    color: #fd7b21;
}
.job-company {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
}
.job-company i {
    color: #fd7b21;
}
.job-location {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}
.job-description {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.job-meta-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.job-meta-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
}
.job-meta-info i {
    color: #fd7b21;
}
.job-salary {
    color: #fd7b21 !important;
    font-weight: 600;
}
.job-actions {
    display: flex;
    gap: 10px;
}
.job-details-btn {
    background: #17405f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.job-details-btn:hover {
    background: #0d2d44;
}
.job-apply-btn {
    background: #fd7b21;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.job-apply-btn:hover {
    background: #e56a1a;
}
/* Hide non-functional sort dropdown */
.list-main-wrap-opt {
    display: none;
}
@media (max-width: 768px) {
    .job-card {
        padding: 16px;
    }
    .job-title {
        font-size: 16px;
    }
    .job-meta-info {
        gap: 10px;
    }
    .job-actions {
        flex-direction: column;
    }
}
