/*
 * careers.css
 * Careers listing + job detail styles for Aceway Logistics
 * -----------------------------------------------
*/

.careers-section {
    position: relative;
    padding: 100px 0 90px;
}

@media only screen and (max-width: 767px) {
    .careers-section {
        padding: 70px 0 60px;
    }
}

/* Job Card */

.job-block {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

.job-block .inner-box {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e8ebf0;
    border-left: 5px solid var(--theme-color2);
    border-radius: 12px;
    padding: 35px 40px 35px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    transition: all 400ms ease;
}

.job-block .inner-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

@media only screen and (max-width: 767px) {
    .job-block .inner-box {
        padding: 30px 25px;
    }
}

.job-badge {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--bg-theme-color1);
    border-radius: 30px;
    padding: 4px 16px;
    margin-bottom: 15px;
}

.job-block .job-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 800;
    color: var(--headings-color);
    margin-bottom: 15px;
}

.job-block .job-title a {
    color: var(--headings-color);
    transition: all 300ms ease;
}

.job-block .job-title a:hover {
    color: var(--theme-color2);
}

@media only screen and (max-width: 767px) {
    .job-block .job-title {
        font-size: 20px;
    }
}

.job-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    gap: 8px 28px;
}

.job-meta li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.job-meta li i {
    color: var(--theme-color2);
    margin-right: 8px;
}

.job-block .text {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    color: var(--text-color);
    margin-bottom: 22px;
}

.job-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.job-tags li {
    position: relative;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: var(--theme-color3);
    background: var(--bg-theme-color4);
    border-radius: 30px;
    padding: 6px 16px;
}

.job-tags li i {
    color: var(--theme-color2);
    margin-right: 6px;
}

.job-block .btn-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 5px;
    border-top: 1px solid #eef0f4;
    margin-top: 5px;
    padding-top: 25px;
}

.job-block .btn-box .theme-btn {
    padding: 10px 32px;
}

/* Job Detail */

.job-detail-section {
    position: relative;
    padding: 100px 0 90px;
}

@media only screen and (max-width: 767px) {
    .job-detail-section {
        padding: 70px 0 50px;
    }
}

.job-detail .job-header {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e8ebf0;
}

.job-detail .job-header h2 {
    font-size: 36px;
    line-height: 1.25em;
    margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
    .job-detail .job-header h2 {
        font-size: 26px;
    }
}

.job-detail .job-intro {
    position: relative;
    font-size: 17px;
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 35px;
}

.job-detail h4 {
    position: relative;
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 20px;
    padding-left: 18px;
}

.job-detail h4:before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: var(--bg-theme-color2);
}

.job-detail .detail-block {
    position: relative;
    margin-bottom: 40px;
}

.job-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-list li {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 12px;
}

.job-list li:before {
    position: absolute;
    content: "\f058";
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    top: 0;
    font-size: 15px;
    color: var(--theme-color2);
}

.job-list li strong {
    color: var(--headings-color);
    font-weight: 700;
}

.job-detail .highlight-box {
    position: relative;
    background: var(--bg-theme-color4);
    border-radius: 12px;
    padding: 30px 35px 20px;
    margin-bottom: 40px;
}

.job-detail .highlight-box .job-tags {
    margin-bottom: 10px;
}

.job-detail .highlight-box .pay {
    display: block;
    font-size: 28px;
    line-height: 1.2em;
    font-weight: 800;
    color: var(--theme-color1);
    margin-bottom: 5px;
}

.job-detail .highlight-box .pay-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 15px;
}

.job-detail .cta-box {
    position: relative;
    background: var(--bg-theme-color3);
    border-radius: 12px;
    padding: 45px 40px;
    text-align: center;
}

.job-detail .cta-box h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.3em;
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .job-detail .cta-box {
        padding: 35px 22px;
    }

    .job-detail .cta-box h3 {
        font-size: 22px;
    }
}

.job-detail .cta-box .text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 25px;
}

/* Sidebar */

.job-sidebar {
    position: relative;
}

@media only screen and (min-width: 992px) {
    .job-sidebar .sticky-box {
        position: sticky;
        top: 110px;
    }
}

.job-sidebar .widget {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8ebf0;
    border-radius: 12px;
    padding: 32px 32px 32px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
}

.job-sidebar .widget .widget-title {
    position: relative;
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 800;
    color: var(--headings-color);
    padding-bottom: 15px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eef0f4;
}

.job-overview {
    position: relative;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.job-overview li {
    position: relative;
    padding: 0 0 15px 42px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e8ebf0;
}

.job-overview li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-overview li i {
    position: absolute;
    left: 0;
    top: 4px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--theme-color2);
    background: var(--bg-theme-color4);
    border-radius: 50%;
}

.job-overview li .title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
}

.job-overview li .value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    color: var(--headings-color);
}

.job-sidebar .apply-btn {
    display: block;
    text-align: center;
    width: 100%;
}

.job-sidebar .help-widget {
    background: var(--bg-theme-color1);
    border-color: var(--bg-theme-color1);
}

.job-sidebar .help-widget .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.job-sidebar .help-widget .text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 18px;
}

.job-sidebar .help-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-sidebar .help-widget ul li {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    padding-left: 28px;
    margin-bottom: 12px;
}

.job-sidebar .help-widget ul li:last-child {
    margin-bottom: 0;
}

.job-sidebar .help-widget ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--theme-color2);
}

.job-sidebar .help-widget ul li a {
    color: #ffffff;
    transition: all 300ms ease;
}

.job-sidebar .help-widget ul li a:hover {
    color: var(--theme-color2);
}
