.job-offers {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 10px;
    margin-top: 5px;
    background-color:#f8f7f4;
    padding: 25px 15px;
    border-radius:10px;
    margin: 20px 0;
}
@media(max-width:768px){
    .job-offers{
        padding: 25px 10px;
    }
}

.jobs-header{
    font-size: 2.8rem;
    font-weight: 400;

    text-align:center;
    gap:10px;
    margin-bottom:10px;
}
@media(max-width:768px){
    .jobs-header{
        font-size:2.2rem;
    }
}
.jobs-header a{
    color:var(--global-darker-blue);
    font-weight:700;
}
.job-offer-body {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    box-sizing: border-box;
    display: flex;
    /* border: 2px dotted rgba(0, 0, 0, 0); */
    transition: 0.3s;
    box-shadow: 0 0px 2px 0 #e1e1e1;
    box-shadow: 0px 1px 2px rgb(0, 0, 0, 0.1);
    align-items: center;
}
@media (max-width: 768px) {
    .job-offer-body {
        padding: 6px 10px 6px 6px;
    }
}
.job-offer-image {
    width: 100px;
    height: 70px;
    box-sizing: border-box;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .job-offer-image {
        /*padding: 5px;*/
        width: 90px;
    }
}

.job-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}



.job-offer-meta {
    /*width: calc(100% - 100px);*/
    width:100%;
    padding: 5px 8px;
    position: relative;
}
@media (max-width: 768px) {
    .job-offer-meta {
        /*width: calc(100% - 90px);*/
        width:100%;
    }
}

.job-offer-image+.job-offer-meta{
    width: calc(100% - 100px);
}
@media (max-width: 768px) {
    .job-offer-image+.job-offer-meta {
        width: calc(100% - 90px);
    }
}

.job-offer-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 768px) {
    .job-offer-header {
        flex-direction: column;
    }
}

.job-offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-overflow: ellipsis;
    display: block;
    max-width: calc(100% - 15px);
    overflow: hidden;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .job-offer-title {
        margin: 0px 0 6px 0;
        font-size: 1.5rem;
        width: calc(100% - 10px);
        min-width: calc(100% - 10px);
    }
}

.job-offer-salary {
    font-size: 1.6rem;
    color: #D8AE84;
    color: #df628a;
    font-weight: 500;
    text-align: right;
}
@media (max-width: 768px) {
    .job-offer-salary {
        font-size: 1.3rem;
        text-align: left;
        margin-top: -2px;
        margin-bottom: 4px;
        font-weight: 600;
    }
}

.job-offer-meta-body {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.job-offer-company-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .job-offer-company-location {
        gap: 8px;
        width: 100%;
    }
}

.job-offer-company-location>div {
    display: flex;
}

.job-offer-company {
    max-width: 200px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    .job-offer-company {
        max-width: 120px;
    }
}
.icon-company {
    width: 15px;
    height: auto;
    margin-right: 5px;
}

.job-offer-company-long {
    max-width: calc(100% - 20px);
    position: absolute;
    left: 20px;
}

.company-text {
    text-overflow: ellipsis;
    display: block;
    max-width: 180px;
    overflow: hidden;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .company-text {
        max-width: 100%;
    }
}

.job-offer-city {
    max-width: 50%;
}

.icon-location {
    width: 12px;
    height: auto;
    margin-right: 5px;
}

.job-offer-city>span {
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.job-offer-requirements {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.job-offer-requirement {
    /*background-color: rgba(181, 161, 141, 0.1);
    color: #A3805D;*/
    background-color: rgba(181, 161, 141, 0.1);
    color: #956231;
    padding: 2px 5px;
    border-radius: 5px;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
}