/* =========================================================
   JOB LIST
========================================================= */
.job-list {
    width: 100%;
}


/* =========================================================
   JOB LIST ITEM
========================================================= */
.job-list-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 15px;
    margin-bottom: 13px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.job-list-item:hover {
    border-color: #d6d6d6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

/* =========================================================
   COMPANY LOGO
========================================================= */
.job-list-logo {
    width: 75px;
    min-width: 75px;
    height: 75px;
    margin-right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #f8f9fa;
    overflow: hidden;
}


.job-list-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================================
   COMPANY INITIAL
========================================================= */
.job-company-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================================
   JOB CONTENT
========================================================= */
.job-list-content {
    flex: 1;
    min-width: 0;
}

.job-list-title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.job-list-title a {
    text-decoration: none;
}

.job-list-title a:hover {
    text-decoration: underline;
}

/* =========================================================
   COMPANY
========================================================= */
.job-list-company {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.job-list-company i {
    margin-right: 5px;
}

/* =========================================================
   META
========================================================= */
.job-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 0px;
}

.job-list-meta span {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
}

.job-list-meta i {
    margin-right: 6px;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.job-list-description {
    margin: 0px;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
}

/* =========================================================
   FOOTER
========================================================= */
.job-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
}

.job-list-date {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.job-list-date span {
    font-size: 12px;
    color: #777;
}

.job-list-date i {
    margin-right: 4px;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
    .job-list-item {
        padding: 18px;
    }


    .job-list-logo {
        width: 55px;
        min-width: 55px;
        height: 55px;
        margin-right: 14px;
    }

    .job-company-initial {
        font-size: 23px;
    }

    .job-list-title {
        font-size: 17px;
    }

    .job-list-meta {
        display: block;
    }


    .job-list-meta span {
        display: inline-flex;
        margin-right: 12px;
        margin-bottom: 7px;
    }


    .job-list-footer {
        display: block;
    }


    .job-list-date {
        margin-bottom: 15px;
    }


    .job-list-footer .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */
@media (max-width: 480px) {

    .job-list-item {
        display: block;
    }

    .job-list-logo {
        margin: 0 0 15px;
    }

}

