#jobs {
    margin-top: 150px;
    width: 100%;
    max-width: 1196px;
    display: flex;
    flex-direction: column;
    z-index: 0;

    flex: 1;
}
.job-card {
    width: 542px;
    height: 334px;
    border-radius: 20px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    cursor: pointer;

    -webkit-transition: all 150ms ease-in-out; 
    -moz-transition: all 150ms ease-in-out; 
    transition: all 150ms ease-in-out; 

    border-radius: 20px;
    border: 1px solid var(--divBorderBg);
}
.job-card-1 {
    background: url('/images/refs/ref01.png') no-repeat;
    background-size: 100%;
}
.job-card-2 {
    background: url('/images/refs/ref02.png') no-repeat;
    background-size: 100%;
}
.job-card-3 {
    background: url('/images/refs/ref03.png') no-repeat;
    background-size: 100%;
}
.job-card:hover {
    transform: scale(1.01) translateY(-8px);
}
.job-ref-img {
    position: absolute;
    top: 0;
    left: 0;

    
    border-radius: 20px;
    border: 1px solid var(--jobsBorder);
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.job-card-title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 30px;
}
.job-card-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-card-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.job-card-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #E4E0DD;
}

.jobs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}
.job-card-flag {
    background-color: #E4E0DD;
    border-radius: 100px;
    padding: 4px 14px;

    color: #212123;
    font-size: 14px;
}
#job-link-icon {
    margin: 0;
}
@media screen and (max-width: 1190px) {
    .jobs-container {
        justify-content: center;
    }
}