.jobs_area {
    background-color: #F9FAFB;
}

.landing-jobs-grid {
    min-height: 120px;
}

.single_job_card {
    background: #fff;
    border-radius: 8px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(173, 206, 243, 0.12);
    transition: all 0.3s ease-out;
    border-top: 3px solid #D2AFFF;
    opacity: 0;
    animation: jobCardFadeIn 0.55s ease forwards;
}

.single_job_card:hover {
    box-shadow: 0 12px 35px rgba(173, 206, 243, 0.22);
    transform: translateY(-4px);
}

.job_card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
}

.job_card_icon {
    width: 62px;
    height: 62px;
    border: 2px solid #D2AFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}

.job_card_icon i {
    font-size: 28px;
    color: #D2AFFF;
    transition: all 0.3s ease-out;
}

.single_job_card:hover .job_card_icon {
    background: #D2AFFF;
}

.single_job_card:hover .job_card_icon i {
    color: #fff;
}

.job_card_badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(210, 175, 255, 0.15);
    color: #9B6FD4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.job_card_body {
    padding: 18px 24px 0;
    flex: 1;
}

.job_card_title {
    font-size: 22px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 10px;
    line-height: 1.35;
}

.job_card_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #747E88;
    margin-bottom: 14px;
}

.job_card_meta i {
    color: #D2AFFF;
    font-size: 15px;
}

.job_card_desc {
    color: #747E88;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.job_card_tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    background: #F3F4F6;
    color: #747E88;
    font-size: 12px;
}

.job_card_footer {
    padding: 22px 24px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job_card_footer .main-btn {
    flex: 1;
    min-width: 130px;
    height: 44px;
    line-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}

.job_card_skeleton {
    height: 280px;
    border-radius: 8px;
    background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
    background-size: 200% 100%;
    animation: jobSkeletonPulse 1.4s ease-in-out infinite;
}

@keyframes jobSkeletonPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes jobCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-jobs-empty {
    text-align: center;
    max-width: 520px;
    margin: 10px auto 0;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(173, 206, 243, 0.12);
}

.landing-jobs-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border: 2px solid #D2AFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-jobs-empty-icon i {
    font-size: 32px;
    color: #D2AFFF;
}

.landing-jobs-empty h4 {
    font-size: 22px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 10px;
}

.landing-jobs-empty p {
    color: #747E88;
    margin-bottom: 0;
}

.landing-jobs-actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 767px) {
    .job_card_title {
        font-size: 20px;
    }

    .job_card_footer .main-btn {
        flex: 1 1 100%;
    }
}
