/*
*/
.job-list {
    margin-top: 56px;
    margin-bottom: 56px;
}

@media screen and (min-width: 1024px) {
    .job-list {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

/*
*/
.job-list .owl-stage {
    margin-left: -24px;
}

.job-list--title {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
}

@media screen and (min-width: 1024px) {
    .job-list--title {
        align-items: center;
        padding: 0;
        margin-bottom: 56px;
    }
}

.job-list--title h3 {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .job-list--wrapper {
        display: flex;
        padding: 0 16px;
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 1280px) {
    .job-list--wrapper {
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .job-list--item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media screen and (min-width: 1024px) {
    .job-list--item {
        flex: 0 0 calc(25% - 18px);
    }
}

.job-list--item a {
    display: flex;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.job-list--item a:hover img {
    scale: 1.1;
}

.job-list--item a:hover .link {
    background: var(--light-blue);
}

.job-list--item a:hover .link::after {
    background: white;
}

.job-list p {
    color: var(--dark-blue);
    font-family: var(--gotham);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}

.job-list .link {
    width: 56px;
    height: 56px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all .4s;
}

.job-list .link::after {
    content: '';
    -webkit-mask: url("../images/icons/arrow-cta.svg") no-repeat center;
    mask: url("../images/icons/arrow-cta.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--light-blue);
    width: 24px;
    height: 24px;
    transition: all .4s;
}

.job-list img {
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all .4s;
}