/*-------------- General Joblist Layout */
.joblist-wrapper::after,
.single-job:last-child::after  {
    content: "";
    width: 100%;
    height: 1.5rem;
    position: absolute;
    z-index: -10;
}

.joblist-wrapper::after{
    top: 0;
    right: 0;
    border-top-right-radius: 30px;
    border-right: 1px solid var(--awb-custom_color_2);
    border-top: 1px solid var(--awb-custom_color_2);
}

.single-job:last-child::after {
    border-left: 1px solid var(--awb-custom_color_2);
    border-bottom: 1px solid var(--awb-custom_color_2);
    border-bottom-left-radius: 30px;
    bottom: 0;
    left: 0;
}

/*-------------- Single Job */
.single-job {
    border-bottom: 1px solid var(--awb-custom_color_2);
    padding-bottom: var(--p75);
}

.single-job:last-child {
    border-bottom: none !important;
}

.single-job h3 {
    color: var( --awb-color5);
    margin-bottom: 0.2rem !important;
}

.single-job-meta {
    margin-bottom: var(--p50);
}

.single-job-meta>span {
    font-size: var(--awb-typography5-font-size);
}

.single-job-flex {
    display: flex;
    column-gap: 4rem;
    align-items: flex-end;
    justify-content: space-between;
}

.job-read-more-btn {
    width: 20%
}

.single-job-flex .fusion-button {
    padding: 0.6rem 2rem;
    width: 100%;
    color: var(--awb-color3);

}
.single-job-short-description {
    width: 70%;
}

/*--------------- Media Query */

@media screen and (max-width: 1400px) {
.joblist-wrapper::after, .single-job:last-child::after {
    width: 97%;
}
.joblist-wrapper::after {
    right: 1rem
} 
.single-job:last-child::after {
    left: 1rem
}
}

@media screen and (max-width: 992px) {
    .single-job-flex {
    flex-direction: column;
}

.single-job-short-description {
    width: 100%;
}

.job-read-more-btn {
    width: fit-content;
}

.single-job-flex {
    align-items: flex-start;
}

.joblist-wrapper::after, .single-job:last-child::after {
    width: 95%;
}

}

@media screen and (max-width: 600px) {
    .joblist-wrapper::after, .single-job:last-child::after {
    width: 90%;
}
}