/* =========================================================
   FIND JOBS
========================================================= */

.udj-find-jobs {
    width: 100%;
}

.udj-find-jobs-list {
    width: 100%;
}


/* =========================================================
   JOB LISTING
========================================================= */

.udj-job-listing {
    display: grid;
    grid-template-columns: 58px minmax(280px, 1fr) 260px 180px;
    align-items: center;
    gap: 16px;

    width: 100%;
    padding: 16px;

    box-sizing: border-box;

    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}


/* =========================================================
   COMPANY LOGO
========================================================= */

.udj-job-company-logo {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f3f3;
    border: 1px solid #e5e5e5;

    overflow: hidden;
}

.udj-job-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.udj-job-company-logo i {
    color: #d0d0d0;
    font-size: 20px;
}


/* =========================================================
   JOB MAIN
========================================================= */

.udj-job-main {
    min-width: 0;
}

.udj-job-title {
    display: block;

    color: #d62561;
    font-size: 16px;
    font-weight: 500;

    text-decoration: none;
}

.udj-job-title:hover {
    text-decoration: underline;
}

.udj-job-company {
    margin-top: 4px;

    color: #888;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   LOCATION
========================================================= */

.udj-job-location {
    color: #999;
    font-size: 15px;
}

.udj-job-location i {
    margin-right: 7px;
    color: #aaa;
}


/* =========================================================
   JOB META
========================================================= */

.udj-job-meta {
    text-align: right;
}

.udj-job-meta strong {
    display: block;

    color: #6fcf00;
    font-size: 15px;
    font-weight: 600;
}

.udj-job-meta span {
    display: block;

    margin-top: 6px;

    color: #999;
    font-size: 14px;
}


/* =========================================================
   LOAD MORE
========================================================= */

.udj-load-more {
    padding: 18px;

    text-align: center;

    color: #d62561;
    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================================
   NO JOBS
========================================================= */

.udj-no-jobs {
    padding: 60px 20px;
    text-align: center;
    color: #777;
}

.udj-no-jobs i {
    font-size: 30px;
    color: #ccc;
}

.udj-no-jobs h3 {
    margin: 12px 0 6px;
    color: #1d3665;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .udj-job-listing {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .udj-job-location {
        grid-column: 2;
    }

    .udj-job-meta {
        grid-column: 2;
        text-align: left;
    }

    .udj-job-meta span {
        margin-top: 4px;
    }

}