.jobs-page {
    padding: 28px 0 50px;
}

.jobs-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #123b63 55%, #0d6efd 100%);
    color: #fff;
    padding: 15px 0;
}

.jobs-banner::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.jobs-banner::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.jobs-banner .container {
    position: relative;
    z-index: 2;
}

.jobs-banner h1 {
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
}

.jobs-banner .myintro {
    max-width: 1050px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.8;
}

.jobs-list-heading {
    padding: 18px 20px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.05);
}

.jobs-list-heading h2 {
    margin: 0 0 5px;
    color: #172033;
    font-size: 23px;
    font-weight: 700;
}

.jobs-list-heading p {
    margin: 0;
    color: #687386;
    font-size: 14px;
}

.job-card {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0d6efd, #0dcaf0);
}

.job-card-body {
    padding: 22px 22px 22px 25px;
}

.job-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.job-title {
    margin: 0;
    color: #172033;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.job-title a {
    color: #172033;
    text-decoration: none;
    transition: color 0.2s ease;
}

.job-title a:hover {
    color: #0d6efd;
}

.job-type-label {
    flex-shrink: 0;
    padding: 6px 11px;
    color: #067647;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.company-name {
    margin-top: 7px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

.company-name i {
    margin-right: 6px;
    color: #0d6efd;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 16px 0;
    padding: 13px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #536174;
    font-size: 14px;
    font-weight: 500;
}

.job-meta-item i {
    width: 17px;
    color: #0d6efd;
    text-align: center;
}

.job-description {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 16px;
    color: #5d6878;
    font-size: 14px;
    line-height: 1.75;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 19px;
}

.job-skill {
    display: inline-flex;
    padding: 6px 11px;
    color: #344054;
    background: #f2f4f7;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.job-skill:hover {
    color: #fff;
    background: #0d6efd;
    border-color: #0d6efd;
}

.job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-view-btn,
.job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.job-view-btn {
    color: #0d6efd;
    background: #fff;
    border: 1px solid #0d6efd;
}

.job-view-btn:hover {
    color: #fff;
    background: #0d6efd;
}

.job-apply-btn {
    color: #fff;
    background: #f59e0b;
    border: 1px solid #f59e0b;
}

.job-apply-btn:hover {
    color: #fff;
    background: #d97706;
    border-color: #d97706;
}

.sticky-ad-box {
    position: sticky;
    top: 85px;
    min-height: 250px;
    padding: 12px;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
}

.ad-label {
    margin-bottom: 8px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.jobs-inline-ad {
    margin: 24px 0;
    padding: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    text-align: center;
}

.no-jobs-found {
    padding: 40px 25px;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 14px;
    text-align: center;
}

.no-jobs-found i {
    margin-bottom: 14px;
    color: #98a2b3;
    font-size: 38px;
}

.no-jobs-found h3 {
    color: #172033;
    font-size: 21px;
}

.no-jobs-found p {
    margin-bottom: 0;
    color: #667085;
}

@media (max-width: 991.98px) {
    .sticky-ad-box {
        position: static;
        margin-bottom: 20px;
    }

    .left-ad-column {
        order: 2;
    }

    .jobs-column {
        order: 1;
    }

    .right-ad-column {
        order: 3;
    }
}

@media (max-width: 575.98px) {
    .jobs-page {
        padding-top: 18px;
    }

    .jobs-banner {
        padding: 32px 0;
    }

    .job-card-body {
        padding: 19px 16px 19px 20px;
    }

    .job-card-top {
        display: block;
    }

    .job-type-label {
        display: inline-flex;
        margin-top: 10px;
    }

    .job-title {
        font-size: 18px;
    }

    .job-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .job-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}