.career-job-offer-wrapper {
    width: 100%;
    height: fit-content;
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 25px;
}

.career-job-offer-anchor {
    cursor: default;
    transition: 0.4s;
}

.career-job-offer-anchor:hover {
    transform: scale(1.04);
}

.career-job-offer-holder {
    padding: 48px 24px;
    border: 1px solid #bedbff;
    border-radius: 14px;
    background-color: white;
    box-shadow: 2px 2px 10px 0px #00000066;
    transition: 0.4s;
}

.career-job-offer-anchor:hover .career-job-offer-holder {
    box-shadow: 1 1 #000;

}

.career-job-offer-header {
    display: flex;
    flex-direction: row;
    justify-content: left;
    height: fit-content;
    column-gap: 12px;
    margin-bottom: 16px;
}

.career-job-offer-icon-holder {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffd800;
    border-radius: 10px;
}

.career-job-offer-icon {
    margin: auto;
    font-size: 20px;
    color: #012f6b;
}

.career-job-offer-header-title-holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-job-offer-header-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
}

.career-job-offer-header-work-type {
    font-size: 12px;
    line-height: 1.33;
    color: #ffffff;
    background-color: #012f6b;
    border-radius: 8px;
    width: fit-content;
    padding: 2px 8px;
}

.career-job-offer-detail-holder {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-bottom: 24px;
}

.career-job-offer-location-holder,
.career-job-offer-time-holder {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}

.career-job-offer-location-icon-holder,
.career-job-offer-time-icon-holder {
    color: #012f6b;
    font-size: 16px;
}

.career-job-offer-location-icon-holder i,
.career-job-offer-time-icon-holder i {
    background: #ffd800;
    padding: 4px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}

.career-job-offer-location-icon-holder i::before,
.career-job-offer-time-icon-holder i::before {
    transform: translate(0.5px, 0);
}

.career-job-offer-location,
.career-job-offer-time {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.career-job-offer-apply-button-holder {
    width: 100%;
    text-align: center;
    background-color: #ffd800;
    border-radius: 8px;
    padding: 8px 16px;
}

.career-job-offer-apply-button {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    transition: 0.4s;
}

.career-job-offer-apply-button:hover {
    cursor: pointer;
    transform: scale(1.04);
}

@media only screen and (max-width: 800px) {
    .career-job-offer-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

}

@media only screen and (max-width: 400px) {
    .career-job-offer-header-title{
        font-size: 18px;
    }
}