@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* JOB GRID */
.lj-job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.page-id-2407 .lj-job-grid {
    display: block;
}


/* JOB CARD */
.lj-job-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    font-family: "Inter", sans-serif;
}
.lj-job-card:hover {
    transform: translateY(-5px);
}

/* BADGES */

.lj-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: space-between;
}
.badge {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

/* CATEGORY */
.badge.category {
    background: #dff1f6;
    color: #000;
}

/* STATUS */
.badge.status.closed {
    background: #ffe6e6;
    color: #d60000;
    border: 1px solid #d60000;
}

.badge.status.ongoing {
    background: #e8f8f1;
    color: #1a8f5a;
    border: 1px solid #1a8f5a;
}

.badge.status.deadline {
    background: #fff1e0;
    color: #ff8c00;
    border: 1px solid #ff8c00;
}


/* TITLE */
.job-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    font-family: 'Inter';
}

/* COMPANY */
.company {
    color: #808080;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
}

/* META */
.job-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Inter';
    text-transform: capitalize;
}

.meta-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

/* BUTTON */
.view-details {
    display: inline-block;
    margin-top: 22px;
    background: #0097a7;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 15px;
}

.view-details:hover {
    background: #007c89;
    color: #fff;
}

.lj-job-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}
.lj-job-filters {
    background: #f6f6f69e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}


.lj-job-filters select,
.lj-job-filters button {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-weight: 600;
}

.lj-job-filters button {
background: #d84a4a;
    color: #fff;
    border: none;
    cursor: pointer;
}

.lj-single-job-wrapper {
    max-width: 1500px;
    margin: 40px auto;
    padding: 25px;
}

.lj-single-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 20px;
}

.job-meta-top span {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 22px;
    background: #f3f3f3;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 11px;
}
.job-status.ongoing { background: #e6f4ea; color: #137333; }
.job-status.closed { background: #fce8e6; color: #c5221f; }
.job-status.deadline { background: #fff4e5; color: #b45309; }

.lj-job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 15px;
    margin: 25px 0;
}
.lj-job-description {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 25px;
}
.lj-single-job-wrapper h1.job-title {
    font-size: 30px;
}
.lj-job-description h3 {
    font-size: 25px;
}
.detail-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-weight: 500;
    text-transform: capitalize;
}

.apply-btn {
    display: inline-block;
    padding: 15px;
    background: #029fb2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}
.swiper-pagination {
    display: none !important;
}